:root {
  --black-bg: #071e22;
  --green: #0d3b3f;
  --deep-green: #09272a;
  --white: #fff;
  --text-light: #f5faf8;
  --golden: #3db4ef;
}

.drop_select .dropdown-toggle {
  background-color: #fff0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: 1px solid #fff;
  padding: 14px 22px;
  border-radius: 6px;
  transition: all 250ms ease-in-out;
}

.drop_select .dropdown-toggle.show {
  background-color: #fff;
  color: #1e2f97;
}

.drop_select .dropdown-toggle::after {
  border: none;
  content: "\ea4d";
  font-family: remixicon !important;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  margin-left: 8px;
}

.drop_select .dropdown-menu {
  background-color: #fff;
  transition: all 100ms ease-in-out;
}

.drop_select .dropdown-menu .dropdown-item {
  color: #242424;
  font-size: 15px;
  font-weight: 600;
}

.drop_select .dropdown-menu .dropdown-item:hover,
.drop_select .dropdown-menu .dropdown-item:focus,
.drop_select .dropdown-menu .dropdown-item.active {
  background-color: #27abed;
  color: #fff;
}

@media (max-width: 575px) {
  .storySel .drop_select {
    margin-right: 15px;
  }

  .drop_select .dropdown-toggle {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
  }

  .drop_select .dropdown-toggle::after {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 15px;
    margin-left: 5px;
  }
}

.ip_wrap {
  background-color: var(--black-bg);
  /* padding: 97px 0; */
  padding: 50px 0;
  /* padding-bottom: 96px !important; */
}

.ip_wrap .ip_sel {
  text-align: left;
  margin-bottom: 48px;
}

.ip_wrap .ip_sel .drop_select .dropdown-toggle {
  font-size: 40px;
  font-weight: 800;
  line-height: 54px;
  letter-spacing: -0.8px;
  border-bottom: solid 4px;
  padding-bottom: 8px;
}

.ip_wrap .ip_sel .drop_select .dropdown-toggle::after {
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin-left: 8px;
}

.ip_wrap .ip_ser {
  margin-bottom: 32px;
}

.ip_wrap .ip_ser p {
  color: var(--golden);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 11px;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ip_wrap .ip_ser .search_box {
  position: relative;
}

.ip_wrap .ip_ser .search_box input {
  color: var(--text-light);
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  line-height: 21.5px;
  border-radius: 4px;
  background: rgb(255 255 255 / 0.1);
  border: solid 1px #203539;
  display: block;
  width: 100%;
  padding: 11px 12px;
  padding-left: 40px;
  outline: none;
}

.ip_wrap .ip_ser .search_box input:hover {
  background: rgb(255 255 255 / 0.2);
  background-color: solid 1px #394b4e;
}

.ip_wrap .ip_ser .search_box input:focus {
  border-color: rgb(255 255 255 / 0.5);
  background: rgb(255 255 255 / 0.1);
}

.ip_wrap .ip_ser .search_box input::placeholder {
  color: var(--text-light);
  opacity: 1;
}

.ip_wrap .ip_ser .search_box i {
  font-size: 16px;
  color: var(--text-light);
  width: 16px;
  height: 16px;
  line-height: 16px;
  position: absolute;
  top: 15px;
  left: 12px;
}

.ip_wrap .ip_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ip_wrap .ip_box .box_item {
  border-radius: 8px;
  background: #0d3b3f;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 250ms ease-in-out;
  padding: 8px;
}

.ip_wrap .ip_box .box_item:hover {
  background-color: var(--deep-green);
}

.ip_wrap .ip_box .box_item img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.ip_wrap .ip_box .box_item h3 {
  color: #f5faf8;
  font-size: 24px;
  font-weight: 800;
  line-height: 38.4px;
  letter-spacing: -0.24px;
  margin: 0;
  padding: 24px;
}

.ip_wrap .ip_box .box_item p {
  color: #f5faf8;
  font-family: Lato;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 1px;
  margin: 0;
  padding: 15px 0;
}

.ip_wrap .ip_box .box_item p i {
  font-size: 20px;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

@media (max-width: 992px) {
  .ip_wrap .ip_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog_slider .bs_inner .bs_item .bs_bottom {
    padding: 10px !important;
  }
}

@media (max-width: 575px) {
  .ip_wrap .ip_box {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog_slider .bs_inner .bs_item .bs_bottom {
    padding: 24px !important;
  }
  .ip_wrap .ip_box .box_item img {
    object-fit: unset;
  }
}

.blog_slider {
  margin-bottom: 48px;
}

.blog_slider ul {
  gap: 24px;
  margin-bottom: 32px;
}

.blog_slider ul li button {
  background-color: #fff0;
  color: var(--text-light);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border: none;
}

.blog_slider ul li button.active {
  color: var(--golden);
}

.blog_slider .blog_slide {
  margin: 0 -4px;
}

.blog_slider .slick-slide {
  padding: 0 4px;
  margin-left: 4px;
}

.blog_slider .bs_inner .bs_item {
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px;
  width: 100%;
}

.blog_slider .bs_inner .bs_item:hover {
  background-color: #bee7e8;
}

.blog_slider .bs_inner .bs_item .bs_top {
  padding: 8px;
  padding-bottom: 0;
}

.blog_slider .bs_inner .bs_item .bs_top img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.blog_slider .bs_inner .bs_item .bs_top h3 {
  padding: 24px;
  color: #071e22;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -0.24px;
  margin: -8px;
  margin-top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 180px;
}

.blog_slider .bs_inner .bs_item .bs_bottom {
  padding: 24px;
  display: flex;
  justify-content: space-between;
}

.blog_slider .bs_inner .bs_item .bs_bottom span {
  color: #54618d;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  display: block;
  padding: 8px 0;
  height: 45px;
}

.blog_slider .bs_inner .bs_item .bs_bottom span:first-child {
  padding: 8px 12px;
  padding-top: 6.5px;
  border-radius: 8px;
  border: 1px solid #b9bfd5;
}

.ip_wrap .ip_ser.blogl_ser {
  margin-bottom: 24.42px;
}

.ip_wrap .two_sel {
  margin-bottom: 48px;
  display: flex;
  gap: 24px;
}

.ip_wrap .two_sel .drop_select {
  background-color: #fff0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: 1px solid #fff;
  padding: 14px 22px;
  border-radius: 6px;
  transition: all 250ms ease-in-out;
  background-image: url(..//images/mdm_banner/arrow-down-s-line.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  -webkit-appearance: none;
  appearance: none;
}

.ip_wrap .two_sel .drop_select option {
  color: #111;
  font-weight: 500;
}

.blog_list .row {
  margin: -4px;
}

.blog_list .row .col-12 {
  padding: 4px;
}

.blog_list .bl_item {
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 530px;
  width: 100%;
}

.blog_list .bl_item:hover {
  background-color: #bee7e8;
}

.blog_list .bl_item .bl_item_top {
  padding: 8px;
  padding-bottom: 0;
}

.blog_list .bl_item .bl_item_top img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.blog_list .bl_item .bl_item_top h3 {
  padding: 24px;
  color: #071e22;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -0.24px;
  margin: -8px;
  margin-top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 180px;
}

.blog_list .bl_item .bl_item_bottom {
  padding: 24px;
  display: flex;
  justify-content: space-between;
}

.blog_list .bl_item .bl_item_bottom ul {
  display: flex;
}

.blog_list .bl_item .bl_item_bottom ul li h6 {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f3f3f5;
  color: #676767;
  font-size: 17px;
  font-weight: 400;
  border-radius: 5px;
  margin-right: 10px;
}

.blog_list .bl_item .bl_item_bottom span {
  color: #54618d;
  font-family: Lato;
  font-size: 12px;
  font-weight: 600;
  line-height: 30.6px;
  display: block;
  padding: 8px 0;
}

.blog_list .bl_item .bl_item_bottom span:first-child {
  padding: 9px 12px;
  padding-top: 2.5px;
  border-radius: 8px;
  border: 1px solid #b9bfd5;
  height: 39px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 80px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80px;
}

.blog_list .bl_item .bl_item_bottom span:nth-child(2) {
  padding: 9px 12px;
  padding-top: 2.5px;
  border-radius: 8px;
  border: 1px solid #b9bfd5;
  height: 39px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 80px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80px;
}

.blog_list .bl_item .bl_item_bottom span:nth-child(3) {
  display: none;
}

.blog_list .bl_item .bl_item_bottom p {
  color: #54618d;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  display: block;
  padding: 8px 0;
  height: 45px;
}

.blog_list .bl_item .bl_item_bottom p:hover {
  color: #54618d;
}

.blog_list .bl_item .bl_item_bottom a:last-child {
  padding: 8px 12px;
  padding-top: 6.5px;
  border-radius: 8px;
  border: 1px solid #b9bfd5;
}

.blog_list .bl_item2 {
  border-radius: 8px;
  background: var(--white);
  min-height: 480px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.blog_list .bl_item2:hover {
  background-color: #bee7e8;
}

.blog_list .bl_item2 .bl_item_right {
  padding: 8px;
}

.blog_list .bl_item2 .bl_item_right img {
  width: 100%;
  height: 464px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.blog_list .bl_item2 .bl_item_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog_list .bl_item2 .bl_item_left h3 {
  padding: 24px;
  color: #071e22;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -0.24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 180px;
}

.blog_list .bl_item2 .bl_item_left .bottom_inner {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.blog_list .bl_item2 .bl_item_left .bottom_inner span {
  color: #54618d;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  display: block;
  padding: 8px 0;
  height: 45px;
}

.blog_list .bl_item2 .bl_item_left .bottom_inner span:first-child {
  padding: 8px 12px;
  padding-top: 6.5px;
  border-radius: 8px;
  border: 1px solid #b9bfd5;
}

.blog_list .bl_item .casestudies_bl_item {
  justify-content: unset;
}

.blog_list .bl_item .casestudies_bl_item span:nth-child(2) {
  border: 1px solid #b9bfd5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
  text-align: center;
  margin-left: 10px;
}

@media (max-width: 1200px) {
  .blog_list .bl_item .bl_item_bottom {
    padding: 12px;
  }
}

@media (max-width: 992px) {
  .blog_list .bl_item .bl_item_bottom {
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .blog_list .row .col-12:first-child {
  }

  .daas_transform .main_row .main_col:nth-child(6) {
    display: unset !important;
  }

  .ip_wrap .two_sel .drop_select {
    padding: 14px 14px;
    width: 50%;
  }
}

.cta_wrap {
  background-color: #1e2f97;
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}

.cta_wrap .cta_img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

.cta_wrap h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: -0.96px;
  margin: 0;
  margin-bottom: 64px;
  width: 100%;
  max-width: 485px;
}

.cta_wrap .cta_btn {
  border-radius: 4px;
  background-color: none;
  border: 2px solid #fff;
  color: var(--white);
  font-family: Lato;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  padding: 16px 40px;
  padding-bottom: 17px;
  display: inline-block;
  transition: all 250ms ease-in-out;
}

.cta_wrap .cta_btn:hover {
  background-color: #fff;
  color: #1e2f97;
}

.cta_wrap.with_det h3 {
  max-width: 100%;
  margin-bottom: 32px;
}

.cta_wrap.with_det p {
  color: #54618d;
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}

.cta_wrap.with_det ul {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.cta_wrap.with_det ul li {
  color: var(--white);
  font-family: Lato;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cta_wrap.with_det ul li i {
  color: #60935d;
  font-size: 24px;
}

@media (max-width: 768px) {
  .cta_wrap .cta_img {
    left: 45%;
  }

  .cta_wrap.with_det {
    min-height: 700px;
  }
}

@media (max-width: 575px) {
  .cta_wrap {
    min-height: 852px;
  }

  .cta_wrap .cta_img {
    height: 442px;
    left: 0;
  }

  .cta_wrap.with_det {
    min-height: 1080px;
  }
}

@media (max-width: 380px) {
  .cta_wrap .cta_img {
    left: -24%;
  }
}

.banner_wrap {
  padding-top: 40px;
  position: relative;
  background-image: var(--dark-gr);
}

.home_wrap .container {
  background-image: url(../images/home_vector.png);
}

.banner_wrap .banner_info {
  width: 100%;
  padding: 56px 0;
}

.banner_wrap .banner_info h1 {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--light-bg);
  margin: 0;
  margin-bottom: 48px;
}

.banner_wrap .banner_info h1 span {
  font-weight: 700;
  display: block;
}

.banner_wrap .banner_info .info_bottom {
  display: flex;
  align-items: center;
  gap: 32px;
}

.banner_wrap .banner_info .info_bottom a {
  display: inline-block;
  color: var(--white);
  background-color: var(--cta);
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  padding: 16px 40px;
  border-radius: 4px;
  transition: all 250ms ease-in-out;
}

.banner_wrap .banner_info .info_bottom a:hover {
  background-color: #003cff;
}

.banner_wrap .banner_info .info_bottom img {
  width: 110px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.banner_wrap .banner_img {
  height: 378px;
  margin: 0;
}

.banner_wrap.home_wrap .banner_img {
  height: 400px;
}

.banner_wrap.home_wrap .banner_info {
  padding: 80px 0;
  padding-top: 56px;
}

.banner_wrap .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.banner_wrap .row {
  margin: 0;
  align-items: flex-start;
}

.banner_wrap .row .col-12 {
  padding: 0;
}

@media (max-width: 768px) {
  .banner_wrap .banner_info {
    max-width: 100%;
  }

  .banner_wrap .banner_img img {
    object-position: center bottom;
  }

  .banner_wrap.home_wrap .banner_info {
    padding: 64px 0;
  }

  .banner_wrap.home_wrap .banner_img {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .banner_wrap {
    padding-top: 70px;
    overflow: hidden;
  }

  .banner_wrap.home_wrap .banner_info {
    padding: 64px 16px;
  }

  .banner_wrap.home_wrap .banner_img {
    margin-bottom: -20px;
  }

  .banner_wrap.home_wrap .banner_img img {
    object-position: -55px bottom;
  }

  .single_insight_box .banner_info h1 {
    font-size: 42px;
  }
}

@media (max-width: 450px) {
  .banner_wrap .container {
    padding: 0;
  }

  .banner_wrap .banner_info {
    padding: 64px 15px;
  }

  .banner_wrap .banner_img img {
    object-fit: cover;
  }

  .banner_wrap .banner_info .info_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.weoffer_wrap {
  padding: 80px 0;
  padding-bottom: 96px;
}

.weoffer_wrap .row {
  margin: -4px;
}

.weoffer_wrap .row .col-12 {
  padding: 4px;
}

.weoffer_wrap2 .row {
  margin: -8px;
  gap: 8px;
}

.weoffer_wrap2 .row .col-12 {
  padding: 8px;
  background-color: #fff;
  border-radius: 8px;
}

.our_platform {
  padding: 60px 0;
  padding-bottom: 75px;
  overflow: hidden;
  background-color: #f6f4fc;
}

.our_platform .row {
  margin: 0;
}

.our_platform .row .col-12 {
  padding: 0;
}

@media (max-width: 575px) {
  .excPlatforms .epImage {
    width: 100%;
    height: 100%;
    margin-top: 32px;
  }

  .excPlatforms .epImage img {
    width: 100%;
    height: 100%;
    transform: scale(1.08);
    padding-bottom: 65px;
    margin: 0;
    margin-top: 20px;
  }
}

.home_slick_list .slick-list {
  overflow: hidden !important;
  margin: 0 -20px;
}

.home_slick_list .slick-slide {
  margin: 0 20px;
}

.home_slick_list .slick-next,
.home_slick_list .slick-prev {
  display: block !important;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background-color: #fff0;
  border-radius: 0;
}

.home_slick_list .slick-prev {
  left: -55px;
  right: auto;
}

.home_slick_list .slick-prev::before {
  content: "\e64a";
  font-family: "themify";
  background-color: #fff0;
  border-radius: 0;
  color: #fff;
  border: none;
  font-size: 50px;
  padding: 0;
}

.home_slick_list .slick-next {
  left: auto;
  right: -55px;
}

.home_slick_list .slick-next::before {
  content: "\e649";
  font-family: "themify";
  background-color: #fff0;
  border-radius: 0;
  color: #fff;
  border: none;
  font-size: 50px;
  padding: 0;
}

.suc_story_wrap {
  padding: 60px 0;
  padding-bottom: 75px;
}

.suc_story_wrap .storySel {
  margin-bottom: 35px;
}

.suc_story_wrap .seeAll {
  display: inline-block;
  margin: 0;
  padding: 10px 0;
  padding-bottom: 0;
  margin-top: 30px;
  transition: all 250ms ease-in-out;
}

.suc_story_wrap .seeAll i {
  transition: none;
}

.suc_story_wrap .seeAll:hover {
  color: #1e2f97;
}

@media (max-width: 768px) {
  .home_slick_list .slick-list {
    margin: 0 -10px;
  }
}

@media (max-width: 575px) {
  .home_slick_list .slick-list {
    margin: 0;
  }

  .home_slick_list .slick-slide {
    padding: 0;
  }

  .home_slick_list .slick-prev {
    left: -23px;
  }

  .home_slick_list .slick-next {
    right: -24px;
    top: 49%;
  }

  .slider_button {
    display: inline-flex;
  }

  .slider_button a.tagLink {
    width: 120px !important;
  }
}

@media (max-width: 375px) {
  .slider_button a.tagLink {
    width: 112px !important;
  }
}

.about_wrap {
  padding: 80px 0;
  padding-bottom: 96px;
}

@media (max-width: 768px) {
  .testiBy {
    margin-top: 145px;
  }
}

.banner_wrap.bg-blue {
  background-image: var(--blue-gr);
}

.banner_wrap.bg-green {
  background-image: var(--green-gr);
}

.banner_wrap.inner_page_banner .row {
  margin: 0 -32px;
}

.banner_wrap.inner_page_banner .row .col-12 {
  padding: 0 32px;
}

.banner_wrap.inner_page_banner .banner_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner_wrap.inner_page_banner .banner_info ul {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}

.banner_wrap.inner_page_banner .banner_info ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  color: #f5faf8;
  border-radius: 4px;
  background: rgb(7 30 34 / 0.1);
  padding: 6px 8px;
  transition: all 250ms ease-in-out;
}

.banner_wrap.inner_page_banner .banner_info ul li:hover {
  background-color: #f5faf8;
  color: #071e22;
}

.banner_wrap.inner_page_banner .banner_info ul li::before {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #f5faf8;
  position: absolute;
  top: 10px;
  right: -15px;
  transform: rotate(25deg);
}

.banner_wrap.inner_page_banner .banner_info ul li:last-child {
  margin: 0;
}

.banner_wrap.inner_page_banner .banner_info ul li:last-child:before {
  content: none;
}

.banner_wrap.inner_page_banner .banner_info ul li a {
  display: block;
  color: inherit;
}

.banner_wrap.inner_page_banner .banner_info h1 {
  margin: 0;
  font-weight: 700;
}

.banner_wrap.inner_page_banner .banner_info p {
  color: #f5faf8;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
}

.banner_wrap.inner_page_banner .banner_info a.CTAGetYouCopy, a.pdf_link_show {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  background-color: #27abec;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 250ms ease-in-out;
}
.banner_wrap.inner_page_banner .banner_info a.CTAGetYouCopy:hover, a.pdf_link_show:hover {
  background-color: #fff;
  color: #1e2f97;
}

@media (max-width: 1200px) {
  .banner_wrap.inner_page_banner .row .col-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner_wrap.inner_page_banner .row {
    margin: 0;
  }

  .banner_wrap.inner_page_banner .row .col-12 {
    padding: 0;
  }
}

@media (max-width: 400px) {
  .banner_wrap.cloud_ser_banner .banner_img {
    height: 365px;
    margin: 0;
  }

  .banner_wrap.cloud_ser_banner .banner_img img {
    object-position: -65px bottom;
  }

  .banner_wrap.digital_workspace_banner .banner_img {
    height: 365px;
    margin: 0;
  }

  .banner_wrap.digital_workspace_banner .banner_img img {
    object-position: -70px bottom;
  }
}

.offer_wrap {
  padding: 80px 0;
  padding-bottom: 96px;
}

.offer_wrap .row {
  margin: 0 -4px;
}

.offer_wrap .row .col-12 {
  padding: 0 4px;
}

.offer_wrap .offer_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px 32px 32px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 250ms ease-in-out;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
}

.offer_wrap .offer_item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  position: relative;
}

.offer_wrap .offer_item h5 {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  margin: 0;
  position: relative;
}

.offer_wrap .offer_item:hover h5 {
  color: #fff;
}

.offer_wrap .offer_item:hover p {
  color: #fff;
}

.offer_wrap .offer_item img:hover {
  filter: sepia(1);
}

.offer_wrap .offer_item h5 i {
  margin-left: 8px;
  font-size: 16px;
}

.offer_wrap .offer_item p {
  color: #54618d;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
  position: relative;
}

.offer_wrap .offer_item:hover {
  background-color: #3db4ef;
}

.offer_wrap .offer_item.bg-green {
  background-color: #edf8ed;
}

.offer_wrap .offer_item.bg-green h5 {
  color: #60935d;
}

.offer_wrap .offer_item.bg-green:hover {
  background-color: #bee7e8;
}

@media (max-width: 768px) {
  .offer_wrap .row {
    margin: 0;
    /*gap: 8px;*/
  }

  .offer_wrap .row .col-12 {
    padding: 0;
  }
}

.unlocking_wrap {
  padding: 80px 0;
  padding-bottom: 160px;
}

@media (max-width: 992px) {
  .unlocking_wrap {
    padding: 80px 0;
    padding-bottom: 96px;
  }

  .Unlocking_img {
    height: 464px;
  }
}

.banner_wrap.inner_page_banner.mdm_banner .row {
  align-items: flex-start;
}

.banner_wrap.inner_page_banner.mdm_banner .banner_info {
  padding: 32px 0;
}

.banner_wrap.mdm_banner .banner_img {
  height: 378px;
  margin-right: -100.95px;
}

@media (max-width: 768px) {
  .banner_wrap.inner_page_banner.mdm_banner .banner_info {
    padding: 32px 15px;
    padding-bottom: 64px;
  }

  .banner_wrap.mdm_banner .banner_img {
    height: 346px;
  }
}

.transform_box_wrap {
  padding: 60px 0;
  padding-bottom: 45px;
}

.transform_box_wrap .main_row {
  margin: -4px;
}

.transform_box_wrap .main_row .main_col {
  padding: 4px;
}

.transform_box_wrap .trans_big_box {
  border-radius: 8px;
  background-color: var(--light-bg);
  overflow: hidden;
  padding: 32px 64px;
  transition: all 250ms ease-in-out;
  position: relative;
}

.transform_box_wrap .trans_big_box figure {
  display: inline-block;
  width: 255px;
  height: 100%;
  margin: -32px 0;
  margin-top: -17px;
  position: relative;
}

.transform_box_wrap .trans_big_box figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.transform_box_wrap .trans_big_box .item_con {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 260px);
  padding: 32px 64px;
  padding-right: 0;
  position: relative;
}

.transform_box_wrap .trans_big_box.right_box .item_con {
  padding-left: 0;
  padding-right: 64px;
}

.transform_box_wrap .trans_big_box .item_con h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
  margin: 0;
  margin-bottom: 16px;
}

.transform_box_wrap .trans_big_box .item_con p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
}

.transform_box_wrap .trans_small_box {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
  overflow: hidden;
  padding: 32px;
  min-height: 380px;
  position: relative;
  transition: 0.3s;
  border: 3px solid var(--white);
}

.transform_box_wrap .trans_small_box img {
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: center;
  margin-top: -7px;
}

.transform_box_wrap .trans_small_box .transform_box_wrap .trans_small_box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 24px;
  position: relative;
}

.transform_box_wrap .trans_small_box h4 {
  color: #071e22;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.22px;
  margin: 0;
  margin-bottom: 16px;
  position: relative;
  min-height: 55px;
}

.transform_box_wrap .trans_small_box h4 span {
  font-family: "Poppins", sans-serif;
}

.transform_box_wrap .trans_small_box p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 260px;
}

.choose_wrap .trans_small_box p {
  margin-top: -10px;
}

.transform_box_wrap .trans_small_box a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #1e2f97;
  position: relative;
  width: fit-content;
}

.transform_box_wrap .trans_small_box a::before {
  content: "";
  background-color: #1e2f97;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 400ms ease-in-out;
}

.transform_box_wrap .trans_small_box:hover {
  border: 3px solid #3db4ef;
}

.transform_box_wrap .trans_small_box a:hover::before {
  width: 100%;
}

.transform_box_wrap .trans_small_box a i {
  line-height: unset;
  padding-left: 5px;
  font-weight: 600;
  font-size: 14px;
}

.transform_box_wrap .trans_small_box.yellow_box {
  background-color: #3db4ef;
}

.transform_box_wrap .trans_small_box.yellow_box img {
  filter: invert(1);
}

.transform_box_wrap .trans_small_box.yellow_box h4,
.transform_box_wrap .trans_small_box.yellow_box p {
  color: #fff;
}

.ins_sub::before {
  background: unset !important;
}

.ins_sub:hover h4 {
  color: #071e22 !important;
}

.ins_sub:hover p {
  color: #071e22 !important;
}

.ins_small_box:hover {
  background: unset !important;
}

.ins_small_box:hover img {
  filter: unset !important;
}

.ins_small_box:hover h4 {
  color: #071e22 !important;
}

.ins_small_box:hover p {
  color: #54618d !important;
}

.ins_small_color {
  background-color: #3db4ef !important;
}

.ins_small_color:hover img {
  filter: unset !important;
}

.ins_small_color:hover h4 {
  color: #071e22 !important;
}

.ins_small_color:hover p {
  color: #071e22 !important;
}

.ins_small_color p {
  color: #071e22 !important;
}

@media (max-width: 992px) {
  .transform_box_wrap .main_row .main_col:nth-child(6) {
    display: none;
  }
}

@media (max-width: 575px) {
  /* .transform_box_wrap .main_row .main_col {
        width
    } */

  .transform_box_wrap .trans_big_box {
    display: grid;
    gap: 32px;
    padding: 32px;
    padding-bottom: 0;
  }

  .transform_box_wrap .trans_big_box figure {
    order: 2;
    margin: 0;
  }

  .transform_box_wrap .trans_big_box .item_con,
  .transform_box_wrap .trans_big_box.right_box .item_con {
    width: 100%;
    padding: 32px 0;
  }
}

.number_count_wrap {
  position: relative;
  padding: 60px 0;
  padding-bottom: 75px;
  background-color: #fff;
}

.number_count_wrap .row {
  margin: -4px;
}

.number_count_wrap .row .col-12 {
  padding: 4px;
}

.number_count_wrap .count_item {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 15px rgb(0 0 0 / 0.15);
  height: 100%;
  transition: all 300ms ease-in-out;
}

.number_count_wrap .count_item h4 {
  color: #1e2f97;
  font-size: 32px;
  font-weight: 700;
  line-height: 43.2px;
  letter-spacing: -0.96px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  transition: all 300ms ease-in-out;
}

.number_count_wrap .count_item p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  margin: 0;
  transition: all 300ms ease-in-out;
}

.number_count_wrap .count_item:hover {
  background-color: #3db4ef;
}

.number_count_wrap .count_item:hover h4,
.number_count_wrap .count_item:hover p {
  color: #fff;
}

@media (max-width: 992px) {
  .transform_box_wrap.daas_transform .main_row .main_col:nth-child(4) {
    display: none;
  }
}

.right_pr_wrap {
  position: relative;
  padding: 45px 0;
  padding-bottom: 75px;
  background-color: #f6f4fc;
}

.right_pr_wrap .row {
  margin: -4px;
}

.right_pr_wrap .row .col-12 {
  padding: 4px;
}

.right_pr_wrap figure {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 350px;
}

.right_pr_wrap .pr_desc {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.right_pr_wrap .pr_desc h5 {
  color: #071e22;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  margin: 0;
}

.right_pr_wrap .pr_desc p {
  color: #54618d;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .right_pr_wrap .pr_desc {
    height: 460px;
  }
}

@media (max-width: 575px) {
  .right_pr_wrap .pr_desc {
    height: auto;
    padding: 32px 16px;
  }
}

@media (max-width: 1200px) {
  .sase_transform .trans_small_box {
    min-height: 460px;
  }
}

@media (max-width: 992px) {
  .transform_box_wrap.sase_transform .main_row .main_col:nth-child(3) {
    display: none;
  }
}

.expert_wrap {
  position: relative;
  padding: 80px 0;
  padding-bottom: 96px;
  background-image: var(--light-blue-gr);
}

.expert_wrap .row {
  margin: 0;
}

.expert_wrap .row .col-12 {
  padding: 0;
}

.expert_wrap figure {
  margin: -96px 0;
  margin-top: -60px;
  margin-left: auto;
  margin-right: 0;
  width: 525px;
  height: 374px;
}

.expert_wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.expert_wrap .expert_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.expert_wrap .expert_item h3 {
  color: #071e22;
  font-size: 32px;
  font-weight: 700;
  line-height: 43.2px;
  letter-spacing: -0.96px;
  margin: 0;
}

.expert_wrap .expert_item a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  border-radius: 4px;
  background: #1e2f97;
  overflow: hidden;
  padding: 14px 39px;
  padding-bottom: 18px;
  transition: all 250ms ease-in-out;
}

.expert_wrap .expert_item a:hover {
  background-color: #fff;
  color: #111;
}

@media (max-width: 768px) {
  .expert_wrap .expert_item {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 595px;
    margin: 0 auto;
  }

  .expert_wrap figure {
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: -96px;
  }
}

@media (max-width: 575px) {
  .expert_wrap .container {
    padding: 0;
  }

  .expert_wrap .expert_item {
    padding: 0 16px;
  }

  .expert_wrap figure {
    margin: 64px auto;
    margin-bottom: -96px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .expert_wrap figure img {
    object-fit: cover;
    object-position: center bottom;
  }
}

.package_wrap {
  position: relative;
  padding: 80px 0;
  padding-bottom: 96px;
}

.package_wrap .row {
  margin: 0 -4px;
  align-items: center;
}

.package_wrap .row .col-12 {
  padding: 0 4px;
}

.package_wrap .package_info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.package_wrap .package_left {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 380px;
}

.package_wrap .package_info p {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 35.2px;
  margin: 0;
  padding: 0;
  position: relative;
}

.package_wrap .package_info a {
  color: #1e2f97;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  padding: 16px;
  padding-left: 0;
  position: relative;
  transition: all 250ms ease-in-out;
  width: fit-content;
}

.package_wrap .package_info a::before {
  content: "";
  background-color: #1e2f97;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: 20%;
  left: 0;
  transition: all 400ms ease-in-out;
}

.package_wrap .package_info a:hover::before {
  width: 100%;
}

.package_wrap .package_info a i {
  margin-left: 5px;
  vertical-align: middle;
}

.package_wrap .package_info img {
  width: 203px;
  height: 203px;
  position: absolute;
  top: -75.5px;
  left: -101px;
}

.package_wrap figure {
  width: calc(100% - 392px);
  height: 100%;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.package_wrap_img figure {
  border: 20px solid #000;
  border-radius: 28px;
}

.package_wrap_img figure img {
  border-radius: 20px;
}

.package_wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 992px) {
  .package_wrap {
    display: none;
  }
}

.banner_wrap.opt_banner {
  background: var(--blue-gr);
}

.banner_wrap.opt_banner .row {
  align-items: flex-start;
}

.banner_wrap.opt_banner .banner_info {
  padding: 32px 0;
}

.banner_wrap.opt_banner .banner_img {
  height: 378px;
}

@media (max-width: 768px) {
  .banner_wrap.opt_banner .banner_info {
    padding: 25px 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .package_wrap {
    display: unset;
  }

  .package_wrap figure {
    width: unset;
  }

  .package_wrap_img figure {
    border: 8px solid #000;
    margin-bottom: 35px;
  }
}

@media (max-width: 450px) {
  .banner_wrap.opt_banner .banner_info {
    padding: 25px 16px;
    padding-bottom: 20px;
  }

  .banner_wrap.opt_banner .banner_img {
    height: 395px;
  }
}

.sol_scheme_wrap {
  background-color: #f5faf8;
  position: relative;
  padding: 80px 0;
  padding-bottom: 96px;
}

.sol_scheme_wrap .row {
  margin: 0 -32px;
  align-items: center;
}

.sol_scheme_wrap .row .col-12 {
  padding: 0 32px;
}

.sol_scheme_wrap .scheme_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 763px;
  border-radius: 4px;
  background: rgb(255 255 255 / 0.5);
  overflow: hidden;
  margin: 0;
}

.sol_scheme_wrap .scheme_img.height746 {
  height: 746px;
}

.sol_scheme_wrap .scheme_img.height714 {
  height: 714px;
}

.sol_scheme_wrap .scheme_img.height530 {
  height: 530px;
}

.sol_scheme_wrap .scheme_img p {
  color: #54618d;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  padding: 0;
}

.sol_scheme_wrap ul {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
}

.sol_scheme_wrap ul li {
  display: block;
}

.sol_scheme_wrap ul li h5 {
  color: #071e22;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 16px;
}

.sol_scheme_wrap ul li p {
  color: #54618d;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
}

@media (max-width: 992px) {
  .sol_scheme_wrap .scheme_img,
  .sol_scheme_wrap .scheme_img.height746,
  .sol_scheme_wrap .scheme_img.height714,
  .sol_scheme_wrap .scheme_img.height530 {
    height: 464px;
  }

  .sol_scheme_wrap .row {
    margin: 0;
    gap: 64px;
  }

  .sol_scheme_wrap .row .col-12 {
    padding: 0;
  }

  .sol_scheme_wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

@media (max-width: 575px) {
  .sol_scheme_wrap ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }
}

@media (max-width: 992px) {
  .transform_box_wrap.management_transform .main_row .main_col:nth-child(6) {
    display: block;
  }

  .transform_box_wrap.management_transform .main_row .main_col:nth-child(9) {
    display: none;
  }
}

.package_wrap.optimization_package {
  padding: 0;
  padding-bottom: 96px;
  margin-top: 30px;
}

.exp_wrap {
  position: relative;
  padding: 80px 0;
  padding-bottom: 96px;
  background-color: #f5faf8;
}

.exp_wrap .bg_img {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 392px;
  height: 392px;
}

.exp_wrap .container {
  position: relative;
}

.exp_wrap .main_row {
  margin: -4px;
  margin-bottom: 65px;
}

.exp_wrap .main_row .main_col {
  padding: 4px;
}

.exp_wrap .exp_time {
  border-radius: 4px;
  background: #3db4ef;
  color: #071e22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  padding: 5px 12px;
  height: 32px;
}

.exp_wrap .exp_time.bg_blue {
  background-color: #4281a4;
  color: #f5faf8;
}

.exp_wrap .exp_time.bg_green {
  background-color: #075079;
  color: #f5faf8;
}

.exp_wrap .exp_time p {
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  display: block;
  padding: 0;
  margin: 0;
}

.exp_wrap .exp_time p span {
  font-family: "Poppins", sans-serif;
  display: unset;
}

.exp_wrap .exp_time span {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  display: block;
}

.exp_wrap .exp_box {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 10px 0 rgb(34 43 68 / 0.05);
  padding: 20px 24px;
  display: inline-block;
  align-items: flex-start;
  gap: 32px;
  min-height: 300px;
  width: 100%;
}

.exp_wrap .exp_box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.5);
}

.exp_wrap .exp_box .box_con {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 5px;
}

.exp_wrap .exp_box h5 {
  color: #071e22;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  min-width: 185px;
  min-height: 60px;
}

.exp_wrap .exp_box ul {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 18px;
}

.exp_wrap .exp_box ul li {
  color: #54618d;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  list-style: disc;
}

.exp_wrap .exp_box ul li span {
  font-family: "Poppins", sans-serif;
}

.exp_wrap .first_exp {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 8px;
}

.exp_wrap .main_row .main_col:nth-child(3) {
  display: none;
}

@media (max-width: 992px) {
  .exp_wrap .main_row {
    margin: 0;
    gap: 8px;
  }

  .exp_wrap .main_row .main_col {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .exp_wrap .first_exp {
    display: grid;
  }

  .exp_wrap .bg_img {
    display: none;
  }
}

.purple_gr_bg {
  background: var(--purple-gr) !important;
}

@media (max-width: 992px) {
  .transform_box_wrap.insurance_transform .main_row .main_col:nth-child(6),
  .transform_box_wrap.retail_transform .main_row .main_col:nth-child(6),
  .transform_box_wrap.manufacturing_transform .main_row .main_col:nth-child(6) {
    display: block;
  }
}

.csp_wrap {
  position: relative;
  padding: 97px 0;
  background-color: #071e22;
}

.csp_wrap .back_to_list {
  text-align: left;
  margin-bottom: 8px;
}

.csp_wrap .back_to_list a {
  display: inline-block;
  padding: 14px 0;
  background-color: #fff0;
  color: #f5faf8;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: 1px;
}

.csp_wrap .back_to_list a i {
  vertical-align: top;
  margin-right: 8px;
  transition: none;
}

.csp_wrap .back_to_list a:hover {
  color: #3db4ef;
}

.csp_wrap .csp_inner {
  position: relative;
}

.csp_wrap .csp_inner .csp_post {
  width: 100%;
  max-width: 777px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.csp_wrap .csp_inner .csp_post h1 {
  color: #f5faf8;
  font-size: 32px;
  font-weight: 800;
  line-height: 43.2px;
  letter-spacing: -0.96px;
  margin: 0;
  margin-bottom: 36px;
}

.csp_wrap .csp_inner .csp_post img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin-top: 30px;
}

.csp_wrap .csp_inner .post_box {
  padding: 64px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
}

.csp_wrap .csp_inner .post_box iframe {
  width: 100%;
  border-radius: 5px;
  height: 250px;
}

.csp_wrap .csp_inner .post_box h1 {
  color: #071e22;
}

.csp_wrap .csp_inner .post_box h3 {
  color: #071e22;
  font-size: 24px;
  font-weight: 800;
  line-height: 33.6px;
  margin: 0;
}

.csp_wrap .csp_inner .post_box h5 {
  color: #071e22;
}

.csp_wrap .csp_inner .post_box p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
}

.csp_wrap .csp_inner .post_box p a {
  color: #1e2f97 !important;
}

.csp_wrap .csp_inner .post_box ul li a {
  color: #1e2f97 !important;
}

.csp_wrap .csp_inner .post_box ol li {
  color: #242424;
  font-size: 17px;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  list-style: decimal;
}

.boder-left-para {
  color: #242424;
  font-size: 17px;
  font-weight: 700;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
}

.csp_wrap .csp_inner .post_box ul li {
  margin-left: 25px;
}

.csp_wrap .csp_inner .post_box ul li {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  list-style: disc;
  margin-bottom: 15px;
}

.csp_wrap .csp_inner .post_box .counter_box {
  padding-inline-start: 0;
  margin: 0;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.csp_wrap .csp_inner .post_box .counter_box li {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  list-style-type: disc;
}

.csp_wrap .csp_inner .post_box .counter_box li h4 {
  color: #1e2f97;
  font-size: 36px;
  font-weight: 400;
  line-height: 50.4px;
  letter-spacing: -1.08px;
  margin: 0;
}

.post_box h4 {
  color: #1e2f97;
  text-align: center;
}

.post_box h2 {
  color: #1e2f97 !important;
  text-align: left;
  font-size: 28px;
  line-height: 35.2px !important;
}

.csp_wrap .csp_inner .post_box .counter_box li span {
  color: #54618d;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.csp_wrap .csp_inner .csp_action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
}

.csp_wrap .csp_inner .csp_action button {
  display: inline-block;
  padding: 14px 0;
  background-color: #fff0;
  color: #f5faf8;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: 1px;
  border: none;
}

.csp_wrap .csp_inner .csp_action button i {
  vertical-align: middle;
  margin-right: 8px;
  transition: none;
}

.csp_wrap .csp_inner .csp_action button.btn_next i {
  margin-right: 0;
  margin-left: 8px;
}

.csp_wrap .csp_inner .csp_action button:hover {
  color: #3db4ef;
}

.vc_column-inner {
  width: 550px;
}

.csp_wrap .csp_inner .post_box .counter_box .improving_text li {
  padding-bottom: 8px;
  gap: unset;
}

.csp_wrap .csp_inner .post_box.CSP_CTA {
  padding: 16px;
  background-color: #180033;
  color: #fff;
  display: block;
}
.csp_wrap .csp_inner .post_box.CSP_CTA::after {
  display: block;
  clear: both;
  height: 1px;
  overflow: hidden;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTAText, .csp_wrap .csp_inner .post_box.CSP_CTA .CTAText h3, .csp_wrap .csp_inner .post_box.CSP_CTA .CTAText p {
  color: #fff;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTAText h3, .csp_wrap .csp_inner .post_box.CSP_CTA .CTAText p {
  margin: 0 0 6px 0;
  padding: 0;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTAText p {
  font-size: 14px;
  line-height: 125%;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTAText p:last-child {
  margin: 0;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTAText {
  width: 70%;
  display: block;
  float: left;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTA {
  width: 30%;
  float: left;
  text-align: right;
  padding: 20px 0 0 0;
}
.csp_wrap .csp_inner .post_box.CSP_CTA .CTA a {
  background-color: #fff;
  border-radius: 6px;
  color: #180033;
  padding: 8px 12px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 575px) {
  .csp_wrap .csp_inner .post_box.CSP_CTA .CTAText, .csp_wrap .csp_inner .post_box.CSP_CTA .CTA {
    width: 100%;
    text-align: center;
  }
}
.ts-row {
  display: inline-flex;
  margin-bottom: 15px;
}

.ts-row .col-3 img {
  height: 100px !important;
}

.ts-row .col-9 {
  margin-top: 45px;
}

.ideal_table {
  border: 2px solid #000;
}

.ideal_table tbody th {
  border: 2px solid #000;
  text-align: left;
  padding: 8px;
}

.ideal_table tbody td {
  border: 2px solid #000;
  text-align: left;
  padding: 8px;
}

.desktop_big_img {
  height: unset !important;
}

.post_button_box {
  margin-bottom: 20px;
}

.post_button_box .book_btn {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  color: #1e2f97;
  position: relative;
  width: fit-content;
  float: right;
  margin-top: 13px;
}

.post_button_box .book_btn:hover::before {
  width: 100%;
}

.post_button_box .book_btn::before {
  content: "";
  background-color: #1e2f97;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 400ms ease-in-out;
}

.post_button_box .book_btn i {
  line-height: unset;
  padding-left: 5px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .csp_wrap .csp_inner .csp_action {
    position: relative;
    width: 100%;
    max-width: 777px;
    height: 45px;
    margin: 0 auto;
    margin-top: 32px;
    transform: none;
    top: auto;
    left: auto;
  }
}

@media (max-width: 750px) {
  .csp_wrap .csp_inner .post_box .counter_box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .csp_wrap .csp_inner .post_box {
    padding: 64px 32px;
  }

  .csp_wrap .csp_inner .post_box .counter_box {
    grid-template-columns: repeat(1, 1fr);
  }

  .post_button_box .book_btn {
    float: unset;
  }
}

.awardsList::before,
.marq_slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(to left, #fff0, #f5faf8);
  width: 200px;
  height: 100%;
}

.awardsList::after,
.marq_slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(to right, #fff0, #f5faf8);
  width: 200px;
  height: 100%;
}

.marq_slider2::before {
  background: linear-gradient(to left, #fff0, #f3f3f5);
}

.marq_slider2::after {
  background: linear-gradient(to right, #fff0, #f3f3f5);
}

.banner_wrap.opt_banner.platform_page_banner {
  background: none;
  background-color: #404f80;
}

@media (max-width: 575px) {
  .marq_slider2::before,
  .marq_slider2::after {
    content: none;
  }
}

.empower_wrap {
  padding: 80px 0;
  padding-bottom: 96px;
  position: relative;
  background-color: var(--white);
}

.empower_wrap .row {
  margin: 0;
  align-items: center;
  margin-top: 48px;
}

.empower_wrap .row:first-child {
  margin: 0;
}

.empower_wrap .row .col-12 {
  padding: 0;
}

.empower_wrap .emp_prod_img {
  background-color: #f5faf8;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.empower_wrap .emp_prod_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.empower_wrap .emp_prod_img p {
  color: #54618d;
  font-family: Lato;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  padding: 0;
}

.empower_wrap .emp_content {
  padding: 20px 0;
}

.empower_wrap .emp_content h5 {
  color: #071e22;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 16px;
}

.empower_wrap .emp_content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
}

.empower_wrap .row .col-12:first-child .emp_content {
  padding: 20px 25px 0 0;
}

@media (max-width: 1200px) {
  .empower_wrap .emp_content {
    margin-left: unset;
  }
}

@media (max-width: 768px) {
  .empower_wrap .emp_content {
    padding: 0;
  }

  .empower_wrap .row .col-12:first-child .emp_content {
    padding: 0;
  }

  .empower_wrap .emp_prod_img {
    margin-bottom: 16px;
  }

  .empower_wrap .row:nth-child(odd) .col-12:first-child {
    order: 2;
  }
}

.transform_box_wrap.platform_transform {
  background-color: #f5faf8;
}

.transform_box_wrap.platform_transform .trans_big_box {
  background-color: #fff0;
}

@media (max-width: 768px) {
  .transform_box_wrap.platform_transform .main_row .main_col:nth-child(3) {
    display: none;
  }
}

.platform_unlocking {
  background-color: var(--white);
}

.platform_unlocking .Unlocking_img {
  background-color: #f5faf8;
}

@media (max-width: 992px) {
  .transform_box_wrap.platform_transform.platform_page2
    .main_row
    .main_col:nth-child(3),
  .transform_box_wrap.platform_transform.platform_page2
    .main_row
    .main_col:nth-child(6) {
    display: block;
  }
}

.about_wrap {
  position: relative;
  padding: 113px 0;
  padding-bottom: 128px;
  background-color: var(--white);
}

.about_wrap h2 {
  color: #071e22;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -0.8px;
  margin: 0;
  margin-bottom: 32px;
  position: sticky;
  top: 113px;
}

.about_wrap .row {
  margin: 0 -42px;
}

.about_wrap .row .col-12 {
  padding: 0 42px;
}

.about_wrap .about_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about_wrap .about_inner .about_box {
  background-color: #f5faf8;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  opacity: 0.5;
}

.about_wrap .about_inner .about_box.active {
  opacity: 1;
}

.about_wrap .about_inner .about_box figure {
  background-color: #3db4ef;
  display: inline-block;
  vertical-align: middle;
  width: 165px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}

.about_wrap .about_inner .about_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about_wrap .about_inner .about_box .title_con {
  display: inline-block;
  vertical-align: middle;
  padding-left: 32px;
}

.about_wrap .about_inner .about_box .title_con h4 {
  color: #071e22;
  font-size: 32px;
  font-weight: 700;
  line-height: 43.2px;
  letter-spacing: -0.96px;
  margin: 0;
  margin-bottom: 16px;
  width: 100%;
  max-width: 250px;
}

.about_wrap .about_inner .about_box .title_con h5 {
  color: #827191;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  margin: 0;
}

.about_wrap .about_inner .about_box p {
  color: #54618d;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
}

.about_wrap .nav {
  position: sticky;
  top: 199px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.about_wrap .nav li {
  display: block;
}

.about_wrap .nav li a {
  display: block;
  background-color: var(--white);
  color: #54618d;
  font-family: Lato;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
  padding-left: 32px;
  width: 100%;
  text-align: left;
  transition: all 250ms ease-in-out;
}

.about_wrap .nav li a::before {
  content: "";
  background-color: #f5faf8;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 0;
  transition: all 250ms ease-in-out;
}

.about_wrap .nav li a:hover {
  color: var(--cta);
}

.about_wrap .nav li a.active {
  color: var(--cta);
}

.about_wrap .nav li a.active::before {
  background-color: #3db4ef;
}

@media (max-width: 992px) {
  .about_wrap .row {
    margin: 0 -16px;
  }

  .about_wrap .row .col-12 {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .about_wrap .row {
    margin: 0;
  }

  .about_wrap .row .col-12 {
    padding: 0;
  }

  .about_wrap .row .col-12:first-child {
    display: none;
  }

  .about_wrap h2 {
    position: relative;
    top: auto;
  }

  .about_wrap .about_inner .about_box {
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .about_wrap .about_inner .about_box {
    padding: 24px;
  }

  .about_wrap h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .about_wrap .about_inner .about_box figure {
    width: 125px;
    height: 120px;
  }

  .about_wrap .about_inner .about_box .title_con {
    display: block;
    width: 100%;
    padding: 0;
    padding-top: 24px;
  }

  .about_wrap .about_inner .about_box .title_con h4 {
    font-size: 28px;
    line-height: 36.2px;
    max-width: 100%;
  }
}

.bg_grey {
  background-color: #f5faf8 !important;
}

.use_case {
  padding: unset;
}

.use_case_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 48px 0;
  width: 357px;
}

.use_case_item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  position: relative;
}

.use_case_item h5 {
  color: var(--black-bg);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  position: relative;
}

.package_small {
  color: #4281a4 !important;
}

.daas_elevate_box .deve_small_box h4 {
  min-height: 55px !important;
}

.daas_elevate_box .deve_small_box {
  min-height: 325px !important;
}

.enterprise_bcta_img {
  bottom: -57% !important;
  width: 416px !important;
}

.use_case_item p {
  color: #54618d;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  margin: 0;
  padding: 0;
  position: relative;
}

.enterprise_bcta {
  background-image: unset !important;
}

.enterprise_bcta_item {
  border-bottom: 7px solid #fff0;
  border-image: linear-gradient(45deg, #48b1e1 0%, #89d5f5 65%);
  height: 300px;
  border-image-slice: 1;
  width: 100%;
}

.enterprise_bcta .bcta_inner .bcta_info h3 {
  color: #071e22 !important;
}

.enterprise_bcta .bcta_inner_box22 {
  width: 310px;
  height: 310px;
  right: 10%;
  top: -9%;
}

.enterprise_bcta .bcta_inner .bcta_info a:hover {
  background-color: #27abed !important;
  color: #fff !important;
}

@media (max-width: 1400px) {
  .use_case {
    padding: 0 10px;
  }

  .use_box_item .text {
    left: -16.8%;
  }
}

@media (max-width: 1200px) {
  .use_case .row .col-12 {
    padding: 18px;
    width: 50%;
  }
}

@media (max-width: 575px) {
  .use_case .row .col-12 {
    width: unset;
  }

  .use_case_item {
    width: unset !important;
  }

  .daas_transform {
    margin-bottom: 70px;
  }

  .daas_transform .main_row .main_col:nth-child(4) {
    display: unset !important;
  }

  .enterprise_bcta .container {
    height: unset;
  }

  .enterprise_bcta .bcta_inner_box22 {
    right: 16%;
    top: 44%;
  }

  .enterprise_bcta .bcta_inner_box33 {
    top: 45%;
  }

  .enterprise_bcta_item {
    height: unset;
  }

  .enterprise_bcta .bcta_inner_box {
    margin-top: 70px;
  }
}

.cs_post_list {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  gap: 10px 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cs_post_list li {
  display: inline-block;
  position: relative;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 1px;
  color: #f5faf8;
  border-radius: 32px;
  background: #4281a4;
  height: 32px;
  padding: 3px 16px;
}

.cs_post_list li a {
  color: #fff;
}

.csp_wrap .csp_inner .csp_post h1 {
  margin-bottom: 24px;
}

.csp_wrap .csp_inner .csp_post h1 b {
  color: #242424;
}

.purple_box {
  background: #1e2f97 !important;
}

.green_box {
  background: #60935d !important;
}

.sase_case_item {
  width: 255.75px;
}

.sase_bcta .enterprise_bcta_item {
  height: 350px;
}

.sase_bcta .bcta_img {
  bottom: 26px !important;
  right: 0 !important;
  width: 340px !important;
}

.sase_bcta .bcta_inner_box22 {
  right: 6% !important;
  top: 4% !important;
}

@media (max-width: 575px) {
  .sase_case_item {
    width: unset;
  }
}

.dev_sol_box {
  min-height: 360px !important;
}

.dev_sol_box p {
  min-height: unset !important;
}

.deve_item {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  box-shadow: 0 2px 15px rgb(0 0 0 / 0.15);
  height: 100%;
  transition-duration: 2s;
  width: 278.75px;
}

.deve_item img {
  width: 25px;
  height: 25px;
  filter: brightness(0.5);
}

.deve_item h5 {
  font-size: 15px;
  font-weight: 600;
}

.deve_item:hover {
  border: 2px solid #3db4ef;
}

.development_marq_slider img {
  width: 150px !important;
  height: 110px;
}

.development_case_box .use_box_item {
  min-height: 60px;
}

.development_case_box .use_box_item22 .text {
  left: -10%;
}

.development_solution_box {
  background-color: #fff;
}

.daas_banner {
  background-image: linear-gradient(95deg, #0090cf, #fff0),
    url(..//images/dass_banner/DaaS-VDI_banner2.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 1400px) {
  .deve_item {
    width: 279.75px;
  }
}

@media (max-width: 1200px) {
  .dev_sol_box {
    min-height: 330px !important;
  }
}

@media (max-width: 992px) {
  .daas_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .daas_banner {
    background-size: cover;
    padding-top: 24px;
  }

  .daas_banner .banner_info {
    padding-top: 0;
  }

  .dev_sol_box {
    min-height: unset !important;
  }

  .dev_sol_box h4 {
    min-height: unset !important;
  }
}

.deve_small_box {
  min-height: 370px !important;
}

.deve_small_box h4 {
  min-height: unset !important;
}

.dass_case .deve_item {
  width: 374.75px;
}

.deve_small_box p {
  min-height: unset !important;
}

.enterprise_case_box .row .col-12 {
  padding: 18px;
}

.enterprise_banner {
  background-image: linear-gradient(95deg, #0090cf, #fff0),
    url(..//images/dass_banner/enterprise_dass_banner.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 30%;
}

.enterprise_pr_wrap .container {
  max-width: 87%;
}

@media (max-width: 1400px) {
  .dass_case .deve_item {
    width: 374.75px;
  }
}

@media (max-width: 575px) {
  .enterprise_case_box .row .col-12 {
    left: 3%;
    position: relative;
  }

  .development_case_box .use_box_item22 .text {
    left: -17%;
  }

  .enterprise_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .enterprise_banner .banner_info {
    padding-top: 0;
  }
}

.package_dass_banner {
  background-image: linear-gradient(95deg, #0090cf, #fff0),
    url(..//images/packed_daas.png);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 34%;
}

.pack_daas_img {
  bottom: -45px !important;
}

.packaged_bcta_item {
  height: 370px;
}

.packaged_bcta_item .bcta_inner_box22 {
  width: 330px;
  height: 330px;
  right: 12%;
  top: 8%;
}

.packaged_bcta_item .bcta_inner_box33 {
  top: 3%;
}

@media (max-width: 575px) {
  .package_dass_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .package_dass_banner .banner_info {
    padding-top: 0;
  }

  .packaged_bcta_item {
    height: unset;
  }

  .packaged_bcta_item .bcta_inner_box22 {
    top: 52%;
  }

  .packaged_bcta_item .bcta_inner_box33 {
    top: unset;
  }

  .packaged_bcta_blog {
    padding-top: unset !important;
  }

  .packaged_bcta_item .bcta_inner_box {
    margin-top: 85px;
  }
}

.Optimization_box2 .trans_small_box {
  min-height: 250px;
}

.management_trans_box {
  background-color: #f6f4fc;
}

.management_banner_box img {
  margin-top: 60px;
}

.Management_Service_banner {
  background-image: linear-gradient(95deg, #046e9d, #fff0),
    url(..//images/cloud_banner/Cloud_management.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.Optimization_box2 .trans_small_box p {
  min-height: 200px;
}

.cloud_management_main .trans_small_box h4 {
  min-height: unset;
}

@media (max-width: 1200px) {
  .cloud_management_main .trans_small_box {
    min-height: 370px;
  }

  .Optimization_box .trans_small_box {
    min-height: 390px !important;
  }
}

@media (max-width: 992px) {
  .Management_Service_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .Management_Service_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .Management_Service_banner .banner_info {
    padding-top: 0;
    gap: unset !important;
  }

  .Optimization_box .main_col:nth-child(6) {
    display: unset !important;
  }

  .optimization_case_box .row .col-12 {
    left: 7%;
  }

  .management_blog_box {
    padding-top: unset !important;
    margin-top: -90px;
  }
}

@media (max-width: 440px) {
  .management_trans_box {
    margin-bottom: unset;
  }
}

.Optimization_box .trans_small_box {
  min-height: 220px;
}

.Optimization_small_box .deve_small_box {
  min-height: 360px !important;
}

.operational_banner {
  background-color: unset !important;
}

.optimization_banner_box {
  background-image: linear-gradient(95deg, #046e9d, #fff0),
    url(..//images/cloud_banner/Cloud_optimization.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.Optimization_box .trans_small_box p {
  min-height: 160px;
}

.optimization_package figure {
  border: 20px solid #000;
  border-radius: 28px;
  width: calc(100% - 430px);
  margin-right: 30px;
}

.optimization_package figure img {
  border-radius: 20px;
}

@media (max-width: 1400px) {
  .Optimization_small_box .deve_small_box {
    min-height: 360px !important;
  }

  .optimization_case_box .row {
    margin-left: 65px !important;
  }

  .optimization_case_box .row .use_box_item .line {
    margin-left: -1.9%;
  }
}

@media (max-width: 1200px) {
  .use_box_item .line {
    margin-left: -4.2% !important;
  }

  .Optimization_small_box .trans_small_box {
    min-height: 350px !important;
  }
}

@media (max-width: 992px) {
  .use_box_item .line {
    margin-left: -1% !important;
  }

  .use_box_item h5 {
    font-size: 16px !important;
  }

  .optimization_banner_box {
    background-size: cover;
  }

  .optimization_case_box .row {
    margin-left: 45px !important;
  }
}

@media (max-width: 575px) {
  .optimization_banner_box {
    background-size: cover;
    padding-top: 20px;
  }

  .optimization_banner_box .banner_info {
    padding-top: 0;
  }

  .optimization_case_box .row {
    margin-left: unset !important;
  }

  .optimization_case_box .row .use_box_item .line {
    margin-left: unset !important;
  }

  .optimization_package figure {
    width: unset;
    margin-right: unset;
    border: 7px solid #000;
    margin-bottom: 25px;
  }

  .package_wrap .package_info {
    gap: unset;
  }

  .optimization_use_case {
    margin-bottom: unset;
  }

  .optimization_right_box {
    padding-bottom: unset;
  }

  .optimization_blog_box {
    padding-top: unset !important;
  }
}

@media (max-width: 440px) {
  .use_box_item .line {
    margin-left: -1% !important;
  }
}

@media (max-width: 390px) {
  .use_box_item .line {
    margin-left: 1.5% !important;
  }
}

.migration_box .trans_small_box {
  min-height: 195px;
}

.migration_banner_box {
  background-image: linear-gradient(95deg, #046e9d, #fff0),
    url(..//images/cloud_banner/Cloud_migration.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 13%;
}

.cloud_box .blockHead p {
  padding-top: 16px;
}

.migration_box .trans_small_box p {
  min-height: 175px;
}

.cloud_bcta .enterprise_bcta_item {
  height: 350px;
}

.cloud_bcta .bcta_img {
  bottom: -72px !important;
  width: 380px !important;
}

.cloud_bcta .bcta_inner_box22 {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 1%;
}

@media (max-width: 1400px) {
  .exp_wrap .exp_box {
    min-height: 300px !important;
  }
}

@media (max-width: 1200px) {
  .migration_box .trans_small_box {
    min-height: 375px;
  }
}

@media (max-width: 575px) {
  .migration_banner_box {
    background-size: cover;
    padding-top: 20px;
    background-position: right;
  }

  .migration_banner_box .banner_info {
    padding-top: 0;
  }

  .cloud_bcta .enterprise_bcta_item {
    height: unset !important;
  }

  .cloud_bcta .bcta_inner_box22 {
    top: unset;
  }
}

.deve_small_box22 {
  min-height: 270px !important;
}

.deve_small_box22 h4 {
  min-height: unset !important;
}

.emp_prod_img img {
  width: 100%;
}

.desktop_emp_content ul li {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
  display: flex;
  align-items: baseline;
}

.desktop_emp_content ul li img {
  width: 3%;
  object-fit: contain;
  margin-right: 5px;
}

.desktop_emp_content ul li i {
  padding-right: 5px;
  font-size: 22px;
  margin-top: -3px;
}

.desktop_emp_content ul li p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 0;
}

.desktop_emp_content ul li span {
  font-weight: 700;
}

.desktop_unlocking {
  padding-bottom: 100px;
}

.daas_enterprise_schedule .sch_inner .sch_info {
  max-width: unset !important;
}

.daas_img_box {
  bottom: -55px !important;
}

.mdm_item_box p {
  min-height: unset !important;
}

.mdm_item_box .trans_small_box {
  min-height: 360px !important;
}

.mdm_solution .trans_small_box {
  height: 425px;
}

.mdm_marq_slider img {
  width: 138px !important;
  height: 70px;
}

.mdm_bcta_img {
  bottom: -160px !important;
}

@media (max-width: 575px) {
  .mdm_item_box .main_col:nth-child(6) {
    display: unset !important;
  }

  .managed_end_partner img {
    width: 39px;
  }
}

.sase_small_box .trans_small_box p {
  min-height: unset !important;
}

.sase_small_box .trans_small_box {
  min-height: 415px;
}

.sase_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm_banner/SASE.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 1200px) {
  .mdm_solution .trans_small_box {
    height: 540px;
  }

  .mdm_item_box .trans_small_box {
    min-height: 380px !important;
  }

  .sase_banner {
    background-size: cover;
  }
}

@media (max-width: 992px) {
  .sase_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .sase_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .sase_banner .banner_info {
    padding-top: 0;
  }

  .sase_small_box .main_col:nth-child(3) {
    display: unset !important;
  }
}

.number_item2 {
  margin: 0 -10px;
}

.desktop_use .deve_item h5 {
  margin: 0 -19px 0 0;
}

.desktop_management_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm_banner/Desktop_Management.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.desktop_offering_box .deve_small_box {
  min-height: 320px !important;
}

@media (max-width: 1400px) {
  .desktop_use .deve_item h5 {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .daas_transform .deve_small_box {
    min-height: 350px !important;
  }
}

@media (max-width: 575px) {
  .daas_transform .deve_small_box {
    min-height: unset !important;
  }

  .desktop_management_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .desktop_management_banner .banner_info {
    padding-top: 0;
  }
}

.bank_wrap_box {
  background-color: var(--white);
}

.bank_wrap_box .container {
  max-width: 1475px;
}

.bank_main_col .trans_small_box {
  min-height: 340px;
}

.bank_main_col .trans_small_box p {
  min-height: 170px;
}

.bank_offer h2 {
  padding-bottom: 40px;
}

.bank_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Banking-and_Finance.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.bank_banner .row .col-12 {
  padding: unset !important;
}

@media (max-width: 1200px) {
  .bank_main_col .trans_small_box {
    min-height: 370px;
  }
}

@media (max-width: 992px) {
  .bank_banner .container .row {
    margin: 0 0;
  }
}

@media (max-width: 575px) {
  .bank_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .bank_banner .banner_info {
    padding-top: 0;
  }
}

.healthcare_main .trans_small_box {
  min-height: 200px;
}

.healthcare_main .trans_small_box p {
  min-height: unset;
}

.industries_wrap {
  background-color: unset;
}

.healthcare_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Healthcare_Pharmaceuticals.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1400px) {
  .healthcare_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .healthcare_banner {
    background-size: cover;
    padding-top: 20px;
    background-position: right;
  }

  .healthcare_banner .banner_info {
    padding-top: 0;
  }
}

.it_trans_box .trans_small_box {
  min-height: 200px;
}

.it_trans_box .trans_small_box p {
  min-height: 100px;
}

.it_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/IT_ITES-1.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.it_wrap_item {
  padding: 45px 0;
}

@media (max-width: 992px) {
  .it_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .it_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .it_banner .banner_info {
    padding-top: 0;
  }
}

.insurance_banner_box {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Insurance-1.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 575px) {
  .insurance_banner_box {
    background-size: cover;
    padding-top: 20px;
  }

  .insurance_banner_box .banner_info {
    gap: 0 !important;
    padding: 0 15px;
  }

  .insurance_banner_box .banner_info h1 {
    margin-bottom: -35px !important;
  }
}

.insight {
  height: 500px;
}

.insight::after {
  background-image: linear-gradient(95deg, #071e65, #fff0);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.insight img {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 30%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.insight .container {
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .insight .container .row {
    margin: -68px 14px;
  }

  .resources_banner {
    min-width: unset !important;
    gap: 0px !important;
    padding: 0px !important;
  }
}

.partners_banner_box {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/partner_banner_img/p_banner.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 992px) {
  .partners_banner_box {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .partners_banner_box {
    background-size: cover;
    padding-top: 20px;
    height: unset;
  }

  .partners_banner_box .banner_info {
    padding-top: 0;
  }

  .partner_wrap .main_col:nth-child(6) {
    display: unset !important;
  }
}

.professional_banner_box {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Professional_Services-2.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 575px) {
  .professional_banner_box {
    background-size: cover;
    padding-top: 20px;
  }

  .professional_banner_box .banner_info {
    padding-top: 0;
  }
}

.manufacturing_tran_box .trans_small_box {
  min-height: 260px;
}

.manufacturing_tran_box .trans_small_box p {
  min-height: 200px;
}

.manu_tran_item p {
  min-height: 100px !important;
}

.manufacturing_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Manufacturing-1.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 16%;
}

@media (max-width: 1200px) {
  .professional_services_wrap .trans_small_box {
    min-height: 250px;
  }
}

@media (max-width: 575px) {
  .manufacturing_banner {
    background-size: cover;
    padding-top: 20px;
    background-position: right;
  }

  .manufacturing_banner .banner_info {
    padding-top: 0;
  }
}

.mdm_tran_box .trans_small_box {
  min-height: 450px;
}

.mdm_banner_box {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm_banner/MDM_Banner.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 1200px) {
  .managed_text .trans_small_box {
    min-height: 400px !important;
  }
}

@media (max-width: 992px) {
  .mdm_banner_box {
    background-size: cover;
  }

  .managed_text .trans_small_box {
    min-height: 460px !important;
  }
}

@media (max-width: 575px) {
  .mdm_banner_box {
    background-size: cover;
    padding-top: 20px;
  }

  .mdm_banner_box .banner_info {
    padding-top: 0;
  }
}

.byod_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm_banner/BYOD-1.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.byod_bcta_item .bcta_img {
  bottom: -92px !important;
  width: 380px !important;
}

@media (max-width: 575px) {
  .byod_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .byod_banner .banner_info {
    padding-top: 0;
  }
}

.epImage_euvantage a img {
  margin-top: 25px;
  object-fit: contain;
}

.epImage_CloudOptimal a img {
  margin-top: 50px;
}

.cloud_banner_img img {
  margin-top: 21px;
}

.marq_slider3 img {
  width: 120px !important;
  height: 60px;
  object-fit: contain;
}

.cloud_ser_banner {
  background-image: var(--sky-gr) !important;
}

.cloud_s_banner {
  background-image: linear-gradient(95deg, #046e9d, #fff0),
    url(..//images/cloud_banner/Cloud_services.jpeg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 11%;
}

.cloud_trans_item .trans_small_box h4 {
  min-height: unset !important;
}

.cloud_trans_item .trans_small_box p {
  min-height: 220px;
}

.cloud_architecture_box .trans_small_box {
  min-height: 300px !important;
}

.cloud_architecture_box .trans_small_box h4 {
  min-height: unset;
}

@media (max-width: 1400px) {
  .marq_slider3 img {
    width: 120px !important;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .cloud_trans_item .trans_small_box {
    min-height: 460px;
  }

  .cloud_architecture_box .trans_small_box {
    min-height: 330px !important;
  }

  .cloud_service_partner .marq_slider3 img {
    width: 98px !important;
  }
}

@media (max-width: 992px) {
  .cloud_service_partner .marq_slider3 img {
    width: 70px !important;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .cloud_service_partner .marq_slider3 img {
    width: 65px !important;
    margin-right: 10px;
  }
}

@media (max-width: 575px) {
  .cloud_s_banner {
    background-size: cover;
    padding-top: 40px;
  }

  .cloud_s_banner .banner_info {
    padding-top: 0;
  }

  .cloud_service_partner .marq_slider3 img {
    width: 28px !important;
    margin-right: 5px;
  }
}

@media (max-width: 390px) {
  .cloud_service_partner .marq_slider3 img {
    margin-right: unset;
  }
}

@media (max-width: 350px) {
  .cloud_s_banner {
    height: 420px;
  }

  .cloud_s_banner .banner_info h1 {
    font-size: 42px;
  }

  .cloud_service_partner .marq_slider3 img {
    width: 31px !important;
  }

  .cloud_service_partner .sec_heading h3 {
    font-size: 26px;
  }
}

.retail_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industry_Retail.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.retail_banner .banner_info p {
  color: #fff !important;
}

.retail_main .trans_small_box p {
  min-height: 80px;
}

.retail_main .trans_small_box {
  min-height: 225px;
}

.retail_use_img img {
  width: 100%;
}

.retail_use_list ul li {
  list-style: disc;
  font-size: 17px;
  font-weight: 400;
  line-height: 40.2px;
  color: #242424;
}

@media (max-width: 575px) {
  .retail_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .retail_banner .banner_info {
    padding-top: 0;
  }
}

.ev_banner {
  height: 440px !important;
}

.ev_content {
  margin-top: -80px;
  margin-left: 123px;
}

.ev_content ul li span {
  font-family: "Poppins", sans-serif;
}

.ev_item_box .trans_small_box {
  min-height: 420px !important;
}

.ev_item_box .trans_small_box h4 {
  min-height: 85px !important;
}

@media (max-width: 1400px) {
  .ev_banner {
    height: 468px !important;
  }
}

@media (max-width: 575px) {
  .ev_content {
    margin-top: 0;
    margin-left: unset;
  }
}

.education_img_box {
  margin-top: 62px !important;
}

.education_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Industries_banner/Education-2.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

@media (max-width: 575px) {
  .education_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .education_banner .banner_info {
    padding-top: 0;
  }
}

@media (max-width: 370px) {
  .education_banner {
    height: 560px;
  }
}

@media (max-width: 350px) {
  .banner_wrap .banner_info h1 {
    font-size: 42px;
  }

  .education_banner {
    height: 425px;
  }
}

.use_box_item {
  margin: auto;
  position: relative;
}

.use_box_item h5 {
  position: absolute;
  top: -30px;
  color: #071e22;
  padding: 0 4px;
  font-size: 18px;
}

.use_box_item p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  float: left;
  padding: 7px 50px 0 4px;
}

.use_box_item .line {
  overflow: hidden;
  border-bottom: 2px solid #1e2f97;
  width: 85.5%;
  margin-left: -3%;
}

.use_box_item .line:after {
  content: "";
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px #000;
}

.use_box_item .text {
  width: 55px;
  height: 55px;
  padding: 10px;
  position: absolute;
  bottom: 103%;
  margin-bottom: -33px;
  left: -16.5%;
  border-radius: 100%;
  border: 2px solid #1e2f97;
}

.use_box_item .text img {
  border-radius: 100%;
  text-align: center;
  line-height: 50px;
  font-style: normal;
  color: #999;
  width: 100%;
}

@media (max-width: 1400px) {
  .enterprise_pr_wrap .container {
    max-width: 100%;
    margin-left: 4%;
  }

  .use_case {
    margin-left: unset !important;
  }
}

@media (max-width: 1280px) {
  .right_pr_wrap .row .col-12 {
    padding-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .use_box_item .line {
    margin-left: -2.9%;
  }

  .enterprise_pr_wrap .container {
    max-width: 1475px;
  }

  .use_case {
    margin-left: 5%;
  }

  .use_box_item .text {
    left: -15.9%;
  }
}

@media (max-width: 992px) {
  .cloud_optimal_banner {
    background-size: cover !important;
  }
}

@media (max-width: 930px) {
  .use_box_item .text {
    left: -14.5%;
  }
}

@media (max-width: 860px) {
  .use_box_item .text {
    left: -15.5%;
  }
}

@media (max-width: 768px) {
  .use_box_item .text {
    left: -17.5%;
  }
}

@media (max-width: 575px) {
  .use_box_item .line {
    width: 100%;
    margin-left: 3px !important;
  }

  .use_box_item h5 {
    font-size: 16px;
    width: 108%;
  }

  .use_box_item p {
    font-size: 15px;
    padding: 7px 0 0 4px;
  }
}

@media (max-width: 550px) {
  .use_box_item .text {
    left: -12.2%;
  }
}

@media (max-width: 440px) {
  .use_box_item .text {
    left: -14.5%;
  }
}

@media (max-width: 420px) {
  .use_box_item .text {
    left: -15.5%;
  }
}

@media (max-width: 400px) {
  .use_box_item .text {
    left: -16.5%;
  }
}

@media (max-width: 380px) {
  .use_box_item .text {
    left: -17.5%;
  }
}

@media (max-width: 370px) {
  .use_box_item .text {
    left: -17.8%;
  }

  .use_box_item h5 {
    font-size: 15px !important;
  }
}

@media (max-width: 350px) {
  .use_box_item .text {
    left: -19.8%;
  }

  .use_box_item h5 {
    font-size: 14px !important;
  }
}

.cloud_optimal_banner {
  background-image: linear-gradient(95deg, #000d81, #fff0),
    url(..//images/Platforms_banner/CloudOptimal-2.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.cloud_optimal_emp {
  background-color: unset !important;
}

@media (max-width: 575px) {
  .cloud_optimal_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .cloud_optimal_banner .banner_info {
    padding-top: 0;
  }
}

@media (max-width: 370px) {
  .cloud_optimal_banner .banner_info h1 {
    font-size: 44px;
  }
}

.desktop_ready_banner {
  background-image: linear-gradient(95deg, #000d81, #fff0),
    url(..//images/Platforms_banner/DesktopReady_banner2.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 40%;
}

.desktop_ready_function .trans_small_box {
  height: 370px;
}

.desktop_ready_User h4 {
  width: 220px;
}

@media (max-width: 992px) {
  .desktop_ready_banner {
    background-size: cover;
  }

  .empower_wrap {
    padding: 50px 0;
  }

  .empower_wrap .row .col-12:first-child .emp_content {
    padding: 20px 25px 30px 0;
    margin-top: -35px;
    margin-left: 45px;
  }
}

@media (max-width: 575px) {
  .desktop_ready_banner {
    background-size: cover;
    padding-top: 70px;
    background-position: right 0;
  }

  .desktop_ready_banner .banner_info {
    padding-top: 0;
  }

  .empower_wrap .emp_prod_img {
    margin-bottom: 0;
    margin-top: 30px;
  }

  .empower_wrap {
    padding: 50px 0;
  }

  .empower_wrap .row .col-12:first-child .emp_content {
    margin-left: unset;
    padding-right: unset;
  }
}

@media (max-width: 400px) {
  .desktop_ready_banner {
    padding-top: 30px;
    height: 430px;
  }

  .desktop_ready_banner .banner_info h1 {
    font-size: 45px;
  }
}

.eu_vantage_banner {
  background-image: linear-gradient(95deg, #000d81, #fff0),
    url(..//images/Platforms_banner/EuVantage_banner.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 45%;
}

.eu_vantage_banner_text {
  min-width: 780px;
}

.eu_vantage_banner_text span {
  display: unset !important;
}

@media (max-width: 992px) {
  .eu_vantage_banner {
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .eu_vantage_banner {
    background-size: cover;
    padding-top: 20px;
  }

  .eu_vantage_banner .banner_info {
    padding-top: 0;
    margin-top: -16px;
  }

  .eu_vantage_banner_text {
    min-width: unset;
    gap: unset !important;
    padding: 0 4px !important;
  }

  .eu_vantage_banner .banner_info p {
    line-height: 26.2px !important;
  }

  .euvantage_fountion .trans_small_box {
    min-height: unset !important;
  }

  .euvantage_fountion .trans_small_box h4 {
    min-height: unset !important;
  }

  .empower_wrap .emp_prod_img {
    min-height: unset;
  }

  .emp_prod_img {
    margin-top: 30px;
  }
}

.resources_banner {
  min-width: 750px;
}

.resource_text_box h2 {
  color: #111;
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 16px;
}

.resource_text_box p {
  color: #54618d;
  font-family: Lato;
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.resource_contact {
  background-color: #f6f4fc;
  padding: 22px 22px;
}

.resource_contact h6 {
  color: #1e2f97;
  font-size: 16px;
  padding-bottom: 15px;
}

.resource_contact input {
  background-color: #fff0;
  border: none;
  border-bottom: 1px solid #111;
  border-radius: 0;
  box-shadow: none !important;
}

.resource_contact label {
  margin-top: 15px;
  font-weight: 600;
  font-size: 13px;
  color: #111;
}

.resource_contact p {
  color: #242424;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  padding-top: 25px;
}

.resource_contact button {
  display: block;
  background-color: #1e2f97;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.8px;
  border-radius: 5px;
  border: 1px solid #1e2f97;
  padding: 12px;
  min-width: 130px;
  height: 42px;
  text-align: center;
  transition: all 250ms ease-in-out;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label-inline {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #242424;
  cursor: pointer;
}

.resource_text_box ul {
  margin-left: 15px;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 21px;
  list-style-type: disc !important;
}

.resource_text_box ul li {
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  display: list-item !important;
  padding-left: 5px;
  margin-bottom: 0.5em;
  list-style-type: inherit;
}

.policy_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 27.2px;
  color: #242424;
}

.policy_box h2 {
  font-size: 36px;
  line-height: 1.25;
  color: #111;
  margin: 0;
  padding-bottom: 15px;
}

.policy_box h4 {
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}

.policy_box ul {
  margin-left: 2%;
}

.policy_box ul li {
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  list-style: disc;
}

.policy_box a {
  color: #1e2f97;
  font-weight: 600;
}

.policy_box a:hover {
  color: #1e2f97;
}

.policy_box_text p {
  font-family: "Raleway", sans-serif;
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  list-style: disc;
}

.video_box {
  padding: unset;
}

.video_section {
  display: block;
  box-shadow: 0 5px 25px rgb(0 0 0 / 10%);
  border-radius: 10px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  margin: 0;
  height: 100%;
  background: #0d3b3f;
}

.video_section:hover {
  background-color: var(--deep-green);
}

.video_text h2,
.video_text h1 {
  text-align: left;
}

.video_text h2 span,
.video_text h1 span {
  font-size: 40px;
  font-weight: 800;
  line-height: 54px;
  letter-spacing: -0.8px;
  padding-bottom: 8px;
  color: #fff !important;
}

.video_section figure {
  margin: 0;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.video_section figure iframe {
  width: 100%;
  height: 92%;
  object-fit: cover;
  object-position: center;
}

.video_section h5 {
  color: #f5faf8;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.22px;
  padding: 15px;
  margin: 0;
  /* min-height: 75px; */
  min-height: 115px;
}

.video_row .main_col {
  padding: 8px !important;
}

@media (max-width: 1400px) {
  .video_section figure {
    height: 185px;
  }
}

@media (max-width: 1200px) {
  .video_section figure {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .video_section figure {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .video_section {
    height: auto;
  }

  .video_section figure {
    height: 200px;
  }

  .video_section h5 {
    min-height: auto;
  }
}

.career_banner {
  background-image: linear-gradient(-450deg, transparent 0%, #0017a77d 80%),
    url(https://www.anunta.com/wp-content/uploads/2025/04/career-page-banner-03-scaled.png);
  height: 500px;
  background-position: right;
  background-size: cover;
}

.career_banner img {
  width: 8%;
  position: absolute;
  right: 3%;
  top: 0%;
}

.wrap {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.wrap:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 0.5);
  display: none;
}

.slider22 {
  position: relative;
  z-index: 200;
  padding: 0 0;
  margin: 5rem auto;
  min-width: 1000px;
  width: 100%;
}

.wrap .slick-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  border: none;
  background: #fff0;
  color: #fff;
  font-family: monospace;
  font-size: 5rem;
  z-index: 300;
  outline: none;
}

.wrap .slick-prev {
  left: -6%;
  color: black !important;
}

.wrap .slick-prev:hover {
  color: #000;
}

.wrap .slick-next {
  left: 102%;
  color: black !important;
}

.wrap .slick-next:before {
  background-color: #fff0;
  border: unset;
  content: unset;
}

.wrap .slick-prev:before {
  background-color: #fff0;
  border: unset;
  content: unset;
}

.wrap .slick-next:hover {
  color: #000;
}

.wrap .item.slick-slide {
  width: 400px;
  height: 400px !important;
  transition: transform 0.5s ease;
  position: relative;
}

.wrap .slick-slide:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.4s;
  display: none;
}

.wrap .item.slick-slide {
  transform: scale(0.7) translate(640px);
}

.wrap .item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-250px);
  z-index: 10;
}

.wrap .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
  transform: scale(0.7) translate(-640px);
  z-index: 5;
}

.wrap .item.slick-slide.slick-active {
  transform: scale(0.8) translate(250px);
}

.wrap .item.slick-slide.slick-center {
  transform: scale(1);
  z-index: 30;
}

.wrap .slick-center:after {
  opacity: 0;
  margin: 10px;
  padding: 10px;
}

.life_item h3 {
  margin-bottom: -40px !important;
}

@media (max-width: 1200px) {
  .wrap .item.slick-slide {
    width: 374px;
    height: 390px !important;
  }

  .wrap .slick-prev {
    left: -4%;
  }

  .wrap .slick-next {
    left: 93%;
  }
}

@media (max-width: 575px) {
  .career_banner {
    padding-top: unset;
  }

  .about_work_img {
    right: 25% !important;
  }

  .slider22 {
    width: 77%;
    max-width: unset;
    min-width: unset;
  }

  .wrap .slick-prev {
    left: -17% !important;
  }

  .wrap .slick-next {
    left: 103% !important;
  }
}

.content input {
  display: none;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  margin-right: 50px;
}

.content .list label {
  cursor: pointer;
  height: 60px;
  line-height: 45px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255 255 255 / 0.5);
  padding-left: 25px;
  transition: all 0.5s ease;
  z-index: 10;
  color: #071e22;
  width: 170%;
  border-radius: 5px;
  height: 45px;
}

#home:checked ~ .list label.home,
#blog:checked ~ .list label.blog,
#help:checked ~ .list label.help,
#code:checked ~ .list label.code,
#about:checked ~ .list label.about {
  color: #fff;
  background-color: #1e2f97;
}

.content .text-content .home_img_box img {
  height: 200px;
  width: 125%;
  object-fit: contain;
}

.content .text-content .title_box h5 {
  color: #071e22;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.22px;
  margin: 0;
  margin-bottom: 16px;
}

.content .text-content .title_box p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  color: #242424;
  margin: 0;
  padding: 0;
}

#home:checked ~ .list .slider {
  top: 0;
}

#blog:checked ~ .list .slider {
  top: 60px;
}

#help:checked ~ .list .slider {
  top: 120px;
}

#code:checked ~ .list .slider {
  top: 180px;
}

#about:checked ~ .list .slider {
  top: 240px;
}

.content .text-content {
  width: 125%;
  height: 100%;
  background-color: #fff;
  padding: 45px 50px;
  border-radius: 10px;
}

.content .text {
  display: none;
}

.content .text .title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.content .text-content .home {
  display: block;
}

#home:checked ~ .text-content .home,
#blog:checked ~ .text-content .blog,
#help:checked ~ .text-content .help,
#code:checked ~ .text-content .code,
#about:checked ~ .text-content .about {
  display: block;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

#blog:checked ~ .text-content .home,
#help:checked ~ .text-content .home,
#code:checked ~ .text-content .home,
#about:checked ~ .text-content .home {
  display: none;
}

@media (max-width: 992px) {
  #home:checked ~ .text-content .home,
  #blog:checked ~ .text-content .blog,
  #help:checked ~ .text-content .help,
  #code:checked ~ .text-content .code,
  #about:checked ~ .text-content .about {
    gap: 70px;
  }

  .wrap .item.slick-slide {
    width: 315px;
    margin-left: 12px;
  }

  .wrap .slick-next {
    left: 73%;
  }

  .wrap .slick-prev {
    left: 4%;
  }
}

@media (max-width: 575px) {
  .content {
    display: unset;
  }

  .content .text-content {
    width: unset;
    padding: 45px 42px;
  }

  #home:checked ~ .text-content .home,
  #blog:checked ~ .text-content .blog,
  #help:checked ~ .text-content .help,
  #code:checked ~ .text-content .code,
  #about:checked ~ .text-content .about {
    display: unset;
  }

  .content .text-content .home_img_box img {
    width: unset;
  }

  .content .list {
    display: inline-grid;
    width: unset;
    text-align: center;
    margin-bottom: 25px;
  }

  .content .list label {
    padding-left: unset;
    width: 180%;
  }

  .home_img_box {
    margin-bottom: 15px;
  }
}

@media (max-width: 390px) {
  .content .list label {
    width: 165%;
  }
}

[id^="gartner-pi-widget"] .gartner-pi-h1 {
  font-size: 16px !important;
}

[id^="gartner-pi-widget"] {
  width: 220px !important;
  border-radius: 8px !important;
}

[id^="gartner-pi-widget"] .gartner-pi-logo {
  background-size: 77px 26.72px !important;
  margin-bottom: -28px !important;
  height: 30.72px !important;
}

[id^="gartner-pi-widget"] .gartner-pi-card .gartner-pi-header {
  min-height: 40px !important;
}

[id^="gartner-pi-widget"][data-size="small"]
  .gartner-pi-card
  .gartner-pi-as-of-date {
  position: absolute !important;
  left: 6.3% !important;
  top: 176% !important;
  font-weight: 900;
}

[id^="gartner-pi-widget"] .gartner-pi-score {
  font-size: 17px !important;
  padding-bottom: 10px;
}

[id^="gartner-pi-widget"] .gartner-pi-h2 {
  font-size: 8px !important;
}

[id^="gartner-pi-widget"] .gartner-pi-reviews-link span {
  font-size: 11px !important;
}

[id^="gartner-pi-widget"] .gartner-pi-sourcing-link a {
  font-size: 8px !important;
  display: unset !important;
}

[id^="gartner-pi-widget"] .gartner-pi-chevron {
  margin: 0 0 0 3px !important;
}

.kfwDIk {
  height: 122px !important;
}

[id^="gartner-pi-widget"]
  .gartner-pi-card
  .gartner-pi-stats
  .gartner-pi-alignLeft
  .gartner-pi-overall-rating {
  padding: unset !important;
  display: inline-flex !important;
  height: 28px !important;
}

[id^="gartner-pi-widget"] .gartner-pi-star-rating {
  margin-left: 45px !important;
  margin-top: 1px !important;
}

.blogWrapper .sidebar .author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  background-color: var(--clr-white);
  padding: 20px;
  box-shadow: var(--shadow-small);
}

.blogWrapper .sidebar .author .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author {
  width: 100%;
  border-radius: 16px;
  padding: 64px;
  box-shadow: var(--shadow-small);
  background-color: #fff;
  text-align: center;
  height: auto;
  max-width: 777px;
  margin: 10px auto;
  padding-bottom: 10px;
}

.author h3 {
  color: #1e2f97;
  font-size: 22px;
  font-weight: 700;
  line-height: 15.4px;
  letter-spacing: -0.24px;
  padding-bottom: 10px;
}

.author_details h6 {
  font-size: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #071e22;
  font-weight: 700;
}

.author_details img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--clr-green);
}

.author_details p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  /* text-align: justify; */
  text-align: left;
  height: auto;
}

@media (max-width: 992px) {
  [id^="gartner-pi-widget"] {
    width: 225px !important;
  }
}

@media (max-width: 575px) {
  .author {
    left: 0%;
    top: 5%;
    width: 100%;
  }

  .csp_wrap .csp_inner .csp_post img {
    height: unset;
  }
}

.pr-ul {
  margin-left: 2.1%;
}

.pr-ul li {
  color: #242424;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  list-style: disc;
}

.news_dwrap .nd_para p a {
  color: #1e2f97;
}

.news_dwrap .nd_para p strong {
  font-size: 18px;
}

.hbspt-form input {
  width: 100%;
  height: 45px;
  outline: none;
}

.hbspt-form .actions input {
  border: none;
  display: block;
  background-color: #1e2f97;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.8px;
  border-radius: 5px;
  padding: 12px;
  min-width: 130px;
  height: 42px;
  text-align: center;
  transition: all 250ms ease-in-out;
  width: 10%;
  margin-top: 40px;
}

@media (max-width: 575px) {
  .insight_banner_box {
  }
}

.loading_box {
  text-align: center;
  margin-top: 40px;
}

.managed_text .trans_small_box {
  min-height: 380px;
}

.managed_text .trans_small_box p {
  min-height: 200px;
}

.endpoint_partner {
  padding: 40px 0 !important;
}

.managed_text .trans_small_box h4 {
  min-height: unset;
}

.managed_consider_box .trans_small_box h4 {
  min-height: unset;
}

.managed_consider_box .trans_small_box {
  min-height: 300px;
}

.managed_consider_box .trans_small_box {
  min-height: 300px !important;
}

.managed_item_box .trans_small_box {
  min-height: 415px !important;
}

.managed_item_box .trans_small_box h4 {
  min-width: 215px;
}

@media (max-width: 1200px) {
  .managed_item_box .trans_small_box {
    min-height: 445px !important;
  }
}

@media (max-width: 992px) {
  .mdm_marq_slider img {
    max-width: 85px !important;
    margin-right: 8px;
  }
}

@media (max-width: 575px) {
  .managed_info {
    gap: unset !important;
  }

  .managed_text .trans_small_box h4 {
    min-height: 25px;
  }

  .managed_text .trans_small_box p {
    padding-bottom: 25px;
  }

  .endpoint_partner .mdm_marq_slider img {
    width: 36px !important;
  }

  .managed_item_box .trans_small_box {
    min-height: 310px !important;
  }
}

@media (max-width: 430px) {
  .endpoint_partner .mdm_marq_slider img {
    width: 33px !important;
  }
}

@media (max-width: 390px) {
  .endpoint_partner .mdm_marq_slider img {
    width: 30px !important;
  }
}

.mobile_device_text .trans_small_box h4 {
  min-height: 85px;
}

.mobile_device_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm/mobile_device_banner.jpg);
}

@media (max-width: 575px) {
  .mobile_device_info {
    gap: unset !important;
  }
}

.modern_desktop_management_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm/modern_desktop_banner.jpg);
  background-position: center 17%;
}

.device_lifecycle .trans_small_box {
  min-height: 390px !important;
}

.device_lifecycle_banner {
  background-image: linear-gradient(95deg, #1e2f97, #fff0),
    url(..//images/mdm/device_lifecycle_banner.jpeg);
  background-size: cover;
}

@media (max-width: 1200px) {
  .device_lifecycle .trans_small_box {
    min-height: 435px !important;
  }
}

@media (max-width: 575px) {
  .mobile_device_banner {
    height: 545px;
  }

  .mobile_device_text .trans_small_box {
    height: unset;
  }

  .mobile_device_text .trans_small_box h4 {
    min-height: unset;
  }
}

.bsi_text {
  font-size: 9px !important;
  position: absolute;
  left: 64%;
  right: -30%;
  top: 81%;
  letter-spacing: 2px !important;
}

.bsi_text a {
  color: #3ecefe !important;
  font-weight: 800;
}

.bsi_text a:hover {
  color: #3ecefe !important;
}

@media (max-width: 1400px) {
  .bsi_text {
    font-size: 4.7px !important;
  }
}

@media (max-width: 575px) {
  .bsi_text {
    font-size: 6px !important;
    left: unset;
    right: unset;
    top: unset;
  }
}

@media (max-width: 375px) {
  .bsi_text {
    font-size: 4.7px !important;
  }
}

.landing_banner_box {
  padding: unset !important;
  background-image: unset !important;
}

.landing_page {
  max-width: unset !important;
  display: unset !important;
  padding: unset;
}

.health_text ul li span {
  font-weight: 700;
}

.landing_receive_box {
  margin-top: -45px;
}

.landing_rate [id^="gartner-pi-widget"] {
  border: none;
}

.landing_footer {
  padding: 25px 0;
}

.landing_glass {
  margin-top: 8px;
}

.landing_page h2 {
  color: #fff !important;
}

.landing_item_box .trans_small_box {
  min-height: 250px !important;
}

.landing_item_box .trans_small_box h4 {
  min-height: 25px;
}

.landing_emp_box ul li img {
  height: 14px;
}

.landing_it_box {
  height: 510px;
}

.landing_it_box::after {
  background-image: linear-gradient(150deg, #000000, transparent);
}

.landing_it_box img {
  height: 510px;
}

.landing_it_box .banner_inner {
  max-width: 58%;
}

.client_testimonials .emp_test_item {
  height: unset;
}

.landing_it_box .landing_banner_box {
  margin-top: 50px;
}

.landing_it_box .landing_banner_box .landing_page h2 {
  padding-bottom: 25px;
}

@media (max-width: 1400px) {
  .landing_it_box .banner_inner {
    max-width: 72%;
  }
}

@media (max-width: 575px) {
  .landing_menu_cta {
    display: unset !important;
  }

  .landing_mobile_menu {
    display: none !important;
  }

  .landing_f_band .rate_box {
    width: 70% !important;
  }

  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 20px;
  }

  .landing_receive_box {
    margin-top: 25px;
    margin-bottom: -40px;
  }

  .landing_bsi_box {
    position: unset !important;
    font-size: 7px !important;
  }

  .landing_glass {
    margin-top: 10px;
    width: 13px !important;
    height: 13px !important;
    margin-right: 0px !important;
  }

  [id^="gartner-pi-widget"] {
    width: 255px !important;
  }

  [id^="gartner-pi-widget"] .gartner-pi-star-rating {
    margin-left: 85px !important;
  }

  [id^="gartner-pi-widget"] .gartner-pi-sourcing-link a {
    font-size: 10px !important;
  }

  .landing_it_box {
    padding-top: 0;
  }

  .landing_it_box .container {
    margin: 0 5px;
  }

  .landing_page h1 {
    margin-bottom: 15px !important;
    padding-top: 8px;
  }

  .landing_page p {
    padding-top: 20px !important;
  }

  .landing_it_box .banner_inner {
    max-width: unset;
    padding-left: unset;
  }

  .landing_it_box .landing_banner_box {
    margin-top: 140px;
  }

  .landing_it_box .banner_inner h2 {
    font-size: 35px !important;
    padding-bottom: unset !important;
  }
}

@media (max-width: 450px) {
  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 12px;
  }
}

@media (max-width: 550px) {
  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 40px;
  }
}

@media (max-width: 430px) {
  .landing_f_band .rate_box {
    width: 77% !important;
  }

  .landing_it_box {
    height: 420px !important;
  }

  .landing_it_box img {
    height: 420px !important;
  }

  .landing_it_box .banner_inner h2 {
    font-size: 31px !important;
  }

  .landing_it_box .landing_banner_box {
    margin-top: 110px;
  }
}

@media (max-width: 414px) {
  .landing_f_band .rate_box {
    width: 77% !important;
  }

  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 10px;
  }
}

@media (max-width: 390px) {
  .landing_f_band .rate_box {
    width: 84% !important;
  }

  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 17px;
  }
}

@media (max-width: 360px) {
  .landing_f_band .rate_box {
    width: 80% !important;
  }

  .landing_it_box .landing_banner_box {
    margin-top: 117px;
  }

  .landing_it_box .banner_inner h2 {
    font-size: 28px !important;
  }

  .landing_f_band [id^="gartner-pi-widget"] {
    margin-left: 0;
  }
}

.landing_option_b h2 {
  padding-bottom: 10px;
  max-width: 755px;
}

.landing_option_b ul {
  display: unset !important;
  margin-left: 10px;
}

.landing_option_b ul li::before {
  display: none;
}

.landing_option_b ul li {
  background: unset !important;
  list-style: disc;
  display: list-item !important;
  margin-left: 18px;
}

.landing_option_b ul li:last-child {
  margin-left: 18px !important;
}

.landing_option_b ul li:hover {
  color: #fff !important;
}

.landing_client_box {
  margin-top: 70px;
  text-align: center;
  border-top: 2px solid #1e2f97;
  border-bottom: 2px solid #1e2f97;
  padding: 30px;
}

.landing_client_box h6 {
  font-size: 20px;
}

.landing_client_text {
  text-align: center;
  margin-bottom: -70px;
}

.landing_client_text p {
  padding-top: 20px;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
}

.landing_option_banner::after {
  background-image: linear-gradient(150deg, #000000, transparent);
}

.it_environment_text ul {
  margin-top: 70px;
  text-align: justify;
  margin-left: 40px;
}

.it_environment_text ul li {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  display: list-item !important;
  padding-left: 5px;
  margin-bottom: 0.5em;
  list-style-type: disc;
}

.practices_it_box p {
  font-size: 17px;
  font-weight: 500;
  line-height: 27.2px;
  padding: 0;
  margin: 0;
  color: #242424;
  padding-top: 45px;
}

.landing_option_health h3 {
  color: #111;
  padding-bottom: 10px;
}

.landing_option_health p {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  padding-top: 10px;
}

.landing_option_health h5 {
  color: #111;
}

.landing_option_health ul {
  margin-top: 20px;
}

.landing_option_health ul li {
  list-style: disc;
  color: #242424;
  line-height: 22px;
  font-size: 15px;
  font-weight: 600;
}

.it_en_when p {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  padding-top: 10px;
}

.it_en_when h4 {
  font-size: 27px !important;
  margin-bottom: 15px !important;
}

.beyond_text_box h2 {
  text-align: left;
  padding-bottom: 15px !important;
}

.beyond_text_box p {
  text-align: left;
  padding-bottom: 10px;
}

.beyond_img_box {
  margin-top: 85px;
}

.it_pack_box .trans_small_box {
  min-height: 280px;
}

.it_pack_box .trans_small_box p {
  min-height: 85px;
}

.it_env_receive {
  padding-top: unset;
  padding-bottom: 80px;
}

.it_emp_content ul li img {
  width: 14px;
}

.landing_env_epImage img {
  min-height: 270px !important;
}

.landing_env_epImage .carousel-item {
  margin-top: 80px;
  height: 350px;
}

.landing_env_epImage .carousel-item a p {
  float: right;
  padding-top: 10px;
  color: #242424;
  font-size: 12px;
  font-weight: 500;
  cursor: unset;
}

@media (max-width: 575px) {
  .landing_option_banner {
    height: 540px;
  }

  .landing_option_banner img {
    height: 540px;
  }

  .landing_banner_box .banner_inner .banner_info h1::after {
    width: 100% !important;
  }

  .landing_banner_box .banner_inner .banner_info h1 {
    font-size: 36px !important;
  }

  .landing_option_banner .banner_img_box {
    margin: -50px 10px;
  }

  .landing_option_health {
    margin-top: -20px;
    margin-bottom: -85px;
  }

  .landing_option_about {
    margin-bottom: -50px;
  }

  .landing_option_emp img {
    margin-top: 65px;
  }

  .beyond_img_box {
    margin-top: unset;
  }

  .landing_env_epImage .carousel-item {
    height: unset;
    margin-top: 8px;
  }

  .landing_env_epImage .carousel-item a span {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .landing_option_banner {
    height: 530px;
  }

  .landing_option_banner img {
    height: 530px;
  }

  .landing_banner_box .banner_inner .banner_info h1 {
    font-size: 35px !important;
  }
}

@media (max-width: 390px) {
  .landing_option_banner {
    height: 550px;
  }

  .landing_option_banner img {
    height: 550px;
  }

  .landing_env_epImage .carousel-item {
    height: 336px;
    margin-top: 8px;
  }

  .landing_env_epImage .carousel-item a span {
    font-size: 14px;
  }

  .landing_banner_box .banner_inner .banner_info h1 {
    font-size: 34px !important;
  }
}

@media (max-width: 360px) {
  .landing_option_banner {
    height: 510px;
  }

  .landing_option_banner img {
    height: 510px;
  }

  .landing_env_epImage .carousel-item a span {
    font-size: 12px;
  }

  .landing_banner_box .banner_inner .banner_info h1 {
    font-size: 32px !important;
  }

  .landing_banner_box .banner_inner .banner_info h2 {
    font-size: 35px !important;
  }
}

.star_box {
  font-size: 12px;
  color: #000;
  text-align: center;
  margin-top: 10px;
}

.bg_opacity img {
  filter: brightness(0.7);
}

.aws_page {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/aws_banner.jpeg);
}

.aws_prod_img {
  margin-top: 130px;
}

.aws_benefits_box .trans_small_box {
  min-height: 350px !important;
}

.aws_expertise .trans_small_box h4 {
  min-height: 30px;
}

.aws_expertise .trans_small_box {
  min-height: 260px !important;
}

.anunta_expertise .trans_small_box {
  height: 265px !important;
  min-height: unset !important;
}

.anunta_expertise .trans_small_box h4 {
  min-height: 25px !important;
}

.aws_block {
  height: unset;
}

.aws_block .blockHead p {
  text-align: left;
}

@media (max-width: 575px) {
  .aws_page .banner_info h1 {
    font-size: 39px;
  }

  .aws_page {
    height: 400px;
  }
}

@media (max-width: 430px) {
  .aws_page .banner_info h1 {
    font-size: 34px;
  }

  .aws_page {
    height: 295px;
  }

  .aws_block h2 {
    font-size: 25px !important;
    line-height: unset;
    margin-top: -20px;
  }
}

.citrix_banner {
  background-image: linear-gradient(95deg, #071e65, #fff0),
    url(..//images/Platforms_banner/DesktopReady_banner2.jpg);
}

.citrix_nutshell .trans_small_box {
  min-height: 435px !important;
}

.citrix_block .blockHead p {
  text-align: left;
}

@media (max-width: 768px) {
  .citrix_banner {
    height: 420px;
  }
}

@media (max-width: 992px) {
  .citrix_banner {
    height: 420px;
  }

  .citrix_banner .banner_info {
    width: 100%;
    padding: 56px 40px;
  }
}

@media (max-width: 575px) {
  .citrix_nutshell .trans_small_box {
    min-height: 300px !important;
  }

  .citrix_prod_img {
    margin-top: unset;
  }
}

@media (max-width: 450px) {
  .citrix_banner {
    height: 320px;
  }
}

@media (max-width: 430px) {
  .citrix_banner {
    height: 270px;
  }

  .citrix_banner .banner_info h1 {
    font-size: 31px;
  }
}

@media (max-width: 390px) {
  .citrix_banner {
    height: 275px;
  }

  .citrix_banner .banner_info h1 {
    font-size: 28px;
  }
}

.emerage_business .blockHead p {
  text-align: justify;
}

.landing_menu_cta {
  margin-left: 62%;
}

.landing_menu_cta .menu_cta_btn {
  background-color: #fff0;
  color: #1e2f97;
  border: 2px solid #1e2f97;
}

.landing_menu_cta .menu_cta_btn:hover {
  color: #fff;
}

.emerage_tran_box .trans_small_box {
  min-height: 360px;
}

.emerage_tran_box .trans_small_box p {
  min-height: 110px;
}

.startup_box table {
  border-collapse: collapse;
  caption-side: bottom;
  width: 100%;
}

.startup_box table tbody {
  background-color: #fff;
}

.startup_box table,
th,
td {
  border: solid 1px #bfbfbf;
  padding: 10px;
  color: var(--black-bg);
  font-size: 17px;
  font-weight: 500 !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.startup_box table tr td:first-child {
  text-align: left !important;
  background-color: #27abed;
  color: var(--white);
  font-weight: 600 !important;
}

.startup_box table tbody:first-child {
  margin-top: 30px;
}

.startup_it {
  margin-top: 20px;
}

.startup_it tbody tr td:last-child {
  text-align: left !important;
}

.startup_it tbody tr td:first-child {
  width: 19.5%;
}

.startup_service {
  margin-top: 35px;
}

.startup_service table {
  width: 100%;
}

.startup_service table thead tr th {
  background-color: #1e2f97;
  color: #fff;
}

.startup_service table thead tr th:first-child {
  padding: 22px 0;
}

.startup_service table thead tr th:nth-child(3) {
  padding: 22px 0;
}

.startup_service table thead tr th:nth-child(4) {
  padding: 22px 0;
}

.startup_service table thead tr th:nth-child(5) {
  padding: 22px 0;
}

.startup_service table tbody tr th {
  width: 20%;
  background-color: #27abed;
  color: #fff;
  padding: 30px 15px;
}

.startup_service table tbody tr th:nth-child(1) {
  padding: 50px 15px;
}

.cloud_exten_box {
  padding: 150px 15px !important;
}

.cloud_exten_box2 {
  padding: 100px 15px !important;
}

.startup_service table tbody tr td {
  background-color: var(--white);
  text-align: center;
}

.emerge_receive_box {
  margin-top: 5px;
  text-align: center;
}

.emerge_receive_box img {
  width: 92%;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 0.25) 0 9px 12px -2px,
    rgb(0 0 0 / 0.3) 0 7px 7px -3px;
}

.emerge_receive_box .cta_btn {
  font-size: 18px;
  font-weight: 600;
  background-color: #27abec;
  color: #fff;
  display: inline-block;
  margin-top: 50px;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 250ms ease-in-out;
}

.home_marq .emerge_marq_slider img {
  width: 80px !important;
  margin-right: 23px;
}

.Cloud_box_item {
  padding: 142px 0;
}

.l1_expert_box {
  padding: 80px 0;
}

.emerage_free_box {
  margin-top: 25px;
}

.emerge_banner {
  height: 420px;
}

.emerge_banner img {
  height: 420px;
}

.emerge_banner .banner_v2_wrap .banner_inner {
  max-width: 65%;
}

@media (max-width: 1400px) {
  .emerge_banner {
    height: 450px;
  }

  .emerge_banner img {
    height: 450px;
  }

  .emerge_banner .landing_banner_box {
    margin-top: 15px;
  }
}

@media (max-width: 992px) {
  .emerge_banner .landing_banner_box {
    padding: 0 30px !important;
  }

  .emerage_tran_box .trans_small_box {
    min-height: 320px !important;
  }
}

@media (max-width: 768px) {
  .emerge_banner .landing_banner_box {
    padding: 0 0px !important;
  }
}

@media (max-width: 575px) {
  .startup_box {
    overflow: auto;
    scrollbar-width: thin;
  }

  .startup_service {
    overflow: auto;
    scrollbar-width: thin;
  }

  .emerge_receive_box .cta_btn {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .home_marq .emerge_marq_slider img {
    width: 25px !important;
  }

  .entry-content ul li img {
    width: 5% !important;
    margin-top: -18px !important;
  }

  .emerge_banner {
    height: 400px !important;
  }

  .emerage_free_box {
    margin-top: 20px;
  }

  .emerge_banner .banner_v2_wrap .banner_inner {
    max-width: unset;
  }

  .emerage_tran_box .trans_small_box {
    min-height: 300px !important;
  }

  .emerge_banner .landing_banner_box {
    padding: 0 0px !important;
  }
}

@media (max-width: 490px) {
  .emerge_banner .landing_banner_box {
    margin-top: 100px;
  }
}

@media (max-width: 450px) {
  .emerge_banner {
    height: 360px !important;
  }
}

@media (max-width: 430px) {
  .home_marq .emerge_marq_slider img {
    width: 23px !important;
  }

  .emerge_banner {
    height: 360px !important;
  }
}

@media (max-width: 390px) {
  .home_marq .emerge_marq_slider img {
    width: 22px !important;
  }

  .emerge_banner {
    height: 360px !important;
  }

  .emerge_banner .cta_btn {
    margin-top: 25px !important;
  }
}

@media (max-width: 375px) {
  .emerge_banner {
    height: 390px !important;
  }

  .emerge_banner .cta_btn {
    margin-top: 25px !important;
  }
}

#price {
  text-align: center;
}

.plan {
  display: inline-block;
  margin: 10px 0;
}

.plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 260px;
  max-width: 100%;
  position: relative;
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.16), 0 3px 6px rgb(0 0 0 / 0.23);
  border-radius: 10px;
}

.entry-title {
  background: #53cfe9;
  height: 165px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.entry-title h3 {
  background: #20bada;
  font-size: 20px;
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 50px;
}

.entry-title p {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #20bada;
  height: 95px;
  width: 95px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  line-height: 80px;
  /* font-size: 18px; */
  font-size: 10px;
  font-weight: 700;
}

.price span {
  position: absolute;
  font-size: 11px;
  bottom: -12px;
  left: 30px;
  font-weight: 400;
}

.entry-content {
  color: #323232;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  height: 235px;
}

.entry-content li {
  padding: 10px 25px;
  text-align: -webkit-left;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  height: 65px;
}

.entry-content ul li img {
  width: 6%;
  object-fit: contain;
  margin-right: 5px;
  margin-top: -21px;
}

.entry-content li p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 0;
}

.entry-content li:last-child {
  border: none;
}

.entry_btn {
  padding: 3em 0;
  text-align: center;
}

.entry_btn a {
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  background-color: #27abed;
  color: #fff;
  border-radius: 5px;
}

.entry_btn a:hover {
  background-color: #1e2f97;
  color: #fff;
}

.hot {
  position: absolute;
  top: -7px;
  background: #f80;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  padding: 2px 5px;
  font-size: 9px;
  border-radius: 2px;
  right: 10px;
  font-weight: 700;
}

.basic .entry-title {
  background: #75ddd9;
}

.basic .entry-title > h3 {
  background: #44cbc6;
}

.basic .price {
  background: #44cbc6;
}

.standard .entry-title {
  background: #4484c1;
}

.standard .entry-title > h3 {
  background: #3772aa;
}

.standard .price {
  background: #3772aa;
}

.ultimite .entry-title > h3 {
  background: #666c86;
}

.ultimite .entry-title {
  background: #8d93ad;
}

.ultimite .price {
  background: #8d93ad;
}

.package_table tbody {
  background-color: var(--white);
}

.package_table tbody tr td i {
  font-size: 15px;
  line-height: 20px;
}

.package_table tbody tr:hover {
  --bs-table-accent-bg: unset;
}

.package_month span {
  font-size: 12px;
}

.package_price_box th h3 {
  color: #fff;
  font-size: 20px;
  padding: 17px 0;
}

.package_price_box th {
  background-color: #27abec;
}

.package_text p {
  background-color: #1e2f97;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.package_text ul {
  margin-left: 10px;
}

.package_text ul li {
  color: #242424;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 0;
  list-style: auto;
}

.package_landing_emp_box ul li {
  margin-top: 5px;
}

.scope_box {
  background-color: beige;
}

.cloud_credits_box {
  position: relative;
}

.cloud_credits_box span {
  font-size: 8px;
  position: absolute;
  font-weight: 600;
}

.emerage_partner {
  background-color: #f5faf8 !important;
}

.emerage_partner .reco_slide a img {
  width: 90% !important;
  height: 35% !important;
  margin-top: 33px;
}

.emerage_landing h2 span {
  font-size: 34px;
}

@media (max-width: 1400px) {
  .plan-inner {
    min-width: 225px;
  }
}

@media (max-width: 575px) {
  .package_table_box {
    overflow: auto;
    scrollbar-width: thin;
  }

  .emerge_menu_btn {
    display: unset !important;
  }

  .emerge_menu_cta {
    margin-left: 3%;
  }

  .emerage_landing .cta_btn {
    padding: 15px 12px !important;
  }

  .emerage_partner .reco_slide .slick-next {
    right: -22px !important;
  }

  .emerage_partner .reco_slide .slick-next::before {
    font-size: 42px !important;
  }

  .emerage_partner .reco_slide .slick-prev {
    left: -22px !important;
  }

  .emerage_partner .reco_slide .slick-prev::before {
    font-size: 42px !important;
  }
}

.azura_benefits_box .trans_small_box {
  min-height: 410px !important;
}

.azura_banner_text h2 span {
  font-size: 34px;
}

.azura_banner .banner_inner {
  max-width: 80%;
}

.azura_banner {
  height: 375px;
}

.azura_banner img {
  height: 375px;
}

@media (max-width: 1400px) {
  .azura_benefits_box .trans_small_box {
    min-height: 495px !important;
  }
}

@media (max-width: 575px) {
  .azura_banner {
    height: 325px !important;
  }

  .azura_banner img {
    height: 325px !important;
  }

  .azura_btn {
    display: block !important;
  }

  .azura_benefits_box .trans_small_box {
    min-height: 285px !important;
  }

  .azura_banner .banner_inner {
    max-width: unset;
  }
}

@media (max-width: 450px) {
  .azura_banner .landing_banner_box {
    margin-top: 90px !important;
  }

  .azura_banner {
    height: 285px !important;
  }

  .azura_banner img {
    height: 285px !important;
  }
}

@media (max-width: 430px) {
  .azura_banner {
    height: 320px !important;
  }

  .azura_banner img {
    height: 320px !important;
  }

  .azura_benefits_box .trans_small_box {
    min-height: 300px !important;
  }

  .azura_banner .landing_banner_box {
    margin-top: 100px !important;
  }
}

@media (max-width: 360px) {
  .azura_banner {
    height: 300px !important;
  }

  .azura_banner img {
    height: 300px !important;
  }

  .azura_benefits_box .trans_small_box {
    min-height: 300px !important;
  }

  .azura_banner .landing_banner_box {
    margin-top: 80px !important;
  }
}

.history_table_box {
  margin-top: 20px;
}

.history_table_box th {
  background-color: #1e2f97;
}

.history_table_box th h3 {
  padding: 0;
  font-size: 18px;
}

.history_table_box table tbody tr {
  background-color: #c8cdf5;
}

#esh_policy p {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Raleway", sans-serif;
}

@media (max-width: 575px) {
  .esr_box {
    margin-bottom: unset;
  }

  .job_panel_box {
    width: 100%;
  }
}

.webinar_text h4 {
  margin-bottom: 10px;
  color: #071e22;
}

.webinar_text,
.webinar_img_text,
.webinar_text_box p {
  color: #242424;
}

.webinar_text_box h4 {
  color: #071e22;
}

.webinar_text_box ul {
  margin-top: 10px;
}

.webinar_text_box ul li {
  line-height: 30px;
  font-size: 17px;
  font-weight: 500;
  color: #071e22;
}

.webinar_text_box ul li:first-child span {
  padding: 0 7px;
}

.webinar_text_box ul li span {
  border: 2px solid #b8b8b8;
  border-radius: 50%;
  padding: 0 6px;
  margin-right: 8px;
}

.webinar_img_text img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10%;
  margin-top: 5px;
}

.webinar_img_text {
  display: inline-flex;
  gap: 100px;
}

.webinar_img_text ul {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.webinar_img_text ul li a:hover {
  color: #676767;
}

.webinar_img_text ul li i {
  font-size: 25px;
}

.webinar_img_text h4 {
  color: #071e22;
  font-size: 20px;
}

.webinar_img_about h5 {
  font-size: 15px !important;
  font-weight: 600 !important;
}

.webinar_img_about p {
  min-width: 800px;
  text-align: justify;
}

.webinar_form_box {
  background: #45a5c1 !important;
  box-shadow: 0 -1px 10px 0 #acabab4d;
  padding: 0 0px !important;
  border-radius: 10px;
}

.webinar_form_box .row {
  margin: unset !important;
}

.webinar_form_box form {
  margin-top: -22px !important;
}

.webinar_form_box .hs-form-field span {
  display: none;
}

.webinar_form_box .hbspt-form strong {
  color: var(--white);
}

.speakers_box h3 {
  color: var(--black-bg);
  text-align: center;
  padding-bottom: 23px;
}

.featured_speakers {
  background-color: #e9f0fe;
  background-position: left bottom, right top;
  background-repeat: no-repeat;
  background-image: url(https://info.zscaler.com/rs/306-ZEJ-256/images/featuredSpeakersBgleft.svg),
    url(https://info.zscaler.com/rs/306-ZEJ-256/images/featuredSpeakersBgright.svg);
  height: auto;
  padding: 40px 0 !important;
  padding-bottom: 60px !important;
}

.featured_speakers h3 {
  text-align: center;
}

.featured_speakers .whyus_info {
  vertical-align: top !important;
  margin-top: 4px !important;
  width: calc(100% - 140px) !important;
  margin-bottom: 13px;
  position: absolute;
  right: -10px;
}

.featured_speakers .whyus_info h6 {
  color: var(--black-bg);
}

.featured_speakers .guest-details1 {
  padding-bottom: 25px;
}

.whyus_item .read-more1 {
  margin-top: -30px;
}

.whyus_item .read-more1 a {
  padding: 5px 20px;
  font-size: 13px;
  margin-top: 5px;
  background-color: unset;
  color: #0a66c2;
  padding: 0;
  text-decoration: underline;
}

.whyus_item .read-more1 a:hover {
  background-color: unset;
  color: #0a66c2;
}

.whyus_item .read-less1 {
  margin-top: -30px !important;
}

.whyus_item .read-less1 a:hover {
  background-color: unset;
  color: #0a66c2;
}

.whyus_item .read-less1 a {
  padding: 5px 20px;
  font-size: 13px;
  margin-top: 5px;
  background-color: unset;
  color: #0a66c2;
  padding: 0;
  text-decoration: underline;
}

.featured_speakers .whyus_item li .featured_speaker_1 {
  top: -7px;
}

.whyus_guest_picture {
  position: relative;
}

.whyus_guest_picture a {
  position: absolute;
  bottom: -6px;
  right: -2px;
  z-index: 1;
  padding: 0 3px !important;
  background-color: unset !important;
}

.whyus_guest_picture a i {
  color: #07b6ce;
  font-size: 24px;
}

.guest-details1 {
  padding-top: 30px !important;
}

.featured_speakers .whyus_count .whyus_item img {
  width: 135px !important;
  height: 135px !important;
  object-fit: cover !important;
}

.featured_speakers .whyus_count .whyus_item h3 {
  font-size: 22px !important;
  text-align: left;
}

.featured_speakers .whyus_count .whyus_item h5 {
  font-size: 13px;
}

.whyus_count .row {
  align-items: unset !important;
}

.featured_speakers .whyus_count h3 {
  text-align: center;
}

.register_box {
  background: #37869d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 175px;
  margin-bottom: 40px;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.register_box h3 {
  text-align: center;
  padding: 20px;
  color: var(--white);
}

.register_box p {
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 0;
}

.register_box p span {
  font-weight: 600;
}

.webinar_form_box form .row .col-12 {
  padding: 10px 30px !important;
}

.webinar_form_box form .btn_submit {
  padding: 8px 20px !important;
  border: none;
  margin-bottom: 20px;
}

.webinar_form_box select {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background-color: var(--white);
  border: solid 2px #ebebeb;
  outline: none;
  padding: 12px 15px;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}

.webinar_form_box .hs_submit .actions .large {
  background: linear-gradient(#ff9a46, #e65b18);
  color: var(--white);
  width: 308px;
  height: 59px;
  border-color: #743411;
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 35px;
  border: 1px solid #000;
  margin: 0 auto;
  margin-top: 85px;
  position: absolute;
  left: 18%;
  z-index: 1;
}

.register_save_box {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-top: 1px solid var(--white);
  text-align: center;
  max-height: 190px;
  position: relative;
  margin-top: 40px;
}

.register_save_box button {
  background: linear-gradient(#ff9a46, #e65b18);
  color: var(--white);
  width: 308px;
  height: 59px;
  border-color: #743411;
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 35px;
  border: 1px solid #000;
  display: none;
}

.register_save_box p {
  text-align: center;
  padding-top: 12px;
  line-height: 22px;
  margin-top: 105px;
  padding: 0 90px !important;
}

.register_save_left_box {
  display: block;
  background: #37869d;
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translate(0, -50%);
  height: 60px;
  width: 60px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.register_save_left_box i {
  font-size: 40px;
  color: #fff;
}

.webinar_form_text {
  padding: 20px 75px 0 0 !important;
  padding-top: 0px !important;
  /* min-height: 900px; */
}

.webinar_people_box .row .col-12 {
  width: 30%;
  margin: 0 auto;
}

.webinar_people_item {
  min-height: 1000px;
}

.webinar_people_item p {
  text-align: left;
  color: var(--black-bg);
  margin-bottom: -13px;
}

.webinar_people_item a:hover {
  color: #676767;
}

.webinar_people_item a i {
  font-size: 24px;
}

.webinar_people_box h4 {
  text-align: center;
  color: #071e22;
  font-size: 30px;
}

.webinar_people_image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 2px;
}

.webinar_people_image {
  display: inline-flex;
}

.webinar_people_image ul {
  margin-left: 10px;
  margin-bottom: 10px;
}

.webinar_people_box ul li {
  font-size: 20px;
  color: var(--black-bg);
  font-weight: 600;
}

.webinar_people_box ul li:last-child {
  font-size: 12px;
  font-weight: 600;
}

.speakers_box h3 {
  color: var(--black-bg);
  text-align: center;
}

.webinar_video .col-12:last-child {
  position: unset !important;
}

.webinar_video h3 {
  color: var(--black-bg);
  text-align: center;
  padding-bottom: 25px;
  font-size: 36px;
}

.webinar_video .video_section {
  background: #37869d;
}

.webinar_transform_wrap_box {
  padding-bottom: 0px !important;
}

.webinar_transform_wrap_box .blockHead h2 {
  line-height: 50px;
}

.webiner {
  background-color: unset !important;
  padding: 50px 0;
}

.webiner .row {
  margin-top: unset;
  align-items: baseline;
}

.webiner .row .col-12:last-child {
  position: relative;
  top: 25px;
}

.webiner .blockHead {
  margin-bottom: 20px;
}

.webiner .blockHead p {
  font-weight: 500;
}

.on_demand_bar {
  background: rgb(255 255 255 / 0.2);
  color: var(--white);
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  line-height: 21.5px;
  border-radius: 4px;
  width: 100%;
  padding: 11px 12px;
  text-align: center;
}

.on_demand_bar h6,
.on_demand_bar h1 {
  text-transform: uppercase;
}

.on_demand_text .box_top h6,
.on_demand_text .box_top h1 {
  color: var(--white);
  padding: 15px 0;
}

.on_demand_text .box_top h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 90px;
}

.on_demand_text .box_top h3 {
  padding: 15px 0px !important;
}

.on_demand_text .box_top p {
  line-height: 25px !important;
  font-family: "Raleway", sans-serif !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 115px;
  font-size: 15px !important;
  padding: 15px 0px !important;
}

.on_demand_text span {
  color: var(--white);
  font-size: 14px;
}

.upcoming_text h6 {
  padding-bottom: 0px !important;
}

.upcoming_listing_bar {
  padding-bottom: 0;
}

.upcoming_coming_soon_text {
  color: var(--white);
  margin-bottom: -40px;
  padding-top: 15px;
}

.upcoming_listing_bar h6 {
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .featured_speakers .whyus_info {
    right: -7px;
  }

  .register_box {
    height: 200px;
  }

  .featured_speakers .whyus_count .whyus_item h5 {
    line-height: 22px;
  }

  .featured_speakers .whyus_count .whyus_item h3 {
    font-size: 20px !important;
  }
}

@media (max-width: 992px) {
  .webinar_form_box form {
    margin-top: 30px !important;
  }

  .featured_speakers .whyus_info {
    /* right: unset */
  }

  .register_box p {
    text-align: center;
    /* padding: 0 10px; */
  }

  .register_save_left_box {
    display: none;
  }

  .webinar_form_text {
    padding: unset !important;
    min-height: unset;
  }

  .webinar_form_box {
    margin-top: unset;
  }

  .register_save_box p {
    padding-top: 15px !important;
  }

  .webinar_people_item {
    min-height: unset;
  }

  .webinar_people_box .row .col-12 {
    order: unset !important;
    width: unset;
  }

  .webinar_img_text {
    margin-top: 30px;
  }

  .webinar_img_about p {
    min-width: unset;
    text-align: left;
  }

  .webinar_people_box .row {
    align-items: unset;
  }

  .webinar_people_box .webinar_people_item {
    margin-bottom: 10px;
  }

  .webinar_form_box .hs_submit .actions .large {
    left: 30%;
  }

  .webinar_video .main_col:nth-child(3) {
    display: unset !important;
  }
}

@media (max-width: 575px) {
  .webiner {
    padding: 30px 0;
  }

  .webiner .blockHead h2 {
    font-size: 30px;
    padding-bottom: 0;
  }

  .register_box p {
    padding: 0px !important;
    text-align: center;
    font-size: 15px;
    line-height: 26px;
  }

  .webinar_form_text {
    order: 1;
    padding: unset !important;
    margin-top: 0;
  }

  .register_box {
    margin-top: 20px;
  }

  .register_box h3 {
    font-size: 25px;
  }

  .webinar_form_box {
    margin-top: -60px;
  }

  .webinar_form_box form {
    margin-top: -40px !important;
  }

  .webinar_form_box form .row {
    gap: 0 !important;
  }

  .register_save_left_box {
    display: none;
  }

  .webinar_img_text {
    margin-top: 20px;
  }

  .webinar_img_text p {
    margin-left: -120px !important;
  }

  .webinar_img_text ul {
    margin-left: -120px;
  }

  .webinar_people_box .row {
    margin-top: 15px;
  }

  .webinar_text {
    margin-left: unset !important;
    margin-top: 10px !important;
    padding: 0px !important;
  }

  .webiner .blockHead p {
    padding-bottom: 0px !important;
  }

  .webinar_text h4 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .webinar_text p {
    padding-bottom: 10px !important;
  }

  .webinar_text_box h4 {
    text-align: center;
    padding-top: 0;
  }

  .webinar_people_box .row .col-12 {
    width: unset;
    order: unset !important;
  }

  .webinar_people_item {
    margin-bottom: 18px;
  }

  .webinar_people_box h4 {
    padding-bottom: 20px;
  }

  .webinar_people_item {
    min-height: unset;
  }

  .webinar_img_about h3 {
    font-size: 26px;
  }

  .webinar_img_text h4 {
    font-size: 16px;
  }

  .webinar_img_about p {
    min-width: unset;
    text-align: left;
  }

  .webinar_video .main_col:nth-child(3) {
    display: unset !important;
  }

  .webinar_form_box .hs_submit .actions .large {
    left: 16%;
    margin-top: 60px;
  }

  .webiner .row {
    margin-top: 48px;
  }

  .webinar_text_box {
    margin-left: unset !important;
    margin-top: 0px !important;
    padding: 0px !important;
  }

  .featured_speakers .whyus_info {
    width: calc(100% - 145px) !important;
  }

  .webinar_transform_wrap_box .blockHead h2 {
    line-height: 33px;
    padding-bottom: 10px;
  }

  .register_box {
    height: 195px;
  }

  .featured_speakers .whyus_count .whyus_item .whyus_info {
    padding-left: 145px !important;
  }
}

@media (max-width: 540px) {
  .featured_speakers .whyus_count .whyus_item .whyus_info {
    padding-left: 10px !important;
  }
}

@media (max-width: 450px) {
  .featured_speakers .whyus_info {
    /* width: calc(100% - 145px) !important; */
    width: calc(100% - 38px) !important;
  }

  .register_box p {
    padding: 0 15px !important;
  }
}

@media (max-width: 440px) {
  .webinar_form_box .hs_submit .actions .large {
    left: 12%;
    /* margin-top: 60px; */
  }

  .featured_speakers .whyus_count .whyus_item .whyus_info {
    padding-left: 120px !important;
  }
}

@media (max-width: 430px) {
  .webinar_form_box .hs_submit .actions .large {
    left: 9%;
    margin-top: 60px;
  }

  .featured_speakers .whyus_count .whyus_item .whyus_info {
    padding-left: 120px !important;
  }
}

@media (max-width: 400px) {
  .register_box p {
    padding: 0 20px;
  }

  .webinar_img_about h3 {
    font-size: 23px;
  }

  .webinar_img_text h4 {
    font-size: 15px;
  }

  .webinar_img_about h5 {
    font-size: 11px !important;
    font-weight: 600 !important;
  }

  .webinar_form_box .hs_submit .actions .large {
    left: 7%;
  }
}

@media (max-width: 390px) {
  .webinar_form_box .hs_submit .actions .large {
    left: 3%;
  }
}

@media (max-width: 350px) {
  .register_box {
    height: 230px;
  }

  .featured_speakers .whyus_count .whyus_item .whyus_info {
    padding-left: 113px !important;
  }

  .webinar_form_box .hs_submit .actions .large {
    width: 288px;
  }
}

.sticky_band {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: rgb(0 0 0 / 0.35) 10px 0 0;
  transition: top 0.3s;
  background-color: #1e2f97;
  text-align: center;
  color: var(--white);
}

.sticky_band a {
  color: var(--white);
}

.sticky_band a:hover {
  color: var(--white);
}

.sticky_band.hidden {
  bottom: 0;
}

.sticky_band_text {
  display: inline-flex;
  gap: 180px;
}

.sticky_band_text a {
  display: block;
  background-color: #27abed;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.8px;
  border-radius: 5px;
  border: 1px solid #27abed;
  padding: 7px;
  min-width: 130px;
  height: 35px;
  text-align: center;
  transition: all 250ms ease-in-out;
  margin-top: 10px;
}

.sticky_band_text p {
  padding-bottom: 0 !important;
  margin-top: 15px;
}

.daas_sticky_band .sticky_band_text a {
  display: block;
  background-color: #27abed;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.8px;
  border-radius: 5px;
  border: 1px solid #27abed;
  padding: 8px;
  min-width: 145px;
  height: 35px;
  text-align: center;
  transition: all 250ms ease-in-out;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .daas_sticky_band .sticky_band_text p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .sticky_band {
    height: auto;
  }

  .sticky_band_text {
    display: unset;
  }

  .sticky_band_text a {
    width: unset;
    margin-bottom: 10px;
  }

  .daas_sticky_band .sticky_band_text p {
    font-size: 13px;
  }

  .daas_sticky_band .sticky_band_text a {
    min-width: unset;
    max-width: 145px;
    margin: 0 auto;
    margin-bottom: 13px;
    font-size: 14px;
  }
}

.hypervison_banner {
  height: 600px;
  background-image: linear-gradient(120deg, #1d7ba4 0%, #000733 85%);
}

.hypervison_banner::after {
  background-image: linear-gradient(150deg, #083e72, transparent);
}

.hypervison_banner img {
  height: 600px;
  filter: unset;
}

.hypervison_banner h3 {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  color: #fff200;
  padding-bottom: 30px;
}

.hypervison_banner .banner_info p {
  font-size: 18px !important;
  margin: 0 0 18px !important;
  color: #fff !important;
}

.hypervison_offer {
  height: unset;
}

.hypervison_offer h3 {
  color: #111;
  padding-top: 30px;
}

.hypervison_offer .become_partner {
  margin-top: 50px;
}

.hypervison_offer .blockHead h2 {
  padding: 15px 0px !important;
}

.hypervison_tran_box .trans_small_box ul {
  margin-left: 15px;
}

.hypervison_tran_box .trans_small_box ul li {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 10px;
  list-style: disc;
}

.hypervison_tran_box .trans_small_box {
  height: 375px;
}

.environment_box {
  overflow: auto;
  scrollbar-width: thin;
}

.environment_box tbody {
  border: unset;
}

.environment_box table tbody tr,
th,
td {
  border: solid 1px #27abed;
  padding: 10px;
  color: var(--black-bg);
  font-size: 17px;
  font-weight: 500 !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.environment_box table tbody tr th {
  border: unset;
}

.environment_box table tbody tr th h3 {
  border: none !important;
  font-size: 20px;
  font-weight: 700 !important;
  text-align: left;
}

.environment_box table tbody td h2 {
  padding-top: 12px;
  font-size: 17px;
  color: #1e2f97;
  line-height: 24px;
}

.environment_box table tbody tr td img {
  width: 100%;
  border-radius: 10px;
  min-height: 300px;
  object-fit: contain;
}

.environment_box table tbody tr td ul li {
  color: var(--black-bg);
  font-size: 15px;
  font-weight: 500;
  vertical-align: top;
  padding-bottom: 10px;
  text-align: left;
  list-style: disc;
  margin-left: 12px;
}

.benefits_box td {
  vertical-align: top !important;
  border: none;
}

.ideal_box td {
  width: 315px;
}

.ideal_box div {
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
  border: solid 2px #27abed;
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #fff;
}

.environment_service {
  vertical-align: unset;
}

.environment_service h3 {
  padding-top: 305px;
}

.environment_box table {
  border-collapse: inherit;
}

.hypervison_package {
  margin-top: 100px;
}

.hypervison_why {
  padding-top: 0 !important;
  padding-bottom: 45px !important;
}

.hypervison_why .sec_heading h4 {
  padding-top: 20px;
}

.hypervison_why .sec_heading h4 {
  margin-top: 0 !important;
}

.hypervison_why .sec_heading p {
  padding: 15px 0px !important;
}

.hypervison_about .whyus_info p {
  padding: 0 !important;
}

.hypervison_about {
  padding-bottom: 0 !important;
}

.modern_virtual_environment {
  margin-top: -25px;
}

@media (max-width: 992px) {
  .ideal_box div {
    font-size: 14px;
    width: 230px;
  }

  .environment_service h3 {
    padding-top: 305px;
  }

  .hypervison_banner .landing_banner_box .row {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .hypervison_banner {
    height: 530px !important;
  }

  .hypervison_banner img {
    height: 530px !important;
  }

  .hypervison_banner .landing_banner_box {
    margin-top: 10px !important;
  }

  .environment_box table tbody td h2 {
    font-size: 15px;
    line-height: 22px;
  }

  .environment_box table tbody tr td img {
    min-height: 170px;
  }

  .environment_service h3 {
    padding-top: 180px;
    font-size: 15px;
    line-height: 22px;
  }

  .environment_box table tbody tr th h3 {
    font-size: 15px;
  }

  .ideal_box div {
    font-size: 10px;
    width: 180px;
  }

  .environment_box table tbody tr td ul li {
    font-size: 12px;
  }

  .hypervison_package {
    margin-top: unset;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 20px;
  }

  .hypervison_footer {
    height: unset !important;
  }
}

@media (max-width: 550px) {
  .hypervison_banner {
    height: 455px !important;
  }

  .hypervison_banner img {
    height: 455px !important;
  }

  .hypervison_banner .landing_banner_box {
    margin-top: 13px;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 40px;
  }
}

@media (max-width: 440px) {
  .hypervison_banner .landing_banner_box {
    margin-left: unset !important;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 10px;
  }
}

@media (max-width: 430px) {
  .hypervison_banner .landing_banner_box {
    margin-top: 13px;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 20px;
  }
}

@media (max-width: 400px) {
  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 10px;
  }
}

@media (max-width: 380px) {
  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 20px;
  }
}

@media (max-width: 360px) {
  .hypervison_banner {
    height: 500px !important;
  }

  .hypervison_banner img {
    height: 500px !important;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: 5px;
  }
}

@media (max-width: 350px) {
  .hypervison_banner .landing_banner_box {
    margin-top: 20px;
  }

  .hypervison_banner .banner_inner .banner_info h2 {
    font-size: 33px !important;
  }

  .hypervison_brand [id^="gartner-pi-widget"] {
    margin-left: -2px;
  }
}

.hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
  justify-content: left;
}

.hs-form-booleancheckbox-display .hs-input {
  width: 2% !important;
  margin-top: 3px;
}

.hs-form-booleancheckbox-display span {
  width: 98% !important;
  margin-left: 10px !important;
}

.hs-form-booleancheckbox-display .hs-input {
  height: 20px;
}

.hbspt-form .hs-richtext p a {
  color: #1e2f97;
}

.hbspt-form .hs-richtext p a:hover {
  color: #27abed;
}

@media (max-width: 575px) {
  .hs-form-booleancheckbox-display {
    margin-top: 10px;
  }

  .hs-form-booleancheckbox-display .hs-input {
    width: 4% !important;
    margin-top: 3px;
  }
}

.test_drive_cta {
  margin-left: 56%;
}

.test_daas_box {
  background: #f3f3f5;
}

.test_daas_box .trans_small_box {
  min-height: 300px !important;
}

.test_daas_box .trans_small_box h4 {
  min-height: 55px !important;
}

.test_about .whyus_item .whyus_info p {
  padding-top: 0 !important;
}

.test_webinar .blockHead {
  margin-bottom: 50px;
}

.test_webinar .blockHead h2 {
  font-size: 35px !important;
}

.test_webinar .register_box {
  height: unset;
}

.test_webinar .webinar_text img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.test_from_text {
  min-height: auto;
}

.test_from_text .webinar_text h4 {
  padding-top: 10px;
}

.test_from_text .webinar_text p a {
  color: #1e2f97;
}

.test_btn_box button {
  background: linear-gradient(#ff9a46, #e65b18);
  color: var(--white);
  width: 308px;
  height: 59px;
  border-color: #743411;
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 35px;
  border: 1px solid #000 !important;
  margin: 0 auto;
}

.test_webinar .row {
  align-items: normal;
}

.test_webinar .row .col-12:first-child .emp_content {
  padding-top: 0 !important;
}

.test_btn_box {
  margin-bottom: 15px;
}

.test_drive_small_box .trans_small_box h4 {
  font-size: 18px !important;
  margin-bottom: 5px !important;
  min-height: 20px !important;
}

.test_drive_small_box .trans_small_box {
  min-height: 230px !important;
}

.test_drive_brand {
  padding: 60px 0 !important;
  padding-bottom: 45px !important;
}

@media (max-width: 1400px) {
  .test_drive_small_box .trans_small_box {
    min-height: 260px !important;
  }
}

@media (max-width: 992px) {
  .test_about img {
    max-width: unset !important;
  }

  .test_slider img {
    max-width: 98px;
  }

  .landing_footer {
    height: 395px;
  }

  .landing-footer .footer_bottom .f_social {
    margin-top: 50px;
  }

  .test_drive_web .hbspt-form fieldset {
    max-width: unset !important;
  }

  .test_drive_web .hbspt-form fieldset .hs_select_country .hs-input {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .test_daas_box {
    margin-bottom: unset;
  }

  .test_drive_cta {
    margin-left: -60%;
  }

  .test_drive_cta .emerge_menu_btn {
    display: none !important;
  }

  .test_webinar .webinar_text img {
    height: unset !important;
    margin-top: 10px !important;
  }

  .landing_footer {
    height: unset;
  }

  .test_drive_inner .emerge_menu_cta2 {
    margin-left: -80px;
  }
}

@media (max-width: 390px) {
  .test_btn_box .btn_submit {
    width: 100%;
  }

  /* .test_drive_cta {
        margin-left: -%
    } */
}

.it_infa_box ul {
  display: grid !important;
}

.it_infa_box ul li {
  display: unset !important;
  position: unset !important;
  font-size: 13px !important;
  line-height: unset !important;
  background-color: unset !important;
  padding: unset !important;
}

.it_infa_box ul li:hover {
  color: #fff !important;
}

.it_infra_banner .banner_info {
  padding-top: 0px !important;
}

.it_infra_banner .banner_info p {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.it_infa_box a {
  font-size: 15px;
  font-weight: 600;
  background-color: #27abec;
  color: #fff;
  display: inline-block;
  margin-top: 35px;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 250ms ease-in-out;
}

.it_infa_box a:hover {
  background-color: #fff;
  color: #1e2f97;
}

.it_infa_box ul li::before {
  display: none;
}

.it_infra_service figure img {
  width: 100%;
}

.it_infra_platform_section .com_card p {
  min-height: 255px !important;
}

.it_infra_why_us .choose_img_text {
  display: -webkit-box !important;
  max-height: 95px;
}

.it_infra_why_us .sec_heading p {
  color: #fff;
}

.it_infra_schedule .sch_info p {
  color: #fff;
}

.it_infra_schedule .sch_info h3 {
  max-width: 600px !important;
}

.it_infra_brand a img {
  height: 100px !important;
  width: 60% !important;
  margin-top: 12px;
}

.it_infra_platform_wrap .dw_item figure img {
  object-fit: cover;
  object-position: top;
}

.it_infra_platform_wrap .dw_item .dw_con h3 {
  font-weight: 600 !important;
}

.it_infra_platform_wrap .dw_item .dw_con p {
  min-height: 200px !important;
}

.it_infra_managed_banner .it_infra_test_box ul {
  padding-top: 15px;
}

.it_infra_managed_banner .it_infra_test_box ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
}

.it_infra_managed_banner .it_infra_test_box ul li i {
  color: #1e2f97;
  font-size: 20px;
}

.it_infra_web_box .register_box h3 {
  font-size: 23px !important;
}

.it_infra_web_box .hs-form-field .hs-field-desc {
  display: none !important;
}

.it_infra_web_box .hs-form-radio label {
  display: none !important;
}

.it_infra_web_box .hs-richtext p {
  color: var(--white) !important;
}

.it_infra_web_box .hs-richtext p a {
  color: #1e2f97 !important;
  font-weight: 500 !important;
}

.it_infra_web_box .hs_submit .actions .large {
  margin-top: unset;
}

.it_infra_web_box {
  min-height: 670px;
}

.it_infra_web_box .hs-input {
  width: 100% !important;
}

.it_infra_why_us .platform_subheading {
  margin-top: 45px;
}

.it_infra_why_us .platform_subheading h4 {
  color: #fff;
}

.it_infra_why_us .choose_img_text h4 {
  letter-spacing: unset;
}

.it_infra_why_us .it_trans_small_box {
  display: flex;
  gap: 20px;
  min-height: 400px !important;
}

.it_infra_why_us .it_trans_small_box h4 {
  color: #fff;
}

.it_infra_why_us .it_trans_small_box .it_trans_small_text p {
  min-height: 250px;
}

.it_infra_why_us .it_trans_small_box .it_trans_small_text a {
  color: #ffffff !important;
}

.it_infra_why_us .it_trans_small_box .it_trans_small_text a::before {
  background-color: #27abed !important;
}

.it_infra_marq_slider img {
  width: 150px !important;
  height: 50px;
  margin-right: 93px;
  object-fit: scale-down;
  margin-bottom: 15px;
}

.it_infra_marq_slider img:last-child {
  margin-right: unset;
}

@media (max-width: 1920px) {
  .it_why_us_small {
    min-height: 505px !important;
  }
}

@media (max-width: 1024px) {
  .it_infra_why_us .trans_small_box {
    min-height: 600px !important;
  }

  .it_infra_why_us .choose_img_text h4 {
    font-size: 16px !important;
    margin-right: 28px;
  }

  .it_infra_web_box {
    min-height: 725px;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 10%;
  }

  .it_infra_schedule .sch_info p {
    z-index: 1;
    position: relative;
  }

  .it_infra_marq_slider img {
    width: 172px !important;
    margin-right: 10px !important;
  }

  .it_infra_why_us .it_trans_small_box {
    display: block;
    min-height: 500px !important;
  }
}

@media (max-width: 992px) {
  .it_infra_banner {
    height: auto !important;
    background-size: cover !important;
  }

  .it_infra_web_box fieldset {
    max-width: unset !important;
  }

  .it_infra_web_box form {
    margin-top: -8px !important;
  }

  .it_infra_marq_slider img {
    width: 100px !important;
    margin-right: 63px;
  }

  .it_infra_why_us .it_trans_small_box {
    display: block;
  }
}

@media (max-width: 912px) {
  .it_infra_web_box .hs_submit .actions .large {
    left: 33%;
    margin-top: 40px;
  }

  .it_infra_why_us .trans_small_box {
    min-height: 360px !important;
  }

  .it_infra_why_us .trans_small_box p {
    min-height: 245px !important;
  }

  .it_infra_marq_slider img {
    width: 158px !important;
    margin-right: 15px !important;
  }
}

@media (max-width: 860px) {
  .it_infra_why_us .it_trans_small_box {
    max-height: 530px !important;
  }

  .it_infra_why_us .it_trans_small_box .it_trans_small_text p {
    min-height: 280px !important;
  }

  .it_infra_marq_slider img {
    width: 148px !important;
    margin-right: 10px !important;
  }
}

@media (max-width: 820px) {
  .it_infra_marq_slider img {
    width: 136px !important;
    margin-right: 15px !important;
  }

  .it_infra_why_us .trans_small_box {
    min-height: 465px !important;
  }

  .it_infra_why_us .trans_small_box {
    min-height: 520px !important;
  }
}

@media (max-width: 768px) {
  .it_infra_banner {
    height: auto !important;
    background-size: cover !important;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 30% !important;
    margin-top: 40px;
  }

  .it_infra_why_us .trans_small_box {
    min-height: 550px !important;
  }

  .it_infra_marq_slider img {
    width: 129px !important;
    margin-right: 15px !important;
  }
}

@media (max-width: 575px) {
  .it_infra_banner {
    height: auto !important;
  }

  .it_infra_why_us .trans_small_box {
    max-height: 570px !important;
  }

  .it_infra_service {
    margin-bottom: 0;
  }

  .it_infra_web_box {
    padding-top: 0 !important;
    padding-bottom: 75px !important;
    margin-bottom: 20px;
  }

  .it_infra_why_us .it_trans_small_box {
    display: block;
  }

  .it_infra_marq_slider .it_partner_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 48px !important;
    height: 40px;
    margin-right: 10px;
    margin-top: 0;
  }

  .it_infra_why_us .choose_img_text h4 {
    margin-right: 22px;
  }

  .it_infra_why_us .it_why_us_small {
    min-height: 485px !important;
  }

  .it_infra_why_us .it_trans_small_box .it_trans_small_text p {
    min-height: 330px;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 9% !important;
  }

  .it_infra_reco {
    padding-bottom: 45px !important;
    padding-top: 45px !important;
  }
}

@media (max-width: 540px) {
  .it_infra_marq_slider .it_partner_box img {
    width: 68px !important;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 17% !important;
    margin-top: 0;
  }
}

@media (max-width: 450px) {
  .it_infra_web_box .hs_submit .actions .large {
    left: 11% !important;
    margin-top: 0;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 52px !important;
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .it_infra_web_box .hs_submit .actions .large {
    left: 9% !important;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 49px !important;
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .it_infra_web_box .hs_submit .actions .large {
    left: 7% !important;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 40px !important;
  }
}

@media (max-width: 390px) {
  .it_infra_marq_slider .it_partner_box {
    gap: 12px;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 5% !important;
  }
}

@media (max-width: 360px) {
  .it_infra_marq_slider .it_partner_box {
    gap: 9px;
  }

  .it_infra_web_box .hs_submit .actions .large {
    left: 3% !important;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 43px !important;
    margin-top: 0;
  }

  .it_infra_why_us .it_trans_small_box {
    max-height: 615px !important;
  }
}

@media (max-width: 350px) {
  .it_infra_web_box .hs_submit .actions .large {
    left: 3% !important;
    margin-top: 0;
    width: 290px;
  }

  .it_infra_marq_slider .it_partner_box img {
    width: 40px !important;
    margin-top: 0;
  }

  .it_infra_why_us .trans_small_box {
    max-height: 650px !important;
  }
}

.hs-form-booleancheckbox-display label {
  display: inline-flex !important;
}

.hs-form-76d6c9d2-3df8-4105-9ebe-1da7b5cc462b_f3b78453-1ea0-4eb9-8bc1-df676fa963a9
  .hs-form-field
  label:not(.hs-error-msg) {
  display: inline-flex !important;
}

.trail_thank_you {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin: 25px 0;
  font-weight: 600;
  line-height: 35px;
}

@media (min-width: 375px) {
  .trail_thank_you {
    font-size: 20px;
    margin: unset;
  }
}

.omnissa_banner {
  background-image: linear-gradient(95deg, #0096cf, #fff0),
    url(https://www.anunta.com/wp-content/uploads/2024/07/anunta-omnissa-partnership.jpg);
  height: 475px;
}

.omnissa_banner .omnissa_logo_top {
  width: 13%;
  position: absolute;
  top: 3%;
  left: 11%;
}

.omnissa_banner .omnissa_logo_bottom {
  width: 13%;
  position: absolute;
  left: 11.5%;
  bottom: 1%;
}

.omnissa_why_box .sec_heading p {
  color: var(--white);
  padding-top: 15px;
}

.omnissa_why_box .trans_small_box p {
  min-height: 100px !important;
}

.omnissa_why_box .trans_small_box {
  min-height: unset !important;
}

.omnissa_key_features_box .desktop_emp_content ul li {
  margin-top: unset;
}

.omnissa_key_features_box .desktop_emp_content ul li img {
  width: 2.5%;
}

.omnissa_solutions_box .omnissa_main_col .trans_small_box {
  min-height: 360px;
}

.omnissa_solutions_box .blockHead h6 {
  font-weight: 500;
  font-size: 20px;
  color: var(--black-bg);
  line-height: 27px;
}

.omnissa_schedule_box .sch_inner .sch_info p {
  color: var(--white);
}

.omnissa_blog {
  text-align: unset !important;
  padding: unset;
  padding-bottom: unset;
}

.omnissa_blog .blog-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.omnissa_blog .blog {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
  overflow: hidden;
  flex: 1 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
}

.omnissa_blog .blog:hover {
  box-shadow: 0 3px 20px rgb(0 0 0 / 20%);
}

.omnissa_blog .blog-image {
  position: relative;
}

.omnissa_blog .blog-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.omnissa_blog .blog-image img:hover {
  transform: scale(1.05);
}

.omnissa_blog .blog-image .date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgb(0 0 0 / 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.omnissa_blog .blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.omnissa_blog .blog-content h2 {
  color: #1e2f97;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 95px;
}

.omnissa_blog_row .blog .blog-image img {
  height: 236px;
}

.omnissa_blog .blog-content p {
  flex-grow: 1;
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 27.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  height: 142px;
}

.omnissa_blog .blog-content a {
  align-self: flex-start;
  background-color: #1e2f97;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.omnissa_blog .blog-content a:hover {
  background-color: #27abed;
  border-color: #27abed;
}

.omnissa_key_features_box .blockHead p {
  font-weight: 500;
  padding-top: 15px;
  width: 1180px;
  margin: 0 auto;
}

.omnissa_blog .sec_heading h3 {
  color: var(--black-bg) !important;
}

.omnissa_key_features_box_demo .desktop_emp_content ul li img {
  width: 10%;
}

.omnissa_key_features_box_demo .desktop_emp_content ul li {
  align-items: start;
  gap: 5px;
}

.omnissa_key_features_box_demo .desktop_emp_content ul li p {
  margin-top: -15px;
}

.omnissa_bloglist {
  background: var(--white) !important;
}

.omnissa_bloglist::before {
  background: unset !important;
}

.omnissa_solutions_box .omnissa_main_col .trans_small_box img {
  width: 65px;
  height: 65px;
}

.omnissa_why_wrap_box .choose_img_text {
  display: flex;
  align-items: center;
  min-height: 125px;
}

.omnissa_why_wrap_box .choose_img_box {
  height: 70px !important;
  background-color: #4eb6e3;
  text-align: center !important;
  padding: 15px !important;
  border-radius: 50% !important;
  margin-top: -18px !important;
  margin-bottom: unset !important;
}

.omnissa_why_wrap_box .trans_small_box img {
  width: 45px !important;
  height: 45px !important;
  object-position: center !important;
  margin-top: -2px !important;
  margin-left: -3px !important;
}

.omnissa_why_wrap_box .trans_small_box p {
  min-height: 115px !important;
}

.download_flyer_schedule .sch_inner .sch_info h3 {
  max-width: 850px !important;
}

@media (max-width: 1920px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 18.8%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 18.5%;
  }
}

@media (max-width: 1720px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 14.9%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 14.7%;
  }
}

@media (max-width: 1550px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 11.6%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 10.8%;
  }
}

@media (max-width: 1400px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 7.7%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 7.2%;
  }
}

@media (max-width: 1300px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 1.7%;
    bottom: 9%;
  }

  .omnissa_banner {
    padding-top: 0;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 4.1%;
    top: 3%;
  }

  .omnissa_banner {
    height: unset;
  }

  .omnissa_banner .banner_info {
    margin-top: 25px;
  }

  .omnissa_key_features_box .blockHead p {
    width: unset;
  }
}

@media (max-width: 1024px) {
  .omnissa_solutions_box .omnissa_main_col .trans_small_box {
    min-height: 470px;
  }

  .omnissa_banner {
    height: 500px;
    padding-top: 0;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 3%;
    bottom: 2%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 2.3%;
    top: 5%;
  }

  .omnissa_banner .banner_img {
    height: unset;
  }

  .omnissa_banner {
    height: unset;
  }

  .omnissa_why_wrap_box .trans_small_box h4 {
    font-size: 16px !important;
  }
}

@media (max-width: 992px) {
  .omnissa_why_wrap_box .choose_img_text h4 {
    min-height: 100% !important;
  }

  .omnissa_banner {
    height: unset;
    background-size: cover;
  }

  .omnissa_why_box .choose_img_text {
    width: 375px;
  }

  .omnissa_why_box .choose_img_text h4 {
    min-height: 115px;
  }

  .omnissa_solutions_box .omnissa_main_col .trans_small_box {
    min-height: 330px;
  }

  .omnissa_blog .home_slick_list .slick-next::before {
    color: #000;
  }

  .omnissa_blog .home_slick_list .slick-prev::before {
    color: #000;
  }

  .omnissa_blog .blog-row {
    padding: unset;
  }

  .omnissa_why_box .trans_small_box {
    min-height: 300px !important;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 1%;
    bottom: 3%;
  }
}

@media (max-width: 930px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 0.3%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 0.2%;
  }
}

@media (max-width: 860px) {
  .omnissa_banner .omnissa_logo_top {
    left: 0.5%;
  }
}

@media (max-width: 850px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 1.1%;
  }
}

@media (max-width: 768px) {
  .omnissa_solutions_box .omnissa_main_col .trans_small_box {
    min-height: 340px;
  }

  .omnissa_banner {
    padding-top: unset;
    background-size: cover;
    background-position: 55% !important;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 1%;
    bottom: 3%;
  }

  .omnissa_banner .banner_img {
    height: unset;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 0.5%;
    top: 3%;
  }

  .omnissa_banner .banner_info {
    margin-top: unset;
  }

  .omnissa_why_wrap_box .choose_img_text h4 {
    width: 265px;
  }
}

@media (max-width: 575px) {
  .omnissa_banner {
    background-position: 70% !important;
    height: unset !important;
  }

  .omnissa_banner .banner_info h1 {
    font-size: 40px;
  }

  .omnissa_banner .omnissa_logo_top {
    width: 25%;
    position: absolute;
    right: 6%;
    top: 4%;
  }

  .omnissa_banner .banner_info {
    margin-top: 25px;
  }

  .omnissa_why_wrap_box .choose_img_text h4 {
    min-height: 100% !important;
  }

  .omnissa_banner .omnissa_logo_bottom {
    width: 25%;
    position: absolute;
    left: 2%;
    bottom: 0%;
  }

  .omnissa_blog .home_slick_list .slick-next {
    right: -5px;
  }

  .omnissa_blog .home_slick_list .slick-prev {
    left: -2px;
  }

  .omnissa_blog .home_slick_list .slick-next::before {
    color: #000;
  }

  .omnissa_blog .home_slick_list .slick-prev::before {
    color: #000;
  }

  .omnissa_solutions_box .omnissa_main_col .trans_small_box {
    min-height: 285px;
  }

  .choose_wrap .choose_img_text {
    width: 370px;
  }
}

@media (max-width: 550px) {
  .omnissa_blog .home_slick_list .slick-next {
    right: -35px;
  }

  .omnissa_blog .home_slick_list .slick-prev {
    left: -35px;
  }

  .omnissa_banner {
    padding-top: 35px;
  }

  .omnissa_banner .banner_img {
    height: unset;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 3.5%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 3.1%;
    top: 2%;
  }
}

@media (max-width: 450px) {
  .omnissa_banner {
    height: 490px;
    padding-top: 40px;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 1.8%;
    bottom: 4%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 0.8%;
  }
}

@media (max-width: 420px) {
  .omnissa_banner {
    height: 560px;
    padding-top: 40px;
  }

  .omnissa_banner .omnissa_logo_bottom {
    left: 1.6%;
    bottom: 0%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 0.8%;
    top: 3%;
  }
}

@media (max-width: 400px) {
  .omnissa_banner {
    height: 610px;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 1.5%;
  }

  .omnissa_why_wrap_box .choose_img_text h4 {
    width: 190px;
  }
}

@media (max-width: 370px) {
  .omnissa_banner {
    height: 618px;
  }
}

@media (max-width: 350px) {
  .omnissa_banner .omnissa_logo_bottom {
    left: 1.5%;
  }

  .omnissa_banner .omnissa_logo_top {
    left: 1.5%;
    top: 3%;
  }
}

.download_flyer_solutions {
  border: 2px solid #fff;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-top: 50px;
  padding: 18px 30px;
  border-radius: 5px;
  transition: all 250ms ease-in-out;
  background-color: unset !important;
  margin-right: 30px;
}

.download_flyer_solutions:hover {
  background-color: #27abec !important;
  color: #fff !important;
  border: 2px solid #27abec !important;
}

.download_flyer_schedule .sch_inner img {
  bottom: -54px !important;
  width: 395px !important;
}

@media (max-width: 1024px) {
  .download_flyer_schedule .sch_inner img {
    position: relative !important;
    right: auto;
    display: block;
    margin: 0 auto !important;
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 820px) {
  .download_flyer_schedule .sch_inner img {
    position: relative !important;
    right: auto;
    display: block;
    margin: 0 auto !important;
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .download_flyer_schedule .sch_inner img {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .download_flyer_schedule .sch_inner img {
    bottom: -54px !important;
    width: 100% !important;
  }

  .new_download_box .new_schedule_btn {
    padding: 14px 31px !important;
    margin-top: 25px !important;
  }
}

.jdl_row .ts-row .col-9 {
  margin-top: 25px;
}

.jdl_row .ts-row .col-9 h5 {
  font-size: 17px;
}

.refreshed_date_box {
  background-color: #001278 !important;
}

.speaker_name {
  padding-bottom: 40px;
}

.featured_video_title {
  font-size: 26px !important;
}

.featured_speaker_title {
  padding: unset;
  color: #071e22;
  padding-top: 15px;
}

.webinar_empower_transform_box {
  margin-bottom: 30px;
}

.webinar_new_item .whyus_guest_picture img {
  width: 135px !important;
  height: 135px !important;
  object-fit: cover !important;
  border-radius: 5px;
}

.webinar_new_item .whyus_info h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #1e2f97;
  margin: 0;
  margin-bottom: 5px;
  transition: all 300ms ease-in-out;
}

.webinar_new_item .whyus_info h5 {
  font-size: 13px;
}

.webinar_new_item .whyus_info h6 {
  color: var(--black-bg);
}
.webinar_new_item .whyus_info a {
  color: #07b6ce;
  font-size: 24px;
}

.webinar_new_item .whyus_info {
  margin-left: 10px;
}

.webinar_new_item .guest-details1 {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  color: #242424;
  margin: 0;
}

.webinar_new_item .whyus_item .read-more1 a {
  font-weight: 500 !important;
  color: #0a66c2;
}

.guest_profile_image {
  background-color: #fff;
  border-radius: 6px;
}

.guest_profile_image img {
  border-radius: 100px !important;
  padding: 5px !important;
}

.guest_profile_image a {
  left: -2px;
  bottom: 4px;
}

/*----------------------- dekati-page---------------------> */

.dekati_banner {
  /* background-image: linear-gradient(95deg, #0096cf, #fff0), url(https://www.anunta.com/wp-content/uploads/2024/10/anuntas_dekati_banner.jpeg); */
  background-image: linear-gradient(95deg, #0096cf, #fff0),
    url(https://www.anunta.com/wp-content/uploads/2024/10/anuntas_dekati_banner.jpeg);
  height: 515px;
  /* background-position: center 80%; */
  background-position: center 95%;
}

.dekati_banner .dekati_container .col-lg-12 {
  padding: 0px 32px;
}

.dekati_banner .omnissa_logo_top {
  position: unset !important;
}

.dekati_banner .banner_info {
  padding: 25px 0;
}

.dekati_transform_box {
  padding-top: 45px;
}

.dekati_transform_box .blockHead h2 span {
  font-size: 30px;
}

.dekati_transform_box .blockHead {
  margin-bottom: 0px;
}

.dekati_transform_box .row {
  margin-top: 0px;
}

.dekati_why_wrap_box .trans_small_box {
  min-height: 490px !important;
  max-height: unset !important;
}

.dekati_banner .banner_info h1 {
  font-size: 45px;
}

.dekati_platform_wrap .blockHead p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #242424;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.dekati_platform_wrap .trans_small_box {
  padding: 20px;
}

.dekati_platform_wrap .trans_small_box p {
  min-height: 205px !important;
}

.dekati_solutions_box .dekati_main_col .trans_small_box {
  min-height: auto;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.dekati_solutions_box .dekati_main_col .trans_small_box p {
  min-height: unset;
}

.dekati_solutions_box .trans_small_box p {
  font-size: 18px;
  font-weight: 600;
}

.dekati_solutions_box .dekati_main_col .trans_small_box img {
  width: 55px;
  height: 55px;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

.dekati_solutions_box .trans_small_box {
  padding: 16px;
  width: -webkit-fill-available;
  height: 100%;
}

.dekati_tailor_wrap {
  background-color: #edeff357;
}

.dekati_tailor_wrap .dw_item .dw_con {
  min-height: 290px !important;
}

.dekati_tailor_wrap .dw_item .dw_con P {
  min-height: unset !important;
}

.dekati_technology_partners {
  padding: 30px 0 !important;
}

@media (max-width: 1280px) {
  .dekati_banner .dekati_container .col-lg-12 {
    padding: 15px 32px 0;
  }
}

@media (max-width: 1024px) {
  .dekati_banner .dekati_container .col-lg-12 {
    padding: 20px 32px 0;
  }

  .dekati_tailor_wrap .dw_item .dw_con {
    padding: 10px !important;
  }

  .dekati_platform_wrap .dev_sol_box {
    min-height: 415px !important;
  }

  .dekati_solutions_box .trans_small_box p {
    font-size: 15px;
  }

  .dekati_solutions_box .trans_small_box {
    padding: 7px;
  }

  .dekati_banner {
    height: 470px;
    background-position: center 100%;
  }

  .dekati_schedule_wrap .sch_inner .sch_info p {
    max-width: 595px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .dekati_why_wrap_box .main_row .main_col:nth-child(4) {
    display: unset !important;
  }

  .dekati_why_wrap_box .trans_small_box {
    min-height: 570px !important;
    max-height: unset !important;
  }

  .dekati_banner {
    height: 425px;
    background-position: center 100% !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con {
    padding: 14px !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con h3 {
    font-size: 22px !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con p {
    min-height: 195px !important;
  }

  .dekati_tailor_wrap {
    padding-bottom: 0px;
  }

  .dekati_transform_box .row .col-12:first-child .emp_content {
    margin-top: 0px;
    padding: 0;
    margin-left: 0px;
  }

  .dekati_transform_box .blockHead h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .dekati_transform_box .blockHead h2 span {
    font-size: 30px;
  }

  .dekati_platform_wrap .blockHead h2 {
    font-size: 34px;
  }

  .dekati_platform_wrap .blockHead h2 span {
    font-size: 30px;
  }

  .dekati_solutions_box .blockHead h2 {
    font-size: 34px;
  }

  .dekati_solutions_box .blockHead h2 span {
    font-size: 34px;
  }

  .dekati_partner::before {
    display: none;
  }

  .dekati_schedule_wrap .sch_inner .sch_info p {
    max-width: 480px;
  }

  /* home_baner_css */
  .home_custom_banner .main_banner_home .banner_info h1 {
    font-size: 30px !important;
  }

  .home_custom_banner .main_banner_home .banner_sub_heading {
    font-size: 22px !important;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .dekati_banner .dekati_container .col-lg-12 {
    padding: 15px 0px 0px;
  }

  .dekati_banner {
    height: 425px;
    background-position: center 100% !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con {
    padding: 14px !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con h3 {
    font-size: 22px !important;
  }

  .dekati_tailor_wrap .dw_item .dw_con p {
    min-height: 195px !important;
  }

  .dekati_tailor_wrap {
    padding-bottom: 0px;
  }

  .dekati_transform_box .row .col-12:first-child .emp_content {
    margin-top: 0px;
    padding: 0;
    margin-left: 0px;
  }

  .dekati_transform_box .blockHead h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .dekati_transform_box .blockHead h2 span {
    font-size: 30px;
  }

  .dekati_platform_wrap .blockHead h2 {
    font-size: 34px;
  }

  .dekati_platform_wrap .blockHead h2 span {
    font-size: 30px;
  }

  .dekati_solutions_box .blockHead h2 {
    font-size: 34px;
  }

  .dekati_solutions_box .blockHead h2 span {
    font-size: 34px;
  }

  .dekati_partner::before {
    display: none;
  }

  .dekati_schedule_wrap .sch_inner .sch_info p {
    max-width: 480px;
  }

  /* home_baner_css */
  .home_custom_banner .main_banner_home .banner_info h1 {
    font-size: 30px !important;
  }

  .home_custom_banner .main_banner_home .banner_sub_heading {
    font-size: 22px !important;
    max-width: 480px;
  }
}

@media (max-width: 575px) {
  .profile_info h3 {
    line-height: 24.5px;
  }
  .dekati_why_wrap_box .trans_small_box {
    min-height: 490px !important;
    max-height: unset !important;
  }

  .dekati_banner .dekati_container .col-lg-12 {
    padding: 0px 15px;
  }

  .dekati_banner .banner_info {
    padding: 0px 15px 24px 15px;
  }

  .dekati_banner .banner_info h1 {
    font-size: 34px;
  }

  .dekati_transform_box {
    padding-top: 0px;
  }

  .dekati_transform_box .blockHead h2 {
    font-size: 32px;
    padding-bottom: 15px !important;
  }

  .dekati_transform_box .blockHead h2 span {
    font-size: 28px;
  }

  .dekati_platform_wrap .blockHead p {
    margin-top: 0px;
  }

  .dekati_platform_wrap .blockHead h2 {
    padding-bottom: 15px !important;
  }

  .dekati_platform_wrap .blockHead h2 {
    font-size: 32px;
  }

  .dekati_platform_wrap .blockHead h2 span {
    font-size: 28px;
  }

  .dekati_solutions_box .blockHead h2 {
    font-size: 32px;
  }

  .dekati_solutions_box .blockHead h2 span {
    font-size: 32px;
  }

  .dekati_tailor_wrap .sec_heading h3 {
    font-size: 32px;
  }

  .dekati_tailor_wrap .sec_heading h3 span {
    font-size: 32px;
  }

  .dekati_transform_box .row .col-12:first-child .emp_content {
    padding: 0;
    margin-top: 0;
  }
  .csp_wrap .csp_inner .post_box table {
    display: block;
    overflow-x: scroll;
  }

  /* home_banner_custom */

  .home_custom_banner .main_banner_home {
    background-position: -95px;
  }

  .home_custom_banner .main_banner_home .banner_info h1 {
    font-size: 26px !important;
    max-width: 100%;
  }

  .home_custom_banner .main_banner_home .banner_info .banner_sub_heading {
    font-size: 20px !important;
    max-width: 100%;
  }
  .home_custom_banner .main_banner_home .banner_info h1 br,
  .home_custom_banner .main_banner_home .banner_info .banner_sub_heading br,
  .HomeSliderWarp .bx-wrapper .bx-controls-direction {
    display: none !important;
  }
  .HomeSliderWarp .bx-wrapper .bx-pager {
    bottom: 5px !important;
  }

  .home_custom_banner .main_banner_home .banner_info {
    padding: 30px 0 !important;
  }
}

/*----------------------- end-dekati-page---------------------> */

/*----------------------- solarwinds-page---------------------> */
.solarwinds_banner {
  background-image: linear-gradient(95deg, #0096cf, #fff0),
    url(https://www.anunta.com/wp-content/uploads/2025/03/solarwinds-banner.png);
  height: 515px;
  background-position: center 95%;
}
