.header {
  width: 100%;
  position: relative;
  background: #F0F3FB;
  z-index: 1000;
  padding: 24px 0px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .header ::-webkit-scrollbar {
    width: 1px; }
  @media (max-width: 1199px) {
    .header {
      padding: 16px 0px; } }
  .header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 0px;
    -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
    .header.sticky .icon .dropdown .dropdown-menu.show {
      top: 60px !important; }
      @media (max-width: 991px) {
        .header.sticky .icon .dropdown .dropdown-menu.show {
          top: 52px !important; } }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header .logo img {
    max-width: 140px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 991px) {
      .header .logo img {
        max-width: 100px; } }
  .header .navbar {
    padding: 0px; }
    .header .navbar .cancel {
      display: none;
      position: absolute;
      top: 12px;
      right: 12px; }
      .header .navbar .cancel svg {
        width: 18px;
        height: 18px; }
    @media screen and (max-width: 1199px) {
      .header .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0px 10px 40px 0px #06163a1a;
        background-color: #fff;
        transition: all 0.5s ease; }
        .header .navbar.active {
          left: 0rem;
          opacity: 1;
          visibility: visible; }
        .header .navbar .cancel {
          display: block; } }
  .header .menu-item {
    position: relative;
    display: inline-block;
    margin: 0px 8px;
    color: #000; }
    .header .menu-item:hover .menu-link {
      color: #0075bf; }
      .header .menu-item:hover .menu-link svg {
        fill: #0075bf;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
        @media only screen and (max-width: 1199px) {
          .header .menu-item:hover .menu-link svg {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg); } }
  .header .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease-in-out; }
    .header .menu-link svg {
      transition: all 0.3s ease-in-out; }
    @media (max-width: 1280px) {
      .header .menu-link {
        font-size: 14px; } }
  @media only screen and (min-width: 1199px) {
    .header .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0); } }
  @media only screen and (max-width: 1199px) {
    .header .menu {
      width: 100%;
      height: auto;
      padding: 1rem 0; }
      .header .menu-item {
        display: block;
        padding: 0px; }
      .header .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem; } }
  .header .menu .activelink .menu-link {
    color: #0075bf; }
  .header .menu .menu-link:hover {
    outline: none;
    color: #0075bf; }
  .header .submenu {
    position: absolute;
    top: 100%;
    right: 0px;
    min-width: 238px;
    height: auto;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: 0px 10px 40px 0px #06163a1a;
    background-color: #fff;
    transition: all 0.3s ease-in-out; }
    .header .submenu .submenu-item {
      display: block; }
    .header .submenu .submenu-link {
      position: relative;
      display: block;
      font-weight: 500;
      cursor: pointer;
      padding: 8px 0px;
      line-height: 28px;
      transition: all 0.35s ease;
      border-bottom: 1px solid #f3f3f3; }
      @media (max-width: 991px) {
        .header .submenu .submenu-link {
          border-bottom: 1px solid rgba(167, 167, 167, 0.2);
          color: #F0F3FB; } }
      .header .submenu .submenu-link:hover {
        outline: none;
        color: #e08205; }
        .header .submenu .submenu-link:hover:after {
          width: 100%; }
      .header .submenu .submenu-link:after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: -1px;
        width: 0;
        background: #e08205;
        height: 1px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 991px) {
          .header .submenu .submenu-link:after {
            display: none; } }
    @media only screen and (max-width: 1199px) {
      .header .submenu {
        position: relative;
        top: -0.5rem;
        right: 0px;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        padding: 0px 20px; } }
  .header .burger {
    position: absolute;
    left: 158px;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent; }
    .header .burger-line {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 2px;
      opacity: 1;
      border: none;
      outline: none;
      background: #000; }
      .header .burger-line:nth-child(1) {
        top: 0px; }
      .header .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 90%; }
      .header .burger-line:nth-child(3) {
        top: 1rem;
        width: 70%; }
    @media only screen and (max-width: 1199px) {
      .header .burger {
        display: block;
        opacity: 1;
        visibility: visible; } }
    @media (max-width: 991px) {
      .header .burger {
        left: 122px; } }
  .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65); }
    @media only screen and (max-width: 1199px) {
      .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .icon {
    display: flex;
    align-items: center; }
    .header .icon .bottom {
      width: 114px;
      height: 39px;
      font-size: 12px; }
      @media (max-width: 400px) {
        .header .icon .bottom {
          width: 100px;
          padding: 8px; } }
    .header .icon .lang {
      margin-left: 10px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .header .icon .lang:hover {
        color: #0075bf; }
    .header .icon .dropdown {
      margin-left: 10px; }
      .header .icon .dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        width: auto;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        font-weight: 500;
        height: 40px;
        color: #000; }
        .header .icon .dropdown .dropdown-toggle img {
          width: 40px;
          height: 40px;
          object-fit: cover; }
      .header .icon .dropdown .dropdown-menu.show {
        margin-top: 0px;
        right: 0px !important;
        left: auto !important;
        min-width: inherit;
        box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
        border-radius: 0px;
        width: 148px;
        padding: 12px 0px;
        transform: none !important;
        top: 100% !important;
        border: 0px;
        z-index: 2; }
        .header .icon .dropdown .dropdown-menu.show:before {
          display: none; }
        @media (max-width: 1199px) {
          .header .icon .dropdown .dropdown-menu.show {
            top: 64px !important; } }
        @media (max-width: 991px) {
          .header .icon .dropdown .dropdown-menu.show {
            top: 56px !important; } }
        .header .icon .dropdown .dropdown-menu.show .dropdown-item {
          line-height: 18px;
          height: auto;
          margin: 0;
          color: #000;
          border: 0px;
          margin: 0px;
          padding: 12px 16px !important;
          border: 0px !important;
          background: none !important; }
          .header .icon .dropdown .dropdown-menu.show .dropdown-item:active, .header .icon .dropdown .dropdown-menu.show .dropdown-item:hover {
            background: #f3f3f3 !important; }
    .header .icon .loginlink {
      margin-left: 10px;
      font-weight: 500;
      color: #000;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .header .icon .loginlink:hover {
        color: #0075bf; }

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 104px);
  background: #F0F3FB url(../images/slider.png) no-repeat top right; }
  @media (max-width: 991px) {
    .slider {
      padding: 96px 0px;
      height: auto; } }
  .slider .container {
    position: relative;
    z-index: 1; }
  .slider .title {
    font-size: 68px;
    font-weight: 900; }
    @media (max-width: 1199px) {
      .slider .title {
        font-size: 50px; } }
    @media (max-width: 991px) {
      .slider .title {
        font-size: 40px; }
        .slider .title br {
          display: none; } }
  .slider .nav-tabs {
    border: 0px;
    margin-top: 24px; }
    .slider .nav-tabs li {
      margin: 0px !important; }
      .slider .nav-tabs li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 88px;
        height: 56px;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        color: #000;
        border: 0px !important;
        border-radius: 0px !important;
        border-bottom: 2px solid #F0F3FB; }
        .slider .nav-tabs li a.active {
          border-bottom: 2px solid #0075bf !important;
          color: #0075bf !important; }
      .slider .nav-tabs li:first-child a {
        border-top-left-radius: 8px !important; }
      .slider .nav-tabs li:last-child a {
        border-top-right-radius: 8px !important; }
  .slider .inpusrach {
    position: relative;
    width: 100%; }
    .slider .inpusrach .form-control {
      border-top-left-radius: 0px;
      height: 88px;
      background: #fff;
      padding-right: 84px; }
      .slider .inpusrach .form-control:focus {
        border: 1px solid transparent; }
    .slider .inpusrach .bottom {
      position: absolute;
      right: 16px;
      top: 16px;
      width: 56px;
      height: 56px; }
      .slider .inpusrach .bottom svg {
        min-width: 28px;
        height: 28px; }
    .slider .inpusrach .floating-label {
      position: absolute;
      left: .75rem;
      top: 24px;
      color: #000;
      opacity: 0.3;
      margin: 0px;
      font-weight: normal;
      pointer-events: none;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .slider .inpusrach .form-control:focus ~ .floating-label,
    .slider .inpusrach .form-control:not(:focus):valid ~ .floating-label,
    .slider .inpusrach .intl-tel-input input:focus ~ .floating-label,
    .slider .inpusrach .intl-tel-input input:not(:focus):valid ~ .floating-label {
      top: 4px; }
  @media (max-width: 991px) {
    .slider .item {
      max-width: 100%;
      flex: 100%; }
      .slider .item:last-child {
        display: none; } }
  .slider .item:first-child {
    display: flex;
    align-items: center;
    height: calc(100vh - 104px); }
    @media (max-width: 991px) {
      .slider .item:first-child {
        height: auto; } }
  .slider .item .innerslider {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; }
    .slider .item .innerslider::before {
      content: "";
      position: absolute;
      right: 32px;
      bottom: 32px;
      width: 138px;
      height: 138px;
      background: url(../images/ow.png) no-repeat;
      background-size: 100% 100%;
      z-index: 1; }
    .slider .item .innerslider .slidcard {
      position: relative;
      max-width: 288px;
      height: 1000px;
      margin: 0px 12px;
      z-index: 2; }
  .slider .carouselTicker__wrap {
    overflow: inherit !important; }
  .slider .carouselTicker__list {
    margin: 10px 0;
    padding: 0;
    list-style-type: none; }
  .slider .carouselTicker_vertical .carouselTicker__list {
    margin: 0; }
  .slider .carouselTicker_vertical .carouselTicker__item {
    margin-top: 24px;
    width: 100%; }
    .slider .carouselTicker_vertical .carouselTicker__item .itemrel {
      width: 100% !important;
      max-width: 100% !important; }
  .slider #carouselTicker .carouselTicker__item,
  .slider #carouselTicker-destructor-example .carouselTicker__item,
  .slider #carouselTicker-buttons-controls-example .carouselTicker__item {
    width: auto;
    height: auto;
    line-height: normal; }
  .slider .carouselTicker__item img {
    vertical-align: top; }

.sliderimages {
  position: relative;
  height: 60vh;
  overflow: hidden; }
  .sliderimages .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none; }
    .sliderimages .slick-list .slick-track {
      position: relative;
      top: 0;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      overflow: hidden; }
      .sliderimages .slick-list .slick-track:after, .sliderimages .slick-list .slick-track:before {
        display: table;
        content: ''; }
  .sliderimages .slick-next,
  .sliderimages .slick-prev {
    position: absolute;
    top: 40%;
    background: none;
    cursor: pointer;
    padding: 0px;
    outline: none;
    border: 0px;
    width: 48px;
    height: 48px;
    background: #00000075;
    border-radius: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .sliderimages .slick-next:hover,
    .sliderimages .slick-prev:hover {
      background: #0075bf; }
    @media (max-width: 991px) {
      .sliderimages .slick-next,
      .sliderimages .slick-prev {
        top: -40px; } }
    .sliderimages .slick-next svg,
    .sliderimages .slick-prev svg {
      width: 28px;
      height: 28px; }
      .sliderimages .slick-next svg path,
      .sliderimages .slick-prev svg path {
        stroke: #fff !important;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .sliderimages .slick-next:hover path,
    .sliderimages .slick-prev:hover path {
      stroke: #fff !important; }
  .sliderimages .slick-next {
    right: -70px; }
  .sliderimages .slick-prev {
    left: -70px; }
  .sliderimages .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 68vh;
    left: 0px;
    right: 0px;
    z-index: 10; }
    .sliderimages .slick-dots li {
      position: relative;
      width: 22px;
      height: 6px;
      cursor: pointer;
      margin: 0px 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      background-clip: padding-box;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .sliderimages .slick-dots li button {
        font-size: 0px;
        line-height: 0px;
        display: block;
        cursor: pointer;
        width: 22px;
        height: 6px;
        border: 0px;
        outline: none;
        background: #f3f3f3;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-clip: padding-box;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .sliderimages .slick-dots li.slick-active button {
      background: #0075bf; }
  .sliderimages:hover .slick-next {
    right: 24px; }
  .sliderimages:hover .slick-prev {
    left: 24px; }
  .sliderimages .slick-list {
    padding: 0px !important;
    margin-left: -76%; }
    @media (max-width: 500px) {
      .sliderimages .slick-list {
        margin-left: 0px; } }
  .sliderimages .iteminner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .sliderimages .iteminner .photo {
      display: block;
      width: 100%;
      height: 60vh;
      overflow: hidden; }
      .sliderimages .iteminner .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .sliderimages .iteminner .contant {
      position: absolute;
      left: 0px;
      bottom: 0px;
      width: 100%;
      padding: 64px 24px 24px 24px;
      background: linear-gradient(#00000000, #000000); }
      .sliderimages .iteminner .contant .price, .sliderimages .iteminner .contant .jobs .itemrel .inner .minheader .loc, .jobs .itemrel .inner .minheader .sliderimages .iteminner .contant .loc {
        color: #0075bf;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden; }
      .sliderimages .iteminner .contant .title {
        color: #fff;
        font-size: 26px;
        font-weight: 600;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden; }
        @media (max-width: 991px) {
          .sliderimages .iteminner .contant .title {
            font-size: 22px; } }
    .sliderimages .iteminner:hover .photo img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
  .sliderimages .iteminner.slick-current,
  .sliderimages .iteminner.slick-center {
    width: 50vw !important; }
    @media (max-width: 991px) {
      .sliderimages .iteminner.slick-current,
      .sliderimages .iteminner.slick-center {
        width: 504px !important; } }
    @media (max-width: 767px) {
      .sliderimages .iteminner.slick-current,
      .sliderimages .iteminner.slick-center {
        width: 404x !important; } }
    @media (max-width: 500px) {
      .sliderimages .iteminner.slick-current,
      .sliderimages .iteminner.slick-center {
        width: 324px !important; } }

.products,
.showrooms,
.mincar,
.app,
.mincategories,
.products-inner,
.carsrentals,
.jobs,
.jobs-inner {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #F0F3FB; }
  @media (max-width: 991px) {
    .products,
    .showrooms,
    .mincar,
    .app,
    .mincategories,
    .products-inner,
    .carsrentals,
    .jobs,
    .jobs-inner {
      padding: 24px 0px; } }

.mincategories {
  background: #fff url(../images/bg.png) no-repeat;
  background-position: 80% 0%; }
  .mincategories .item {
    margin-top: 24px;
    max-width: 20%;
    flex: 20%; }
    @media (max-width: 1199px) {
      .mincategories .item {
        max-width: 33.333%;
        flex: 33.333%; } }
    @media (max-width: 991px) {
      .mincategories .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 480px) {
      .mincategories .item {
        max-width: 100%;
        flex: 100%; } }
    .mincategories .item .inner {
      position: relative;
      background: #fff;
      width: 100%;
      border-radius: 16px;
      padding: 8px;
      background: #F7F7FD; }
      .mincategories .item .inner .photo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 168px;
        overflow: hidden;
        z-index: 10;
        border-radius: 16px; }
        .mincategories .item .inner .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .mincategories .item .inner .photo:hover img {
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          transform: scale(1.1); }
    .mincategories .item .title {
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-weight: 500;
      font-size: 16px !important;
      margin-top: 16px; }
    .mincategories .item .bo-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #e3e3e9;
      margin-top: 16px;
      padding: 16px 0px 8px 0px; }
      .mincategories .item .bo-link .all {
        display: flex; }
        .mincategories .item .bo-link .all .botsmall {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 78px;
          height: 34px;
          color: #fff;
          background: #0075bf;
          margin-right: 8px;
          border-radius: 16px;
          font-weight: 500;
          font-size: 12px;
          font-style: normal; }
          .mincategories .item .bo-link .all .botsmall:last-child {
            margin: 0px; }
          .mincategories .item .bo-link .all .botsmall.blue {
            background: #4D3BD8; }
          .mincategories .item .bo-link .all .botsmall.red {
            background: #CC2131; }
          .mincategories .item .bo-link .all .botsmall.orange {
            background: #F7931A; }

.minheader .link {
  padding: 0px;
  margin: 0px; }
  .minheader .link::before, .minheader .link::after {
    display: none; }
.minheader .form-control {
  border: 1.5px solid #E0DEF7;
  border-radius: 8px;
  background: #fff;
  color: #0075bf;
  width: 256px; }
  @media (max-width: 767px) {
    .minheader .form-control {
      display: none; } }
.minheader .bottoms {
  display: flex; }
  .minheader .bottoms a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 42px;
    background: #F7F7FD;
    border: 1.5px solid #E0DEF7;
    border-radius: 8px;
    color: #0075bf;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .minheader .bottoms a:last-child {
      margin-left: 12px; }
    .minheader .bottoms a svg {
      fill: #0075bf;
      width: 16px;
      margin-right: 8px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .minheader .bottoms a:hover {
      background: #0075bf;
      color: #fff;
      border: 1.5px solid #0075bf; }
      .minheader .bottoms a:hover svg {
        fill: #fff; }

.itemrel {
  margin-top: 24px; }
  @media (max-width: 991px) {
    .itemrel {
      max-width: 50%;
      flex: 50%; } }
  @media (max-width: 480px) {
    .itemrel {
      max-width: 100%;
      flex: 100%; } }
  .itemrel .inner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    padding: 8px;
    background: #f9fafd;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .itemrel .inner:hover {
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px 0px; }
    .itemrel .inner .photo {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      height: 168px;
      overflow: hidden;
      z-index: 10;
      border-radius: 16px; }
      @media (min-width: 1600px) {
        .itemrel .inner .photo {
          height: 224px; } }
      .itemrel .inner .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .itemrel .inner .photo:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    .itemrel .inner .img {
      position: absolute;
      left: 12px;
      top: 12px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden; }
    .itemrel .inner .minheader {
      margin-top: 16px; }
      .itemrel .inner .minheader .title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #0075bf;
        font-weight: 500;
        font-size: 16px;
        max-width: 72%; }
      .itemrel .inner .minheader .price, .jobs .itemrel .inner .minheader .loc {
        color: #0075bf;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden; }
    .itemrel .inner p {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      color: #000;
      font-weight: 400;
      opacity: 0.6;
      line-height: 150%;
      margin-top: 8px; }
    .itemrel .inner .bo-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #e3e3e9;
      margin-top: 16px;
      padding: 16px 0px 8px 0px; }
      .itemrel .inner .bo-link li {
        display: flex;
        align-items: center; }
      .itemrel .inner .bo-link .link {
        margin-right: 16px; }
        .itemrel .inner .bo-link .link::before, .itemrel .inner .bo-link .link::after {
          display: block; }
      .itemrel .inner .bo-link svg {
        width: 20px;
        max-width: 20px; }
      .itemrel .inner .bo-link span {
        margin-left: 4px;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: #000; }

.mincar {
  background: #fff url(../images/mincar.png) no-repeat;
  background-position: 0 62%; }
  @media (max-width: 991px) {
    .mincar .item {
      max-width: 100%;
      flex: 100%; } }
  .mincar .item:first-child {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .mincar .item:first-child {
        margin-bottom: 24px; } }
  .mincar .item .photo {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1; }
    .mincar .item .photo img {
      max-width: 100%; }
    .mincar .item .photo::after {
      content: "";
      position: absolute;
      right: 0px;
      top: 0px;
      width: 138px;
      height: 138px;
      background: url(../images/ow.png) no-repeat;
      background-size: 100% 100%;
      z-index: -1; }
  .mincar .item .title {
    font-weight: 900;
    font-size: 68px; }
    @media (max-width: 991px) {
      .mincar .item .title {
        font-size: 40px; } }
    .mincar .item .title span {
      display: block; }
  .mincar .bottoms {
    display: flex;
    margin-top: 24px; }
    .mincar .bottoms .bottom {
      display: inline-flex;
      width: 176px;
      height: 58px;
      font-weight: 500;
      font-size: 16px;
      margin-right: 12px;
      border: 1px solid #0075bf; }
      @media (max-width: 991px) {
        .mincar .bottoms .bottom {
          width: 146px;
          height: 50px;
          font-size: 14px;
          padding: 8px 12px; } }
      .mincar .bottoms .bottom:hover {
        background: #161326;
        border: 1px solid #161326; }
      .mincar .bottoms .bottom:last-child {
        background: none;
        color: #0075bf;
        margin: 0px; }
        .mincar .bottoms .bottom:last-child:hover {
          background: #161326;
          border: 1px solid #161326;
          color: #fff; }

.app {
  background: #161326 url(../images/app.jpg) no-repeat fixed center center/cover;
  min-height: 80vh;
  margin-bottom: 260px; }
  @media (max-width: 991px) {
    .app {
      margin-bottom: 122px;
      min-height: 56vh; } }
  .app::before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1; }
  .app::after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/be.png) no-repeat top center;
    z-index: 1; }
  .app .container {
    z-index: 10;
    display: none; }
  .app .title {
    color: #fff;
    text-align: center;
    font-size: 76px; }
    @media (max-width: 991px) {
      .app .title {
        font-size: 40px; } }
  .app .text {
    text-align: center;
    padding: 0px 10%;
    opacity: 0.8;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .app .text {
        padding: 0px;
        font-size: 14px; } }
  .app .app-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    width: 100%; }
    .app .app-icons a {
      display: block;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      background-clip: padding-box;
      overflow: hidden;
      width: 142px;
      margin: 0px 8px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 991px) {
        .app .app-icons a {
          width: 112px; } }
      .app .app-icons a img {
        width: 100%;
        height: 100%; }
      .app .app-icons a:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
  .app .photo {
    width: 100%;
    text-align: center;
    margin-top: 48px;
    margin-bottom: -200px; }
    @media (max-width: 991px) {
      .app .photo {
        margin-bottom: -100px;
        margin-top: 16px; } }
    .app .photo img {
      max-width: 74%; }
  .app .videoitem {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2; }
  .app iframe,
  .app video {
    position: absolute;
    height: auto;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (max-width: 580px) {
      .app iframe,
      .app video {
        width: 184%; } }

.searchbox {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  margin-top: 24px;
  padding: 24px 0px; }
  .searchbox .formsearch {
    display: flex; }
    @media (max-width: 991px) {
      .searchbox .formsearch {
        display: block; } }
  .searchbox .item {
    position: relative;
    border-right: 1px solid #f3f3f3;
    min-width: 22%;
    padding: 0px 24px; }
    @media (max-width: 991px) {
      .searchbox .item {
        min-width: 100%;
        border-right: 0px;
        border-bottom: 1px solid #f3f3f3;
        margin-bottom: 12px;
        padding-bottom: 12px; }
        .searchbox .item:last-child {
          margin-bottom: 0px;
          padding-bottom: 0px; } }
    .searchbox .item:last-child {
      display: flex;
      align-items: center;
      border: 0px;
      min-width: 12%; }
  .searchbox p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000929;
    opacity: 0.5;
    margin-bottom: 4px; }
  .searchbox .form-control {
    border-radius: 0px;
    border: 0px;
    padding: 0px;
    background: none;
    font-weight: 700;
    font-size: 18px;
    height: 38px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #000929; }
    .searchbox .form-control:focus {
      border: 0px; }
  .searchbox select.form-control {
    background: #fff url(../images/arow.png) no-repeat !important;
    background-position: 100% 10px !important; }
  .searchbox ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-weight: 700;
    font-size: 18px;
    height: 38px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #000929;
    opacity: 1;
    /* Firefox */ }
  .searchbox :-ms-input-placeholder {
    font-weight: 700;
    font-size: 18px;
    height: 38px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #000929; }
  .searchbox ::-ms-input-placeholder {
    font-weight: 700;
    font-size: 18px;
    height: 38px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #000929; }
  .searchbox .pr-input {
    display: flex;
    justify-content: space-between;
    position: relative; }
    .searchbox .pr-input input {
      border: 0px;
      padding: 0px;
      width: 60px;
      font-size: 12px;
      font-weight: 600;
      outline: none;
      line-height: 1;
      color: #000; }
      .searchbox .pr-input input:last-child {
        position: absolute;
        right: 0px;
        text-align: right; }
  .searchbox #slider-range {
    position: relative;
    margin: auto;
    width: 100%;
    height: 5px;
    background: #f3f3f3;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    margin-top: 10px; }
    .searchbox #slider-range .ui-slider-handle {
      position: absolute;
      width: 15px;
      height: 15px;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      background-clip: padding-box;
      border: 2px solid #0075bf;
      background: #fff;
      cursor: pointer;
      outline: none;
      margin-top: -6px; }
      .searchbox #slider-range .ui-slider-handle:last-child {
        margin-left: -14px; }
    .searchbox #slider-range .ui-slider-range {
      position: absolute;
      background: #0075bf;
      height: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background-clip: padding-box; }
  .searchbox .bottom {
    width: 100%; }

.jobs .searchbox .item {
  min-width: 26.666%; }
  .jobs .searchbox .item:last-child {
    min-width: 20%; }

.products-inner,
.jobs-inner {
  background: #fff; }
  .products-inner .back,
  .jobs-inner .back {
    display: inline-flex;
    align-items: center;
    color: #0075bf;
    font-weight: 700;
    font-size: 16px; }
    .products-inner .back svg,
    .jobs-inner .back svg {
      margin-right: 8px; }
    .products-inner .back:hover,
    .jobs-inner .back:hover {
      text-decoration: underline; }
  .products-inner .minheader,
  .jobs-inner .minheader {
    margin-top: 12px; }
    @media (max-width: 667px) {
      .products-inner .minheader,
      .jobs-inner .minheader {
        display: block; }
        .products-inner .minheader .bottoms,
        .jobs-inner .minheader .bottoms {
          margin-top: 12px; } }
  @media (max-width: 991px) {
    .products-inner .item,
    .jobs-inner .item {
      max-width: 100%;
      flex: 100%; } }
  .products-inner .carousel,
  .jobs-inner .carousel {
    display: flex;
    justify-content: space-between;
    margin-top: 24px; }
    .products-inner .carousel .carousel-inner,
    .jobs-inner .carousel .carousel-inner {
      min-width: calc(100% - 332px);
      max-width: calc(100% - 332px);
      background: #fff;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box;
      overflow: hidden; }
      @media (max-width: 991px) {
        .products-inner .carousel .carousel-inner,
        .jobs-inner .carousel .carousel-inner {
          min-width: calc(100% - 232px);
          max-width: calc(100% - 232px); } }
      @media (max-width: 500px) {
        .products-inner .carousel .carousel-inner,
        .jobs-inner .carousel .carousel-inner {
          min-width: calc(100% - 96px);
          max-width: calc(100% - 96px); } }
      .products-inner .carousel .carousel-inner .carousel-item,
      .jobs-inner .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%; }
        .products-inner .carousel .carousel-inner .carousel-item a.elem,
        .jobs-inner .carousel .carousel-inner .carousel-item a.elem {
          display: block;
          width: 100%;
          height: 100%; }
          @media (max-width: 500px) {
            .products-inner .carousel .carousel-inner .carousel-item a.elem,
            .jobs-inner .carousel .carousel-inner .carousel-item a.elem {
              height: 200px; } }
        .products-inner .carousel .carousel-inner .carousel-item img,
        .jobs-inner .carousel .carousel-inner .carousel-item img {
          width: 100%;
          min-height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .products-inner .carousel .carousel-inner .carousel-item:hover img,
        .jobs-inner .carousel .carousel-inner .carousel-item:hover img {
          -webkit-transform: scale(1.15);
          -moz-transform: scale(1.15);
          -ms-transform: scale(1.15);
          -o-transform: scale(1.15);
          transform: scale(1.15); }
    .products-inner .carousel ol.carousel-indicators,
    .jobs-inner .carousel ol.carousel-indicators {
      position: relative;
      min-width: 316px;
      max-width: 316px;
      bottom: auto;
      left: auto;
      display: block;
      margin: 0px;
      padding: 0px;
      overflow: hidden; }
      @media (max-width: 991px) {
        .products-inner .carousel ol.carousel-indicators,
        .jobs-inner .carousel ol.carousel-indicators {
          min-width: 216px;
          max-width: 216px; } }
      @media (max-width: 500px) {
        .products-inner .carousel ol.carousel-indicators,
        .jobs-inner .carousel ol.carousel-indicators {
          min-width: 80px;
          max-width: 80px; } }
      .products-inner .carousel ol.carousel-indicators li,
      .jobs-inner .carousel ol.carousel-indicators li {
        display: flex;
        width: 100%;
        height: calc(50% - 4px);
        text-indent: 0;
        background: #fff;
        margin: 0px;
        overflow: hidden;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        background-clip: padding-box;
        padding: 4px;
        margin-bottom: 8px;
        border: 2px solid transparent;
        overflow: hidden; }
        .products-inner .carousel ol.carousel-indicators li:last-child,
        .jobs-inner .carousel ol.carousel-indicators li:last-child {
          margin: 0px; }
        .products-inner .carousel ol.carousel-indicators li::before, .products-inner .carousel ol.carousel-indicators li::after,
        .jobs-inner .carousel ol.carousel-indicators li::before,
        .jobs-inner .carousel ol.carousel-indicators li::after {
          display: none; }
        .products-inner .carousel ol.carousel-indicators li img,
        .jobs-inner .carousel ol.carousel-indicators li img {
          display: block;
          width: 100%;
          height: 100%;
          -webkit-border-radius: 8px;
          border-radius: 8px;
          background-clip: padding-box;
          object-fit: cover; }
        .products-inner .carousel ol.carousel-indicators li.active,
        .jobs-inner .carousel ol.carousel-indicators li.active {
          border: 2px solid #0075bf; }
  .products-inner .botshow,
  .jobs-inner .botshow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 48px;
    background: #fff;
    font-weight: 700;
    color: #000;
    border: 2px solid #E0DEF7;
    border-radius: 8px; }
    .products-inner .botshow svg,
    .jobs-inner .botshow svg {
      margin-right: 8px; }
    @media (max-width: 991px) {
      .products-inner .botshow,
      .jobs-inner .botshow {
        width: 142px;
        height: 42px;
        font-size: 12px; } }

.details {
  width: 100%;
  margin-top: 24px;
  border-bottom: 1.5px solid #F0EFFB;
  padding-bottom: 24px; }
  .details:last-child {
    padding-bottom: 0px;
    border: 0px; }
  .details .title {
    text-transform: none;
    font-size: 24px; }
    .details .title:first-letter {
      text-transform: capitalize; }
  .details .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    margin-top: 16px;
    color: #000929;
    opacity: 0.7; }
  .details .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border: 1.5px solid #F0EFFB;
    border-radius: 8px;
    padding: 24px;
    padding-top: 0px; }
    .details .list li {
      font-weight: 500;
      line-height: 140%;
      color: #afacac;
      margin-top: 24px; }
      .details .list li span {
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 18px;
        line-height: 145%;
        letter-spacing: -0.005em;
        color: #000;
        margin-top: 12px; }
        .details .list li span svg {
          max-width: 24px;
          margin-right: 4px; }
  .details .it-features {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .details .it-features {
        max-width: 100%;
        flex: 100%; } }
    .details .it-features .features li {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px; }
      .details .it-features .features li:last-child {
        margin: 0px; }
      .details .it-features .features li span {
        font-weight: 500;
        line-height: 140%;
        color: #afacac; }
      .details .it-features .features li p {
        font-weight: 700;
        font-size: 18px;
        line-height: 145%;
        color: #000;
        letter-spacing: -0.005em; }
  .details .map {
    position: relative;
    background: #fff;
    height: 300px;
    margin-top: 24px; }
    .details .map iframe {
      display: block;
      border: 0px;
      width: 100%;
      height: 100%; }
    .details .map .bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 16px;
      left: 16px;
      width: 198px;
      height: 44px;
      /* Main Color/Secondary */
      background: #100A55;
      border-radius: 8px; }
      .details .map .bottom svg {
        margin-right: 4px;
        max-width: 20px;
        height: 20px;
        fill: #fff; }

.jobs-inner .item .photojob {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; }
  .jobs-inner .item .photojob img {
    max-width: 100%; }
.jobs-inner .item p {
  font-weight: 500;
  line-height: 38px; }
.jobs-inner .item ul,
.jobs-inner .item ol {
  padding-left: 16px; }
  .jobs-inner .item ul li,
  .jobs-inner .item ol li {
    margin-top: 12px;
    font-weight: 500;
    color: #000; }
    .jobs-inner .item ul li a,
    .jobs-inner .item ol li a {
      display: flex;
      align-items: center;
      color: #0075bf; }
      .jobs-inner .item ul li a svg,
      .jobs-inner .item ol li a svg {
        width: 20px;
        margin-right: 8px; }
      .jobs-inner .item ul li a:hover,
      .jobs-inner .item ol li a:hover {
        text-decoration: underline; }
.jobs-inner .item .sidbar .bo-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 0px !important; }
  .jobs-inner .item .sidbar .bo-link li {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0px; }
    .jobs-inner .item .sidbar .bo-link li svg {
      width: 18px;
      height: 18px;
      margin-right: 4px; }

.it-input {
  position: relative; }
  .it-input .form-control {
    padding-left: 32px; }
  .it-input svg {
    position: absolute;
    left: 0px;
    top: 8px; }

.sidbar {
  position: sticky;
  top: 100px;
  width: 100%; }
  .sidbar .post {
    width: 100%;
    padding: 24px;
    background: #F0F3FB;
    border: 1.5px solid #E0DEF7;
    border-radius: 8px;
    margin-top: 24px; }
    .sidbar .post .userpost {
      display: flex;
      align-items: center; }
      .sidbar .post .userpost .img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 12px; }
        .sidbar .post .userpost .img img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .sidbar .post .userpost .content .name {
        color: #0075bf;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%; }
    .sidbar .post p {
      font-weight: 500;
      line-height: 140%;
      color: #afacac;
      margin-bottom: 4px; }
    .sidbar .post .price, .sidbar .post .jobs .itemrel .inner .minheader .loc, .jobs .itemrel .inner .minheader .sidbar .post .loc {
      margin-top: 24px; }
      .sidbar .post .price .numberprice, .sidbar .post .jobs .itemrel .inner .minheader .loc .numberprice, .jobs .itemrel .inner .minheader .sidbar .post .loc .numberprice {
        font-weight: 800;
        font-size: 24px;
        line-height: 150%;
        color: #0075bf; }
        .sidbar .post .price .numberprice span, .sidbar .post .jobs .itemrel .inner .minheader .loc .numberprice span, .jobs .itemrel .inner .minheader .sidbar .post .loc .numberprice span {
          font-weight: 500;
          font-size: 14px;
          line-height: 140%;
          color: #000929;
          opacity: 0.5; }
    .sidbar .post .bottom {
      margin-top: 24px;
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      height: 56px;
      border: 1px solid #0075bf; }
      .sidbar .post .bottom:hover {
        border: 1px solid #161326; }
      .sidbar .post .bottom svg {
        fill: #fff;
        margin-right: 4px;
        width: 22px; }
      .sidbar .post .bottom.sttmass {
        color: #0075bf;
        background: none;
        border: 1px solid #0075bf;
        margin-bottom: -12px; }
        .sidbar .post .bottom.sttmass svg {
          fill: #0075bf; }
  .sidbar .advs {
    width: 100%;
    margin-top: 24px;
    text-align: center;
    overflow: hidden; }
    .sidbar .advs img {
      max-width: 100%; }

.elem > span {
  display: block;
  cursor: pointer;
  height: 100%;
  padding-bottom: 65%;
  background-size: cover;
  background-position: center center; }

.subphoto {
  position: relative;
  width: 100%;
  height: 442px;
  border-radius: 24px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .subphoto {
      height: 310px; } }
  .subphoto img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .subphoto .contant {
    display: flex;
    align-items: flex-end;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    padding: 32px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%); }
    .subphoto .contant .inner {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media (max-width: 767px) {
        .subphoto .contant .inner {
          display: block; } }
    .subphoto .contant .title {
      color: #fff; }
      @media (max-width: 767px) {
        .subphoto .contant .title {
          text-align: center; } }
    .subphoto .contant .bottom {
      width: 228px;
      height: 56px;
      font-weight: 700;
      font-size: 16px;
      line-height: 150%; }
      @media (max-width: 767px) {
        .subphoto .contant .bottom {
          width: 100%;
          margin-top: 16px; } }

.showrooms .minheader {
  margin-bottom: 24px; }
.showrooms .item {
  margin-top: 24px; }
  @media (max-width: 991px) {
    .showrooms .item {
      max-width: 100%;
      flex: 100%; } }
  .showrooms .item .minheader {
    margin-bottom: 0px; }
.showrooms select.form-control {
  width: 104px;
  background-position: 90% 14px !important; }
@media (max-width: 767px) {
  .showrooms input.form-control {
    display: block !important;
    width: 100%; } }
.showrooms .sidbar .advs {
  margin-top: 76px; }
  @media (max-width: 991px) {
    .showrooms .sidbar .advs {
      margin-top: 0px; } }
.showrooms .it-input svg {
  left: 8px;
  top: 12px; }
  @media (max-width: 767px) {
    .showrooms .it-input svg {
      width: 100%; } }
.showrooms .itemrel {
  max-width: 50%;
  flex: 50%; }
  @media (max-width: 500px) {
    .showrooms .itemrel {
      max-width: 100%;
      flex: 100%; } }
  .showrooms .itemrel .title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0075bf;
    font-weight: 500;
    font-size: 16px;
    margin-top: 16px; }
  .showrooms .itemrel p {
    -webkit-line-clamp: 1; }

.carsrentals .minheader {
  margin-top: 24px; }
  @media (max-width: 767px) {
    .carsrentals .minheader input.form-control {
      display: block !important;
      width: 100%; } }
  .carsrentals .minheader select.form-control {
    width: 104px;
    background-position: 90% 14px !important; }
  @media (max-width: 767px) {
    .carsrentals .minheader .it-input {
      width: 100%; } }
  .carsrentals .minheader .it-input svg {
    left: 8px;
    top: 12px; }

.minhouse {
  padding-bottom: 48px; }
  @media (max-width: 991px) {
    .minhouse {
      padding-bottom: 24px; } }
  .minhouse .inner-bg {
    position: relative;
    width: 100%;
    padding: 24px;
    background: #161326; }
    .minhouse .inner-bg .item:first-child {
      display: flex;
      align-items: center; }
    @media (max-width: 991px) {
      .minhouse .inner-bg .item {
        max-width: 100%;
        flex: 100%; } }
    .minhouse .inner-bg .item .title {
      color: #fff; }
    .minhouse .inner-bg .item .text {
      color: #fff;
      opacity: 0.5;
      margin: 12px 0px; }
    .minhouse .inner-bg .item .bottom {
      display: inline-flex;
      width: 120px; }
      .minhouse .inner-bg .item .bottom:hover {
        background: #01558b; }
    .minhouse .inner-bg .item .itemrel {
      margin: 0px; }
      @media (max-width: 991px) {
        .minhouse .inner-bg .item .itemrel {
          margin-top: 24px; } }
      .minhouse .inner-bg .item .itemrel .minheader .title {
        color: #0075bf; }

.minelectronics {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: linear-gradient(303.91deg, #041c3fd1 7.57%, #8b1449 94.39%); }
  @media (max-width: 991px) {
    .minelectronics {
      padding: 24px 0px; } }
  .minelectronics .minheader .title,
  .minelectronics .minheader .link {
    color: #fff; }

.comments {
  display: flex;
  border-bottom: 1px solid #f3f3f3;
  margin-top: 24px;
  padding-bottom: 24px;
  background: #fff; }
  .comments:last-of-type {
    border-bottom: 0px; }
  .comments .photo {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    border: 1px solid #fff;
    margin-right: 16px;
    -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15); }
    .comments .photo img {
      width: 100%;
      min-height: 100%;
      object-fit: cover; }
  .comments .content {
    margin-left: 12px; }
  .comments .title {
    font-size: 18px; }
  .comments .days {
    display: block;
    font-size: 14px;
    color: #9EA0A5; }
  .comments .text {
    font-weight: 500; }
  .comments .answer {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-weight: 500;
    cursor: pointer;
    color: #161326 !important; }
    .comments .answer svg {
      margin-right: 4px;
      fill: #0075bf; }
  .comments .numb {
    color: #000;
    font-weight: 600;
    margin-left: 4px; }
  .comments .commentinner {
    display: flex;
    width: 100%;
    margin-top: 24px;
    position: relative;
    border-top: 1.5px solid #F0EFFB;
    padding-top: 24px; }
  .comments .towans {
    padding-left: 78px; }

.terms-conditions,
.privacy-policy,
.aboutus,
.contantus {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #F0F3FB url(../images/bg.png) no-repeat;
  background-position: 80% 0%; }
  @media (max-width: 991px) {
    .terms-conditions,
    .privacy-policy,
    .aboutus,
    .contantus {
      padding: 24px 0px; } }
  .terms-conditions .inner,
  .privacy-policy .inner,
  .aboutus .inner,
  .contantus .inner {
    margin: 0px auto;
    padding: 32px;
    max-width: 80%;
    background: #fff;
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-clip: padding-box; }
    @media (max-width: 991px) {
      .terms-conditions .inner,
      .privacy-policy .inner,
      .aboutus .inner,
      .contantus .inner {
        max-width: 100%;
        padding: 24px; } }
    .terms-conditions .inner .data,
    .privacy-policy .inner .data,
    .aboutus .inner .data,
    .contantus .inner .data {
      margin-top: 24px; }
      .terms-conditions .inner .data h1,
      .terms-conditions .inner .data h2,
      .terms-conditions .inner .data h3,
      .terms-conditions .inner .data h4,
      .terms-conditions .inner .data h5,
      .terms-conditions .inner .data h6,
      .privacy-policy .inner .data h1,
      .privacy-policy .inner .data h2,
      .privacy-policy .inner .data h3,
      .privacy-policy .inner .data h4,
      .privacy-policy .inner .data h5,
      .privacy-policy .inner .data h6,
      .aboutus .inner .data h1,
      .aboutus .inner .data h2,
      .aboutus .inner .data h3,
      .aboutus .inner .data h4,
      .aboutus .inner .data h5,
      .aboutus .inner .data h6,
      .contantus .inner .data h1,
      .contantus .inner .data h2,
      .contantus .inner .data h3,
      .contantus .inner .data h4,
      .contantus .inner .data h5,
      .contantus .inner .data h6 {
        font-size: 24px;
        font-weight: 500;
        color: #0075bf; }
      .terms-conditions .inner .data p,
      .privacy-policy .inner .data p,
      .aboutus .inner .data p,
      .contantus .inner .data p {
        margin-top: 12px; }
      .terms-conditions .inner .data ol,
      .terms-conditions .inner .data ul,
      .privacy-policy .inner .data ol,
      .privacy-policy .inner .data ul,
      .aboutus .inner .data ol,
      .aboutus .inner .data ul,
      .contantus .inner .data ol,
      .contantus .inner .data ul {
        padding-left: 32px;
        margin-top: 12px; }
        .terms-conditions .inner .data ol li,
        .terms-conditions .inner .data ul li,
        .privacy-policy .inner .data ol li,
        .privacy-policy .inner .data ul li,
        .aboutus .inner .data ol li,
        .aboutus .inner .data ul li,
        .contantus .inner .data ol li,
        .contantus .inner .data ul li {
          margin-bottom: 8px;
          list-style: disc;
          font-weight: 500;
          color: #000; }
          .terms-conditions .inner .data ol li:last-child,
          .terms-conditions .inner .data ul li:last-child,
          .privacy-policy .inner .data ol li:last-child,
          .privacy-policy .inner .data ul li:last-child,
          .aboutus .inner .data ol li:last-child,
          .aboutus .inner .data ul li:last-child,
          .contantus .inner .data ol li:last-child,
          .contantus .inner .data ul li:last-child {
            margin: 0px; }

.aboutus .item {
  display: flex;
  align-items: center; }
  @media (max-width: 991px) {
    .aboutus .item {
      max-width: 100%;
      flex: 100%;
      margin-bottom: 32px; } }
  .aboutus .item .title {
    line-height: 120%;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .aboutus .item .title {
        margin-top: 8px; } }
  .aboutus .item p {
    font-weight: 400;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .aboutus .item p {
        margin-top: 8px; } }
  .aboutus .item .photo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    text-align: center;
    background: url(../images/itemslider.png) no-repeat; }
    @media (max-width: 991px) {
      .aboutus .item .photo {
        height: auto; } }
    .aboutus .item .photo img {
      position: relative;
      max-width: 88%;
      max-height: 100%; }
  .aboutus .item .bottom {
    margin-top: 16px; }
    @media (max-width: 991px) {
      .aboutus .item .bottom {
        margin-top: 12px; } }
.aboutus .itemnumber {
  display: flex;
  align-items: center;
  margin-top: 48px; }
  @media (max-width: 991px) {
    .aboutus .itemnumber {
      max-width: 50%;
      flex: 50%;
      margin-top: 24px; } }
  @media (max-width: 500px) {
    .aboutus .itemnumber {
      max-width: 100%;
      flex: 100%; } }
  .aboutus .itemnumber .innerbg {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 38px 24px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background-clip: padding-box; }
    .aboutus .itemnumber .innerbg img,
    .aboutus .itemnumber .innerbg svg {
      max-width: 52px;
      fill: #0075bf; }
    .aboutus .itemnumber .innerbg .contant {
      padding-left: 24px; }
      .aboutus .itemnumber .innerbg .contant .flex {
        display: flex;
        align-items: center; }
        .aboutus .itemnumber .innerbg .contant .flex span {
          display: block;
          margin-right: 4px;
          font-weight: 600;
          font-size: 38px;
          color: #0075bf; }
      .aboutus .itemnumber .innerbg .contant .title {
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: 600;
        font-size: 16px;
        line-height: 1;
        margin-top: 16px;
        text-transform: capitalize; }
  .aboutus .itemnumber .timer {
    font-size: 32px;
    color: #000;
    font-weight: 700; }
    @media (max-width: 1199px) {
      .aboutus .itemnumber .timer {
        font-size: 30px; } }

.contantus .inner .title {
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  margin-bottom: 24px; }
  @media (max-width: 991px) {
    .contantus .inner .title {
      margin-bottom: 12px; } }
@media (max-width: 991px) {
  .contantus .inner .item {
    max-width: 100%;
    flex: 100%; }
    .contantus .inner .item:last-child {
      margin-left: 0px; } }
.contantus .inner .item:last-child {
  margin-top: 38px; }
.contantus .inner .item label {
  font-weight: 600;
  color: #000;
  margin-bottom: 4px; }
.contantus .inner .item .media {
  display: flex;
  align-items: center;
  margin-bottom: 48px; }
  .contantus .inner .item .media:last-child {
    margin: 0px; }
  .contantus .inner .item .media svg,
  .contantus .inner .item .media img {
    fill: #0075bf;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px; }
  .contantus .inner .item .media .contantinfo {
    position: relative;
    margin-left: 24px;
    padding-left: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
    .contantus .inner .item .media .contantinfo::after {
      content: "";
      position: absolute;
      left: 0px;
      top: 0px;
      width: 4px;
      height: 100%;
      background: #0075bf;
      border-radius: 8px; }
    .contantus .inner .item .media .contantinfo span {
      display: block;
      color: #161326;
      line-height: 1;
      color: #000;
      opacity: 0.5;
      text-transform: uppercase; }
    .contantus .inner .item .media .contantinfo p,
    .contantus .inner .item .media .contantinfo a {
      display: block;
      width: 100%;
      font-weight: 400;
      line-height: 26px;
      color: #000;
      margin-top: 8px;
      line-height: 1;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .contantus .inner .item .media .contantinfo a:hover {
      color: #0075bf; }
.contantus .inner .item .flexphone {
  display: flex; }
  .contantus .inner .item .flexphone a {
    margin-right: 12px; }
    .contantus .inner .item .flexphone a:last-child {
      margin-right: 0px; }
.contantus .inner .inpudata {
  margin-bottom: 24px;
  width: 100%; }
  .contantus .inner .inpudata:last-child {
    margin: 0px; }
  .contantus .inner .inpudata .bottom {
    min-width: 160px;
    height: 54px; }
.contantus ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A9A9AA;
  opacity: 1;
  font-size: 12px;
  /* Firefox */ }
.contantus :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #A9A9AA;
  font-size: 12px; }
.contantus ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #A9A9AA;
  font-size: 12px; }

.modal {
  padding: 0px 8px !important;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5); }
  .modal .modal-dialog {
    max-width: 574px; }
  .modal .modal-content {
    padding: 32px;
    border: 0px;
    border-radius: 16px; }
    @media (max-width: 991px) {
      .modal .modal-content {
        padding: 16px; } }
  .modal .close {
    position: absolute;
    top: 32px;
    right: 32px;
    margin: 0px;
    padding: 0px;
    opacity: 1;
    text-shadow: none;
    outline: none; }
    @media (max-width: 991px) {
      .modal .close {
        top: 16px;
        right: 16px; } }
  .modal .textsign {
    font-size: 12px;
    line-height: 18px;
    color: #000; }
    .modal .textsign p {
      margin: 0px; }
    .modal .textsign a {
      text-decoration: underline;
      color: #0075bf; }
      .modal .textsign a:hover {
        text-decoration: none; }
  .modal .chicksign {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .modal .chicksign .che-box {
      margin: 0px; }
      .modal .chicksign .che-box span.label-text {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400; }
    .modal .chicksign .forgetlink {
      display: block;
      line-height: 14px;
      color: #0075bf;
      font-weight: 400;
      font-size: 12px; }
      .modal .chicksign .forgetlink:hover {
        text-decoration: underline; }
  .modal .title {
    font-weight: 600;
    font-size: 24px; }
  .modal .field {
    margin-bottom: 16px; }
    .modal .field:last-child {
      margin: 0px; }
    .modal .field label {
      font-weight: 600;
      color: #000;
      margin-bottom: 4px; }
    .modal .field .bottom {
      width: 100%;
      height: 50px; }
  .modal .custom-file-label,
  .modal .custom-file-input {
    width: calc(100% - 24px);
    outline: 0px !important;
    height: 48px;
    border: 1px solid transparent;
    background: #F4F4F4;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background-clip: padding-box;
    color: #000;
    left: 12px; }
  .modal .custom-file-label {
    display: flex;
    align-items: center;
    margin: 0px !important;
    box-shadow: none !important;
    outline: 0 !important;
    outline-style: none !important;
    padding-left: 100px; }
  .modal .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: " upload cv ";
    background: none;
    height: 48px;
    border: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    left: 16px;
    top: 0px;
    font-weight: normal; }
  .modal .warning {
    text-align: center; }
    .modal .warning svg {
      min-width: 100px;
      max-width: 100px;
      fill: #D1362A;
      margin-bottom: 16px; }
    .modal .warning p {
      margin-bottom: 16px; }

.post-your-ad {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff; }
  @media (max-width: 991px) {
    .post-your-ad {
      padding: 24px 0px; } }
  .post-your-ad .list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0px 16px 0px; }
    @media (max-width: 767px) {
      .post-your-ad .list {
        margin: 16px 0px 8px 0px; } }
    .post-your-ad .list li {
      position: relative;
      padding: 0px 32px; }
      @media (max-width: 767px) {
        .post-your-ad .list li {
          padding: 0px 4px; } }
      .post-your-ad .list li::after {
        content: "";
        position: absolute;
        left: 108px;
        top: 18px;
        width: 100%;
        height: 2px;
        background: #F0F0F0; }
        @media (max-width: 767px) {
          .post-your-ad .list li::after {
            left: 58px; } }
      .post-your-ad .list li .icon {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px auto;
        width: 40px;
        height: 40px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        background: #F0F0F0;
        box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25); }
        .post-your-ad .list li .icon i {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 30px;
          height: 30px;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          background-clip: padding-box;
          background: #BFBFBF;
          border: 5px solid transparent;
          font-style: normal;
          font-weight: 700;
          font-size: 14px !important;
          font-size: 19.8538px;
          color: #fff; }
      .post-your-ad .list li .text {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        width: 112px;
        height: 36px;
        font-weight: 700;
        font-size: 16px;
        line-height: 19px;
        color: #8C8C8C;
        box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
        background: #F0F0F0;
        box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
        border-radius: 26px;
        margin-top: 24px; }
        @media (max-width: 767px) {
          .post-your-ad .list li .text {
            width: 68px;
            height: 30px;
            font-weight: 500;
            font-size: 12px;
            margin-top: 16px; } }
        .post-your-ad .list li .text::before {
          content: "";
          position: absolute;
          top: -6px;
          left: 50px;
          width: 0px;
          height: 0px;
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-bottom: 6px solid #D9D9D9; }
          @media (max-width: 767px) {
            .post-your-ad .list li .text::before {
              left: 28px; } }
      .post-your-ad .list li.active::after {
        background: #0075bf; }
      .post-your-ad .list li.active .icon i {
        background: #fff;
        border: 5px solid #0075bf;
        color: #0075bf; }
      .post-your-ad .list li.active .text {
        color: #fff;
        background: #0075bf; }
        .post-your-ad .list li.active .text::before {
          border-bottom: 6px solid #0075bf; }
      .post-your-ad .list li:last-child::after {
        display: none; }
  .post-your-ad .item {
    margin-top: 24px;
    max-width: 20%;
    flex: 20%; }
    @media (max-width: 1199px) {
      .post-your-ad .item {
        max-width: 33.333%;
        flex: 33.333%; } }
    @media (max-width: 991px) {
      .post-your-ad .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 480px) {
      .post-your-ad .item {
        max-width: 100%;
        flex: 100%; } }
    .post-your-ad .item .inner {
      position: relative;
      background: #fff;
      width: 100%;
      border-radius: 16px;
      padding: 8px;
      background: #F7F7FD; }
      .post-your-ad .item .inner .photo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 168px;
        overflow: hidden;
        z-index: 10;
        border-radius: 16px; }
        .post-your-ad .item .inner .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .post-your-ad .item .inner .photo:hover img {
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          transform: scale(1.1); }
    .post-your-ad .item .title {
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-weight: 500;
      font-size: 16px !important;
      margin-top: 16px; }
    .post-your-ad .item .bo-link {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      border-top: 1px solid #e3e3e9;
      margin-top: 16px;
      padding: 16px 0px 8px 0px; }
      .post-your-ad .item .bo-link .all {
        display: flex; }
        .post-your-ad .item .bo-link .all .botsmall {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 78px;
          height: 34px;
          color: #fff;
          background: #0075bf;
          margin-right: 8px;
          border-radius: 16px;
          font-weight: 500;
          font-size: 12px;
          font-style: normal; }
          .post-your-ad .item .bo-link .all .botsmall:last-child {
            margin: 0px; }
          .post-your-ad .item .bo-link .all .botsmall.blue {
            background: #4D3BD8; }
          .post-your-ad .item .bo-link .all .botsmall.red {
            background: #CC2131; }
          .post-your-ad .item .bo-link .all .botsmall.orange {
            background: #F7931A; }
      .post-your-ad .item .bo-link .link {
        padding: 8px;
        margin-right: 16px; }
  .post-your-ad .bg {
    width: 100%;
    margin-top: 24px; }
    .post-your-ad .bg .iteminput {
      width: 100%;
      padding: 24px;
      background: #FCFCFC;
      margin-top: 4px; }
    .post-your-ad .bg .minheader .title {
      font-weight: 600;
      font-size: 20px;
      padding-left: 24px; }
      .post-your-ad .bg .minheader .title::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        background: #0075bf;
        width: 16px;
        height: 100%;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-clip: padding-box; }
    .post-your-ad .bg .minheader .bottom {
      width: 96px;
      height: 40px;
      background: #FCFCFC;
      border: 2px solid #EFEFEF;
      border-radius: 8px;
      color: #000;
      font-weight: 700; }
      .post-your-ad .bg .minheader .bottom:hover {
        background: #0075bf;
        border: 2px solid #0075bf;
        color: #fff; }
        .post-your-ad .bg .minheader .bottom:hover svg {
          fill: #fff; }
      .post-your-ad .bg .minheader .bottom svg {
        min-width: 12px;
        max-width: 12px;
        margin-right: 8px;
        fill: #000;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .post-your-ad .bg .field {
      margin-top: 24px; }
      @media (max-width: 767px) {
        .post-your-ad .bg .field {
          max-width: 100%;
          flex: 100%; } }
      .post-your-ad .bg .field .form-control {
        background: #fff;
        border: 1px solid #EFEFEF; }
        .post-your-ad .bg .field .form-control:focus {
          border: 1px solid #0075bf; }
    .post-your-ad .bg span.btn.btn-primary {
      width: 211px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-weight: 700;
      font-size: 15px;
      background: #FCFCFC;
      border: 2px solid #EFEFEF;
      box-shadow: 0px 12px 13px -6px rgba(0, 0, 0, 0.04);
      border-radius: 12px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      padding: 8px 16px; }
      .post-your-ad .bg span.btn.btn-primary:hover {
        background: #0075bf;
        border: 2px solid #0075bf;
        color: #fff; }
        .post-your-ad .bg span.btn.btn-primary:hover svg {
          fill: #fff; }
      .post-your-ad .bg span.btn.btn-primary svg {
        width: 24px;
        margin-right: 8px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .post-your-ad .bg .inner-field {
      width: 100%;
      background: #F4F4F4;
      -webkit-border-radius: 12px;
      border-radius: 12px;
      background-clip: padding-box;
      padding: 8px 12px; }
      .post-your-ad .bg .inner-field .input-group-btn {
        width: 100%;
        margin: 0px;
        text-align: center;
        margin-top: 66px; }
      .post-your-ad .bg .inner-field .form-control {
        padding: 0px;
        box-shadow: none !important;
        background: none !important;
        border: 0px !important;
        text-align: center;
        color: #0075bf;
        font-size: 16px; }
    .post-your-ad .bg .subtext {
      display: flex;
      font-weight: 600;
      color: #000;
      margin-bottom: 8px; }
      .post-your-ad .bg .subtext small {
        visibility: hidden;
        width: 132px;
        background-color: #fff;
        text-align: center;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        background-clip: padding-box;
        padding: 8px !important;
        position: absolute;
        bottom: 100%;
        line-height: 20px;
        font-size: 14px;
        left: 50%;
        margin-left: -66px;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 20;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        transform: translateY(10px);
        -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
        -o-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
        -ms-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08); }
        @media (max-width: 767px) {
          .post-your-ad .bg .subtext small {
            margin: 0px;
            left: auto;
            right: -20px; } }
        .post-your-ad .bg .subtext small::after {
          content: "";
          position: absolute;
          top: 99%;
          left: 50%;
          margin-left: -5px;
          border-width: 5px;
          border-style: solid;
          border-color: #fff transparent transparent transparent; }
          @media (max-width: 767px) {
            .post-your-ad .bg .subtext small::after {
              left: auto;
              right: 24px;
              margin: 0px; } }
      .post-your-ad .bg .subtext span {
        position: relative;
        margin-left: 4px;
        cursor: pointer; }
        .post-your-ad .bg .subtext span svg {
          width: 14px;
          fill: #9A9FA5; }
        .post-your-ad .bg .subtext span:hover small {
          visibility: visible;
          opacity: 1;
          transform: translateY(0); }
    .post-your-ad .bg .itcheck .che-box {
      display: table;
      margin-top: 8px; }
      .post-your-ad .bg .itcheck .che-box input[type="checkbox"] + .label-text:before,
      .post-your-ad .bg .itcheck .che-box input[type="radio"] + .label-text:before {
        background: #fff;
        border: 1px solid #EFEFEF; }
      .post-your-ad .bg .itcheck .che-box input[type="checkbox"]:checked + .label-text:before,
      .post-your-ad .bg .itcheck .che-box input[type="radio"]:checked + .label-text:before {
        content: "";
        background: #0075bf url(../images/tick.svg) no-repeat center center;
        border: 1px solid #0075bf;
        background-size: 100% 100%;
        animation: effect 250ms ease-in; }
      .post-your-ad .bg .itcheck .che-box .label-text {
        font-weight: 600;
        line-height: 24px;
        color: #000; }
    .post-your-ad .bg .amount {
      position: relative; }
      .post-your-ad .bg .amount .iconprice {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 1px;
        top: 1px;
        width: 46px;
        height: 46px;
        background: #EFEFEF;
        border-bottom-left-radius: 12px;
        border-top-left-radius: 12px;
        color: #000;
        font-style: normal; }
      .post-your-ad .bg .amount .form-control {
        padding-left: 60px; }
    .post-your-ad .bg .bottom {
      width: 100%;
      font-weight: 700;
      margin-top: 4px; }
    .post-your-ad .bg .bottoms {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px; }
      .post-your-ad .bg .bottoms .bottom {
        display: inline-flex;
        width: 146px;
        height: 48px;
        margin: 0px 8px;
        padding: 0px;
        border: 1px solid #0075bf; }
        .post-your-ad .bg .bottoms .bottom:hover {
          background: #161326;
          border: 1px solid #161326; }
        .post-your-ad .bg .bottoms .bottom:last-child {
          background: none;
          color: #0075bf;
          margin: 0px; }
          .post-your-ad .bg .bottoms .bottom:last-child:hover {
            background: #161326;
            border: 1px solid #161326;
            color: #fff; }
  .post-your-ad .completed {
    text-align: center; }
    .post-your-ad .completed .circle {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 48px auto 0px auto;
      width: 224px;
      height: 224px;
      background: #B5E4CA;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      background-clip: padding-box; }
      @media (max-width: 991px) {
        .post-your-ad .completed .circle {
          width: 180px;
          height: 180px; } }
      .post-your-ad .completed .circle img {
        max-width: 100%;
        max-height: 100%; }
    .post-your-ad .completed span {
      display: block;
      font-weight: 600;
      font-size: 20px;
      line-height: 32px;
      letter-spacing: -0.02em;
      color: #33383F;
      margin-top: 24px; }
    .post-your-ad .completed .title {
      margin-top: 8px;
      font-weight: 600;
      font-size: 48px; }
      @media (max-width: 991px) {
        .post-your-ad .completed .title {
          font-size: 32px; } }
    .post-your-ad .completed .bottom {
      display: inline-flex;
      margin-top: 16px; }

.dashboard {
  display: flex;
  position: relative;
  width: 100%;
  background: #fff; }
  .dashboard .iconsmenu {
    position: relative; }
  .dashboard .icon-mobile {
    height: 14px;
    width: 20px;
    position: absolute;
    top: 26px;
    right: 12px;
    border-top: 2px solid #000;
    cursor: pointer;
    display: none;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 991px) {
      .dashboard .icon-mobile {
        display: block; } }
    .dashboard .icon-mobile:before, .dashboard .icon-mobile:after {
      position: absolute;
      top: 4px;
      right: 0px;
      display: block;
      height: 2px;
      width: 20px;
      background: #000;
      content: '';
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .dashboard .icon-mobile:after {
      top: 10px; }
  .dashboard .item {
    position: relative;
    width: 340px;
    background: #FCFCFC;
    padding: 24px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .dashboard .item .cancel {
      display: none;
      position: absolute;
      top: 4px;
      right: 12px; }
      @media (max-width: 991px) {
        .dashboard .item .cancel {
          display: block; } }
      .dashboard .item .cancel svg {
        width: 18px;
        height: 18px; }
    @media (max-width: 991px) {
      .dashboard .item {
        display: flex;
        align-items: center;
        position: fixed;
        left: -100%;
        width: 290px;
        height: 100%;
        z-index: 1002;
        top: 0px; }
        .dashboard .item.active {
          left: 0px;
          overflow-y: scroll; } }
    .dashboard .item .list {
      width: 100%; }
      .dashboard .item .list a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 48px;
        border-radius: 12px;
        padding: 12px;
        color: #6F767E;
        margin-bottom: 8px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        font-weight: 600;
        font-size: 16px; }
        .dashboard .item .list a:last-child {
          margin: 0px; }
        .dashboard .item .list a svg {
          width: 20px;
          height: 20px;
          fill: #6F767E;
          margin-right: 8px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .dashboard .item .list a:hover, .dashboard .item .list a.active {
          background: #0075bf;
          color: #fff; }
          .dashboard .item .list a:hover svg, .dashboard .item .list a.active svg {
            fill: #fff; }
  .dashboard .content {
    position: relative;
    width: calc(100% - 340px);
    padding: 24px 32px; }
    @media (max-width: 991px) {
      .dashboard .content {
        width: 100%;
        padding: 24px 12px; } }
    .dashboard .content .inner {
      width: 100%;
      padding: 24px 24px 48px 24px;
      background: #FCFCFC;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box;
      overflow: hidden;
      margin-top: 24px; }
      @media (max-width: 991px) {
        .dashboard .content .inner {
          padding-bottom: 24px; } }
      .dashboard .content .inner .minheader .title {
        font-weight: 600;
        font-size: 20px;
        padding-left: 24px; }
        .dashboard .content .inner .minheader .title::before {
          content: "";
          position: absolute;
          left: 0px;
          top: 0px;
          background: #FFBC99;
          width: 16px;
          height: 100%;
          -webkit-border-radius: 4px;
          border-radius: 4px;
          background-clip: padding-box; }
      .dashboard .content .inner .minheader .form-control {
        width: 132px;
        height: 40px;
        background-position: 98% 10px !important; }
      .dashboard .content .inner:last-child .minheader .title::before {
        background: #0075bf; }
    .dashboard .content .iteminner {
      margin-top: 24px;
      border-right: 1px solid #EFEFEF; }
      .dashboard .content .iteminner:last-child {
        border: 0px; }
      @media (max-width: 991px) {
        .dashboard .content .iteminner {
          max-width: 50%;
          flex: 50%;
          border: 0px; } }
      .dashboard .content .iteminner .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        background: #474f47;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .dashboard .content .iteminner .icon svg {
          width: 20px;
          height: 20px;
          fill: #000; }
      .dashboard .content .iteminner .flexbox {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 24px; }
        .dashboard .content .iteminner .flexbox p {
          display: flex;
          align-items: center;
          color: #6F767E; }
          .dashboard .content .iteminner .flexbox p small {
            visibility: hidden;
            width: 80px;
            background-color: #fff;
            text-align: center;
            -webkit-border-radius: 6px;
            border-radius: 6px;
            background-clip: padding-box;
            padding: 8px !important;
            position: absolute;
            bottom: 100%;
            line-height: 20px;
            font-size: 14px;
            left: 50%;
            margin-left: -40px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 20;
            -moz-transition: all 0.5s ease-in-out 0s;
            -o-transition: all 0.5s ease-in-out 0s;
            -webkit-transition: all 0.5s ease-in-out 0s;
            transition: all 0.5s ease-in-out 0s;
            transform: translateY(10px);
            -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
            -moz-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
            -o-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
            -ms-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08); }
            .dashboard .content .iteminner .flexbox p small::after {
              content: "";
              position: absolute;
              top: 99%;
              left: 50%;
              margin-left: -5px;
              border-width: 5px;
              border-style: solid;
              border-color: #fff transparent transparent transparent; }
          .dashboard .content .iteminner .flexbox p span {
            position: relative;
            margin-left: 4px;
            cursor: pointer; }
            .dashboard .content .iteminner .flexbox p span svg {
              width: 14px; }
              .dashboard .content .iteminner .flexbox p span svg path {
                fill: #6F767E; }
            .dashboard .content .iteminner .flexbox p span:hover small {
              visibility: visible;
              opacity: 1;
              transform: translateY(0); }
      .dashboard .content .iteminner .timer {
        font-size: 58px;
        margin-top: 16px;
        color: #000; }
        @media (max-width: 991px) {
          .dashboard .content .iteminner .timer {
            font-size: 34px; } }
      .dashboard .content .iteminner:nth-child(1) .icon {
        background: #B5E4CA; }
      .dashboard .content .iteminner:nth-child(2) {
        padding-left: 48px; }
        @media (max-width: 991px) {
          .dashboard .content .iteminner:nth-child(2) {
            padding-left: 12px; } }
        .dashboard .content .iteminner:nth-child(2) .icon {
          background: #FFBC99; }
      .dashboard .content .iteminner:nth-child(3) {
        padding-left: 48px; }
        @media (max-width: 991px) {
          .dashboard .content .iteminner:nth-child(3) {
            padding-left: 12px; } }
        .dashboard .content .iteminner:nth-child(3) .icon {
          background: #CABDFF; }
      .dashboard .content .iteminner:nth-child(4) {
        padding-left: 48px; }
        @media (max-width: 991px) {
          .dashboard .content .iteminner:nth-child(4) {
            padding-left: 12px; } }
        .dashboard .content .iteminner:nth-child(4) .icon {
          background: #B1E5FC; }
    .dashboard .content .field {
      margin-top: 24px; }
      @media (max-width: 991px) {
        .dashboard .content .field {
          max-width: 100%;
          flex: 100%; } }
      .dashboard .content .field .subtext {
        display: flex;
        font-weight: 600;
        color: #000;
        margin-bottom: 8px; }
        .dashboard .content .field .subtext small {
          visibility: hidden;
          width: 132px;
          background-color: #fff;
          text-align: center;
          -webkit-border-radius: 6px;
          border-radius: 6px;
          background-clip: padding-box;
          padding: 8px !important;
          position: absolute;
          bottom: 100%;
          line-height: 20px;
          font-size: 14px;
          left: 50%;
          margin-left: -66px;
          opacity: 0;
          transition: opacity 0.3s;
          z-index: 20;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s;
          transform: translateY(10px);
          -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
          -moz-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
          -o-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
          -ms-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08); }
          @media (max-width: 767px) {
            .dashboard .content .field .subtext small {
              margin: 0px;
              left: auto;
              right: -20px; } }
          .dashboard .content .field .subtext small::after {
            content: "";
            position: absolute;
            top: 99%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #fff transparent transparent transparent; }
            @media (max-width: 767px) {
              .dashboard .content .field .subtext small::after {
                left: auto;
                right: 24px;
                margin: 0px; } }
        .dashboard .content .field .subtext span {
          position: relative;
          margin-left: 4px;
          cursor: pointer; }
          .dashboard .content .field .subtext span svg {
            width: 14px;
            fill: #9A9FA5; }
          .dashboard .content .field .subtext span:hover small {
            visibility: visible;
            opacity: 1;
            transform: translateY(0); }
      .dashboard .content .field .num {
        position: relative; }
        .dashboard .content .field .num .iconprice {
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          left: 1px;
          top: 1px;
          width: 46px;
          height: 46px;
          background: #EFEFEF;
          border-bottom-left-radius: 12px;
          border-top-left-radius: 12px;
          color: #000;
          font-style: normal;
          font-weight: 600;
          font-size: 16px; }
        .dashboard .content .field .num .form-control {
          padding-left: 60px; }
      .dashboard .content .field .form-control {
        background: #fff;
        border: 1px solid #EFEFEF; }
        .dashboard .content .field .form-control:focus {
          border: 1px solid #0075bf; }
    .dashboard .content .che-box {
      display: table;
      margin-top: 8px; }
      .dashboard .content .che-box input[type="checkbox"] + .label-text:before,
      .dashboard .content .che-box input[type="radio"] + .label-text:before {
        background: #fff;
        border: 1px solid #EFEFEF; }
      .dashboard .content .che-box input[type="checkbox"]:checked + .label-text:before,
      .dashboard .content .che-box input[type="radio"]:checked + .label-text:before {
        content: "";
        background: #0075bf url(../images/tick.svg) no-repeat center center;
        border: 1px solid #0075bf;
        background-size: 100% 100%;
        animation: effect 250ms ease-in; }
      .dashboard .content .che-box .label-text {
        font-weight: 600;
        line-height: 24px;
        color: #000; }
  .dashboard .subheader {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 550px) {
      .dashboard .subheader {
        display: block; } }
    .dashboard .subheader .it-input {
      position: relative; }
      @media (max-width: 550px) {
        .dashboard .subheader .it-input {
          margin-top: 12px; } }
      .dashboard .subheader .it-input .form-control {
        padding-left: 38px;
        background: #fff;
        border: 1px solid #0e0e0e0f; }
        .dashboard .subheader .it-input .form-control:focus {
          border: 1px solid #0075bf; }
      .dashboard .subheader .it-input svg {
        position: absolute;
        left: 8px;
        top: 12px; }
  .dashboard .lineinner {
    display: flex;
    align-items: center; }
    .dashboard .lineinner .bottom {
      margin-left: 16px;
      color: #fff !important;
      padding: 0px 12px;
      font-size: 12px;
      display: none;
      background: #D1362A; }
      .dashboard .lineinner .bottom:hover {
        background: #a52319; }
      .dashboard .lineinner .bottom svg {
        width: 16px;
        margin-right: 4px;
        fill: #fff; }
  .dashboard table {
    background: #fff;
    margin: 0px;
    margin-top: 24px; }
    .dashboard table th {
      color: #000; }
    .dashboard table td,
    .dashboard table th {
      vertical-align: middle;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .dashboard table td {
      font-weight: 500; }
    .dashboard table .subtext {
      max-width: 80%;
      white-space: initial; }
    .dashboard table tr td:first-child {
      vertical-align: top; }
    .dashboard table .photo {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 80px;
      height: 80px;
      overflow: hidden;
      z-index: 10;
      border-radius: 8px; }
      .dashboard table .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .dashboard table .photo:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    .dashboard table .title {
      color: #0075bf;
      font-size: 20px;
      font-weight: 600; }
      .dashboard table .title:hover {
        text-decoration: underline; }
    .dashboard table .bo-link {
      display: flex;
      align-items: center;
      padding: 0px !important; }
      .dashboard table .bo-link li {
        display: flex;
        align-items: center;
        list-style: none;
        margin-right: 24px; }
        .dashboard table .bo-link li:last-child {
          margin: 0px; }
        .dashboard table .bo-link li svg {
          width: 18px;
          height: 18px;
          margin-right: 4px; }
    .dashboard table .links {
      display: flex; }
    .dashboard table .delete,
    .dashboard table .show {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box;
      width: 34px;
      height: 34px;
      background: #D1362A;
      margin: 0px 2px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .dashboard table .delete:hover,
      .dashboard table .show:hover {
        background: #a52319; }
      .dashboard table .delete svg,
      .dashboard table .show svg {
        width: 18px;
        fill: #fff; }
    .dashboard table .show {
      background: #0c836d; }
      .dashboard table .show:hover {
        background: #075a4b; }
    .dashboard table .topstyle input[type="checkbox"] + .label-text:before,
    .dashboard table .topstyle input[type="radio"] + .label-text:before {
      top: 0px; }
  .dashboard .red,
  .dashboard .green {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9E8E9;
    color: #FC6F6F;
    max-width: 90px;
    min-width: 90px;
    height: 28px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    background-clip: padding-box;
    font-size: 12px;
    padding: 0px 8px; }
  .dashboard .green {
    color: #6BCF57;
    background: #E2FBE2; }
  .dashboard .nots {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px;
    background: #d1362a14;
    font-weight: 500;
    color: #D1362A;
    border: 1px solid #d1362a1a;
    margin-top: 12px; }

.overlaymenu {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #000000ba;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 1001;
  right: -100%; }
  @media (max-width: 991px) {
    .overlaymenu.active {
      right: 0px; } }

.chatall {
  padding: 24px;
  margin-top: 24px;
  background: #fff; }
  @media (max-width: 991px) {
    .chatall {
      padding: 12px !important; } }
  .chatall ::-webkit-scrollbar {
    width: 2px; }
  .chatall .backpage {
    margin-bottom: 8px; }
  .chatall .chat-text {
    padding-right: 24px;
    height: 555px;
    overflow: hidden;
    overflow-y: scroll; }
    @media (max-width: 991px) {
      .chatall .chat-text {
        padding-right: 12px; } }
    .chatall .chat-text .text-dat {
      text-align: center;
      font-size: 12px;
      line-height: 18px;
      margin-bottom: 12px; }
    .chatall .chat-text .userchat {
      display: flex;
      justify-content: flex-end;
      width: 100%;
      margin-bottom: 32px;
      position: relative; }
      .chatall .chat-text .userchat .photo {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 56px;
        height: 56px;
        overflow: hidden;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f3f3f3;
        border: 2px solid #C4D2E5; }
        .chatall .chat-text .userchat .photo img {
          width: 56px;
          height: 56px;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          background-clip: padding-box; }
      .chatall .chat-text .userchat .padcht {
        padding-left: 80px; }
        .chatall .chat-text .userchat .padcht .text {
          background: #fff;
          padding: 20px;
          border: 1px solid #C4D2E5;
          font-size: 12px;
          line-height: 18px;
          margin-right: 80px;
          -webkit-border-radius: 15px;
          border-radius: 15px;
          background-clip: padding-box; }
          @media (max-width: 991px) {
            .chatall .chat-text .userchat .padcht .text {
              margin-right: 0px;
              padding: 12px; } }
        .chatall .chat-text .userchat .padcht .time {
          display: flex;
          justify-content: flex-start; }
          .chatall .chat-text .userchat .padcht .time span {
            font-size: 10px;
            line-height: 15px;
            margin-top: 8px; }
      .chatall .chat-text .userchat.tow .photo {
        left: auto;
        right: 0px; }
      .chatall .chat-text .userchat.tow .padcht {
        padding-left: 0px;
        padding-right: 80px; }
        @media (max-width: 991px) {
          .chatall .chat-text .userchat.tow .padcht {
            padding-right: 70px; } }
        .chatall .chat-text .userchat.tow .padcht .text {
          background: #e3ebf5;
          margin-right: 0px;
          margin-left: 80px; }
          @media (max-width: 991px) {
            .chatall .chat-text .userchat.tow .padcht .text {
              margin-left: 0px; } }
        .chatall .chat-text .userchat.tow .padcht .time {
          justify-content: flex-end; }
  .chatall .formchat {
    width: 100%;
    height: 80px;
    position: relative;
    background: #fff;
    overflow: hidden;
    border: 1px solid #C4D2E5;
    line-height: 18px;
    margin-top: 16px;
    color: #B9C9DF;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background-clip: padding-box; }
    .chatall .formchat textarea {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 100%;
      width: calc(100% - 110px);
      resize: none;
      border: 0px !important;
      outline-style: none;
      padding: 20px 16px; }
    .chatall .formchat .icon-at {
      position: absolute;
      right: 16px;
      top: 0px;
      height: 100%;
      display: flex;
      align-items: center; }
      .chatall .formchat .icon-at .send {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        border: 1px solid #0075bf;
        outline-style: none;
        outline: 0px;
        cursor: pointer; }
        .chatall .formchat .icon-at .send svg {
          fill: #0075bf; }
      .chatall .formchat .icon-at .send {
        background: #0075bf;
        margin-left: 16px; }
        .chatall .formchat .icon-at .send svg {
          fill: #fff; }

.footer {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #161326;
  padding: 0px !important;
  position: relative; }
  @media (max-width: 991px) {
    .footer {
      padding: 24px 0px; } }
  .footer .container {
    z-index: 100; }
  .footer .boxfot {
    margin-top: 50px; }
    @media (max-width: 991px) {
      .footer .boxfot {
        max-width: 100%;
        flex: 100%;
        margin-top: 32px;
        text-align: center; } }
    .footer .boxfot img {
      width: 140px; }
    .footer .boxfot .text {
      font-style: normal;
      line-height: 26px;
      color: #DDDDDD;
      margin-top: 24px;
      padding-right: 10%; }
      @media (max-width: 991px) {
        .footer .boxfot .text {
          padding: 0px; } }
    .footer .boxfot .title {
      font-size: 22px;
      margin-bottom: 24px;
      font-weight: 500;
      line-height: 20px;
      text-transform: capitalize;
      color: #fff; }
    .footer .boxfot .navmenu a {
      display: inline-block;
      width: 100%;
      position: relative;
      color: #ddd;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .footer .boxfot .navmenu a svg {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        fill: #ddd;
        margin-right: 4px;
        min-width: 12px;
        max-width: 12px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .footer .boxfot .navmenu a:hover {
        color: #0075bf; }
        .footer .boxfot .navmenu a:hover svg {
          fill: #e08205; }
    .footer .boxfot .social {
      display: flex;
      margin-top: 20px; }
      .footer .boxfot .social a {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px; }
        .footer .boxfot .social a:last-child {
          margin: 0px; }
        .footer .boxfot .social a svg {
          fill: #fff;
          max-width: 20px;
          max-height: 20px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .footer .boxfot .social a.icon-facebook:hover svg {
          fill: #3b5998; }
        .footer .boxfot .social a.icon-twitter:hover svg {
          fill: #00acee; }
        .footer .boxfot .social a.icon-instagram:hover svg {
          fill: #8d5b46; }
        .footer .boxfot .social a.icon-youtube:hover svg {
          fill: #c4302b; }
        .footer .boxfot .social a.icon-rss:hover svg {
          fill: #ee802f; }
        .footer .boxfot .social a.icon-linkedin:hover svg {
          fill: #007fb1; }
        .footer .boxfot .social a.icon-gplus:hover svg {
          fill: #dd4b39; }
        .footer .boxfot .social a.icon-whatsapp:hover svg {
          fill: #189d0e; }
        .footer .boxfot .social a.icon-email:hover svg {
          fill: #dd4b39; }
        .footer .boxfot .social a.icon-print:hover svg {
          fill: #8d5b46; }
      @media (max-width: 991px) {
        .footer .boxfot .social {
          justify-content: center; }
          .footer .boxfot .social a {
            margin: 0px 8px !important; } }
  .footer .media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px; }
    .footer .media:last-child {
      margin: 0px; }
    @media (max-width: 991px) {
      .footer .media {
        justify-content: center; } }
    .footer .media svg,
    .footer .media img {
      fill: #0075bf;
      min-width: 20px;
      min-height: 20px; }
    .footer .media .contant {
      padding-left: 14px; }
      .footer .media .contant p,
      .footer .media .contant a {
        display: block;
        width: 100%;
        color: #ddd;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .footer .media .contant p {
        margin-top: 4px; }
      .footer .media .contant a:hover {
        color: #0075bf; }
  .footer .copyright {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 32px;
    background: #ffffff05;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 16px 0px; }
    .footer .copyright .container {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media (max-width: 991px) {
        .footer .copyright .container {
          display: block; } }
    .footer .copyright p {
      color: #ddd; }
    .footer .copyright .development {
      display: flex;
      align-items: center;
      color: #ddd; }
      @media (max-width: 991px) {
        .footer .copyright .development {
          justify-content: center;
          margin-top: 12px; } }
      .footer .copyright .development img {
        max-width: 110px;
        margin-left: 8px; }
  .footer .scrollToTop {
    width: 50px;
    height: 50px;
    padding: 0px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    position: fixed;
    right: 16px;
    bottom: 80px;
    display: none;
    border: 0px;
    z-index: 1000;
    background: #0075bf;
    text-align: center;
    padding-top: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 991px) {
      .footer .scrollToTop {
        display: none !important; } }
    .footer .scrollToTop:hover {
      background: #161326; }
    .footer .scrollToTop svg {
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg);
      width: 18px;
      height: 18px; }
      .footer .scrollToTop svg path {
        fill: #fff; }

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-decoration: none;
  list-style: none;
  font-size: 14px;
  line-height: 32px;
  color: #606060;
  text-transform: capitalize;
  font-family: 'Inter', sans-serif; }

::-webkit-scrollbar {
  width: 8px;
  height: 4px; }

/* Track */
::-webkit-scrollbar-track {
  background: #f3f3f3; }

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #0075bf;
  cursor: pointer; }

body {
  direction: ltr;
  text-align: left;
  background: #fff; }
  body.active {
    overflow: hidden; }

.bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  padding: 8px 20px;
  background: #0075bf;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  border: 0px;
  outline-style: none;
  outline: 0px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  text-transform: capitalize;
  -moz-transition: all 0.6s ease-in-out 0s;
  -o-transition: all 0.6s ease-in-out 0s;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s; }
  .bottom:focus {
    outline: 0px !important; }
  .bottom:hover {
    background: #161326; }

.social {
  display: flex; }
  .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px; }
    .social a:last-child {
      margin: 0px; }
    .social a svg {
      fill: #fff;
      max-width: 20px;
      max-height: 20px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .social a.icon-facebook:hover svg {
      fill: #3b5998; }
    .social a.icon-twitter:hover svg {
      fill: #00acee; }
    .social a.icon-instagram:hover svg {
      fill: #8d5b46; }
    .social a.icon-youtube:hover svg {
      fill: #c4302b; }
    .social a.icon-rss:hover svg {
      fill: #ee802f; }
    .social a.icon-linkedin:hover svg {
      fill: #007fb1; }
    .social a.icon-gplus:hover svg {
      fill: #dd4b39; }
    .social a.icon-whatsapp:hover svg {
      fill: #189d0e; }
    .social a.icon-email:hover svg {
      fill: #dd4b39; }
    .social a.icon-print:hover svg {
      fill: #8d5b46; }

.title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 130%;
  position: relative; }
  @media (max-width: 991px) {
    .title {
      font-size: 24px; } }
  .title span {
    color: #0075bf; }

.wizard {
  margin-bottom: 16px; }
  .wizard li {
    display: inline-block;
    margin-left: 16px;
    color: #000;
    line-height: 14.4px;
    font-weight: 400; }
    .wizard li a {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: #000;
      line-height: 14.4px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .wizard li a:hover {
        color: #0c836d; }
      .wizard li a svg {
        margin-right: 16px;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg); }
  @media (max-width: 991px) {
    .wizard {
      display: none; } }

.form-control {
  text-transform: none;
  box-shadow: none;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background-clip: padding-box;
  height: 48px;
  background: #F4F4F4;
  border: 1px solid transparent; }
  .form-control:focus {
    border: 1px solid #0075bf; }

textarea.form-control {
  height: 140px;
  resize: none; }

select.form-control {
  -webkit-appearance: none;
  background: #fff url(../images/arow.png) no-repeat !important;
  background-position: 98% 14px !important;
  padding-right: 24px; }

.che-box {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  margin: 0px;
  padding-left: 28px; }
  .che-box input[type="checkbox"],
  .che-box input[type="radio"] {
    position: absolute;
    right: 9000px; }
  .che-box input[type="checkbox"] + .label-text:before,
  .che-box input[type="radio"] + .label-text:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    background: #F4F4F4;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    font-style: initial; }
  .che-box input[type="radio"] + .label-text:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box; }
  .che-box input[type="checkbox"]:checked + .label-text:before,
  .che-box input[type="radio"]:checked + .label-text:before {
    content: "";
    background: #0075bf url(../images/tick.svg) no-repeat center center;
    background-size: 100% 100%;
    animation: effect 250ms ease-in; }

.w-style {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  padding-left: 40px;
  background: #fff;
  margin-top: 12px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .w-style:hover {
    box-shadow: 0px 0px 40px #00000017; }
  .w-style .label-text {
    display: flex;
    align-items: center;
    font-weight: 600; }
    .w-style .label-text .textads {
      margin-left: 12px; }
      @media (max-width: 667px) {
        .w-style .label-text .textads {
          display: none; } }
    .w-style .label-text .subtext {
      position: relative;
      margin: 0px;
      margin-left: 12px;
      padding: 0px 12px;
      background: #01ab1e;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box;
      color: #fff;
      font-size: 12px; }
      @media (max-width: 667px) {
        .w-style .label-text .subtext {
          display: none; } }
      .w-style .label-text .subtext small {
        width: 112px;
        background: #000;
        margin-left: -56px;
        margin-bottom: 4px; }
        .w-style .label-text .subtext small::after {
          border-color: #000 transparent transparent transparent; }
      .w-style .label-text .subtext:hover small {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); }
  .w-style input[type="checkbox"] + .label-text:before,
  .w-style input[type="radio"] + .label-text:before {
    left: 12px;
    top: 17px; }

.titletext {
  margin: 24px 0px; }
  .titletext .title {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding-left: 24px; }
    .titletext .title::before {
      content: "";
      position: absolute;
      left: 0px;
      width: 20px;
      height: 20px;
      background: #ffc107;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      background-clip: padding-box; }
  .titletext p {
    margin-top: 4px; }

.link {
  display: flex;
  align-items: center;
  position: relative;
  color: #000;
  font-weight: 400;
  padding-right: 12px;
  margin-right: 8px;
  transition: 0.2s ease;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .link::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    left: calc(85% + 6px);
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
  .link::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    left: 85%; }
  .link:hover {
    color: #0075bf; }
    .link:hover::after {
      width: 20px;
      background: #0075bf; }
    .link:hover::before {
      left: calc(85% + 10px);
      border-color: #0075bf; }

.minheader {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .minheader .link {
    color: #0075bf; }
  .minheader p {
    margin-left: 24px;
    font-size: 18px;
    color: #161326;
    font-weight: 600; }
    .minheader p span {
      margin-left: 4px;
      color: #0075bf; }

.alert {
  display: flex;
  align-items: center;
  border: 0px;
  margin: 0px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  height: 60px;
  color: #fff; }
  .alert a {
    text-decoration: underline;
    color: #fff;
    font-weight: 400; }
    .alert a:hover {
      text-decoration: none; }
  .alert .contant {
    margin: 0px !important;
    margin-right: 12px !important; }
  .alert p {
    margin: 0px !important;
    color: #fff; }
  .alert.alert-success {
    background: linear-gradient(303.91deg, #1F7A66 7.57%, #60B3A7 94.39%); }
  .alert.alert-danger {
    background: linear-gradient(303.91deg, #C24848 7.57%, #D34A4A 94.39%); }

.map-back {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  height: 192px;
  padding: 0px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  @media (max-width: 991px) {
    .map-back {
      padding: 24px 0px; } }
  .map-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1613266b;
    z-index: 2; }
  .map-back img {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
  .map-back .container {
    z-index: 2; }
  .map-back .title {
    color: #fff;
    text-align: center; }
    @media (max-width: 991px) {
      .map-back .title {
        font-size: 28px; } }
  .map-back .maplink {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .map-back .maplink {
        display: none; } }
    .map-back .maplink li {
      display: inline-block;
      color: #e08205;
      margin-left: 8px;
      font-weight: 600; }
      .map-back .maplink li:last-child {
        margin-right: 0px; }
        .map-back .maplink li:last-child a {
          padding-left: 0px; }
      .map-back .maplink li a {
        color: #fff;
        position: relative;
        padding-left: 16px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .map-back .maplink li a:hover {
          color: #e08205; }
        .map-back .maplink li a:before {
          position: absolute;
          top: 0px;
          left: 2px;
          content: "/";
          display: inline-block;
          color: #fff; }

.pagination {
  width: 100%;
  margin-top: 24px;
  justify-content: center; }
  .pagination li {
    display: inline-block;
    margin: 0px 8px; }
    .pagination li a,
    .pagination li span {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #000;
      -webkit-border-radius: 16px !important;
      border-radius: 16px !important;
      background-clip: padding-box;
      width: 48px;
      height: 48px;
      border: 0px;
      border-radius: 16px !important;
      background: rgba(0, 117, 191, 0.1);
      font-weight: 400;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .pagination li svg {
      width: 12px;
      height: 12px; }
    .pagination li:first-child a, .pagination li:last-child a {
      border: 1px solid #0075bf; }
    .pagination li:last-child svg {
      transform: rotate(-90deg); }
    .pagination li:first-child svg {
      transform: rotate(90deg); }
  .pagination .page-link.active,
  .pagination .page-link:hover {
    background: #0075bf !important;
    color: #fff !important; }
    .pagination .page-link.active svg,
    .pagination .page-link:hover svg {
      fill: #fff; }

.ansitem {
  display: none;
  margin-top: 24px; }
  .ansitem .in-post {
    display: flex; }
    .ansitem .in-post .content-qa {
      position: relative;
      width: 100%; }
      .ansitem .in-post .content-qa textarea.form-control {
        height: 50px;
        padding-right: 82px; }
      .ansitem .in-post .content-qa .bottom {
        position: absolute;
        right: 12px;
        top: 8px;
        height: auto;
        padding: 0px 12px; }

/*# sourceMappingURL=home.css.map */
