@charset "UTF-8";
header {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: auto;
  z-index: 999 !important;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
header.scrolled {
  background-color: #0082c9;
  box-shadow: 4px 9px 80px 0px rgba(29, 43, 91, 0.14);
  -webkit-box-shadow: 4px 9px 80px 0px rgba(29, 43, 91, 0.14);
}
header.active {
  background-color: #30B6FF;
  bottom: 0px;
}
header.active .container {
  height: 100vh;
  overflow-y: scroll !important;
}
header .header-holder {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .header-holder .logo-holder {
  flex: 0 0 88px;
  max-width: 88px;
}
header .header-holder .logo-holder img {
  max-width: 88px;
  max-height: 58px;
  width: auto;
  height: auto;
}
header .header-holder .phone-menu {
  border: none;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  background-color: transparent;
}
header .header-holder .phone-menu.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}
header .header-holder .phone-menu.change .bar2 {
  opacity: 0;
}
header .header-holder .phone-menu.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
header .header-holder .phone-menu .bar1,
header .header-holder .phone-menu .bar2,
header .header-holder .phone-menu .bar3 {
  width: 31px;
  height: 3px;
  background-color: #fff;
  margin: 7px 0;
  transition: 0.4s;
}
header .header-holder .header-items {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-holder .header-items #menu-primary-menu-container {
  flex: 1;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li {
  position: relative;
  padding: 16px 0px;
  margin: 0px 8px;
  display: inline-block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li:not(.nav-btn) > a {
  padding: 16px 12px;
  border-radius: 27px;
  -webkit-border-radius: 27px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li:not(.nav-btn) > a:focus {
  outline: none;
  border: 2px solid #fff;
  padding: 14px 10px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li.nav-btn > a {
  background-color: #fff;
  color: #30B6FF;
  padding: 16px 20px;
  border-radius: 27px;
  -webkit-border-radius: 27px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li.nav-btn > a:focus {
  border: 2px solid black;
  padding: 14px 18px;
  outline: none;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li.menu-item-has-children:hover .sub-menu {
  display: block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li.menu-item-has-children.menu-item-has-children.open .sub-menu {
  display: block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  display: inline-block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li a:hover {
  opacity: 0.7;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu {
  display: none;
  padding: 10px;
  margin: 0px;
  list-style: none;
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  top: 100%;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  width: 0px;
  height: 0px;
  border-top: 7px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 7px solid #fff;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li {
  padding: 0px;
  margin: 0px 0px 10px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li:last-child {
  margin: 0;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a {
  padding: 5px;
  width: 100%;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: rgba(12, 7, 38, 0.7);
  font-size: 16px;
  font-weight: 400;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a:hover {
  color: #0082c9;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a:focus {
  box-shadow: 0 0 0 2px #0082c9;
  border-radius: 2px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a img {
  flex: 0 0 auto;
  max-width: 30px;
  height: 30px;
  margin-right: 15px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a span {
  flex: 1;
  display: block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li a span small {
  display: block;
  font-size: 12px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu {
  padding: 20px 0px 0px 30px;
  margin: 0px;
  list-style: none;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li {
  padding: 0px;
  margin: 0px 0px 20px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: rgba(12, 7, 38, 0.7);
  font-size: 14px;
  font-weight: 400;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li a:hover {
  color: #0082c9;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li a img {
  flex: 0 0 auto;
  max-width: 30px;
  height: 30px;
  margin-right: 15px;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li a span {
  flex: 1;
  display: block;
}
header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu > li > .sub-menu > li a span small {
  display: block;
  font-size: 12px;
}
@media (max-width: 1199.98px) {
  header .header-holder .header-items #menu-primary-menu-container .primary-menu {
    justify-content: flex-start;
    padding: 30px 0px 0px;
    flex-direction: column;
  }
  header .header-holder .header-items #menu-primary-menu-container .primary-menu > li {
    margin: 0px;
    padding: 10px 0px;
    margin: 0px 8px;
    display: inline-block;
  }
  header .header-holder .header-items #menu-primary-menu-container .primary-menu > li:not(.nav-btn) > a {
    padding: 6px 6px;
  }
  header .header-holder .header-items #menu-primary-menu-container .primary-menu > li:not(.nav-btn) > a:focus {
    padding: 4px 4px;
  }
  header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu {
    position: relative;
    left: 0px;
    width: 100%;
    max-width: 320px;
    margin: 20px 0px 0px;
    padding: 20px 15px 1px;
  }
  header .header-holder .header-items #menu-primary-menu-container .primary-menu > li > .sub-menu:before {
    left: 20px;
    margin: 0px;
  }
}
@media (max-width: 1199.98px) {
  header {
    padding: 12px 0px;
    overflow-y: scroll;
  }
  header .header-holder .header-items {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }
}
@media (min-width: 1199.98px) {
  header .phone-menu {
    display: none;
  }
  header .header-holder .header-items {
    display: block;
  }
}

footer {
  padding: 50px 0px 20px;
  background-color: #0F0833;
}
footer .footer-logo {
  width: 100%;
  max-width: 88px;
  margin: 0px auto;
}
footer .footer-logo img {
  max-width: 100%;
  height: auto;
}
footer .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}
footer .foot-text {
  padding: 35px 0px 15px;
}
footer .foot-text p {
  color: rgba(255, 255, 255, 0.21);
  font-size: 13px;
  font-weight: 600;
  margin: 0px;
}
footer #menu-footer-menu-container {
  padding: 50px 0px 40px 155px;
}
footer #menu-footer-menu-container .footer-menu {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 399.98px) {
  footer #menu-footer-menu-container .footer-menu {
    flex-wrap: wrap;
  }
  footer #menu-footer-menu-container .footer-menu li {
    width: 100%;
  }
  footer #menu-footer-menu-container .footer-menu li ul {
    padding: 10px 0px 50px;
  }
}
footer #menu-footer-menu-container .footer-menu li {
  flex: 0 0 auto;
  margin-bottom: 10px;
  width: 20%;
}
footer #menu-footer-menu-container .footer-menu li a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
footer #menu-footer-menu-container .footer-menu li ul {
  padding: 10px 0px 0px;
  margin: 0px;
  list-style: none;
}
footer #menu-footer-menu-container .footer-menu li ul li {
  display: block;
  width: 100%;
}
footer #menu-footer-menu-container .footer-menu li ul li a {
  font-weight: 400;
}
footer #menu-footer-menu-container .footer-menu li ul li a:focus, footer #menu-footer-menu-container .footer-menu li ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 1199.98px) {
  footer #menu-footer-menu-container {
    padding: 50px 0px 40px 0px;
  }
  footer #menu-footer-menu-container .footer-menu li {
    width: 33.3333333333%;
    text-align: center;
  }
}
footer .social-media-holder {
  padding-top: 35px;
  width: 100%;
}
footer .social-media-holder .social-menu {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
footer .social-media-holder .social-menu li {
  margin: 0px 0px 15px 30px;
}
footer .social-media-holder .social-menu li img {
  max-width: 20px;
  max-height: 20px;
  width: auto;
  height: auto;
}
footer .social-media-holder .social-menu li a:hover {
  opacity: 0.7;
}

.size-medium {
  width: 300px;
}

.size-small {
  width: 150px;
}

.size-small {
  width: 150px;
}

.size-full {
  width: 1000px;
}

.home-hero-section {
  padding: 125px 0px 70px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.home-hero-section .section-title {
  padding: 50px 0px;
}
.home-hero-section .section-title h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 700;
  margin: 0px 0px 45px;
}
.home-hero-section .section-title p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 30px;
}

.collaboration-section {
  padding: 80px 0px 80px;
}
.collaboration-section .text-block {
  text-align: center;
}
.collaboration-section .text-block h2 {
  color: #0C0726;
  margin: 0px 0px 10px;
}
.collaboration-section .text-block p {
  font-size: 16px;
  line-height: 210.2%;
  margin: 0px 0px 20px;
}
.collaboration-section .text-block .logos-list {
  width: 100%;
  max-width: 636px;
  padding: 0px;
  margin: 0px auto 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.collaboration-section .text-block .logos-list li {
  margin: 0px 5px;
}
.collaboration-section .text-block .logos-list li img {
  max-width: 96px;
  max-height: 96px;
  width: auto;
  height: auto;
}

.needs-section {
  position: relative;
  padding: 40px 0px 85px;
  background-color: #FFF;
  z-index: 5;
}
.needs-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 185px;
  left: 0px;
  background: rgb(0, 130, 201);
  background: -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  z-index: 1;
}
.needs-section .section-title {
  position: relative;
  padding-right: 150px;
  padding-bottom: 50px;
  z-index: 10;
}
.needs-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 25px;
}
.needs-section .section-title p {
  color: #fff;
  margin: 0px;
}
.needs-section .needs-slider {
  z-index: 11;
}
.needs-section .needs-slider .slick-list {
  margin: 0px -15px;
}
.needs-section .needs-slider .slick-track {
  display: flex !important;
}
.needs-section .needs-slider .slick-slide {
  margin: 20px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid transparent;
  height: inherit !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.needs-section .needs-slider .slick-slide:hover {
  border-color: #30B6FF;
  margin: 0px 15px;
}
.needs-section .needs-slider .slick-slide:hover .slide-box {
  padding: 60px 10px;
}
.needs-section .needs-slider .slide-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 10px;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.needs-section .needs-slider .slide-box.box-1 {
  background-image: url("../img/bg01a.png");
}
.needs-section .needs-slider .slide-box.box-2 {
  background-image: url("../img/bg01b.png");
}
.needs-section .needs-slider .slide-box img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
  margin: 0px auto;
}
.needs-section .needs-slider .slide-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px auto;
}
.needs-section .needs-slider .slide-box h4:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 70px auto 15px;
  background-color: #30B6FF;
}
.needs-section .needs-slider .slide-box .c-btn {
  margin-top: 20px;
  min-width: 140px;
  padding: 11px 30px;
  font-size: 16px;
}
.needs-section .needs-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -156px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.needs-section .needs-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.needs-section .needs-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.needs-section .needs-slider .slick-arrow.slick-next {
  right: 0px;
}
.needs-section .needs-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.products-section {
  position: relative;
  padding: 100px 0px;
}
.products-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 30%;
  bottom: 0px;
  left: 0px;
  background-color: #0F0833;
  border-top-right-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  z-index: -1;
}
.products-section .button-block {
  width: 100%;
  text-align: center;
}
.products-section .button-block .video-btn {
  width: 450px;
  height: 450px;
  padding: 170px 0px 0px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: url("../img/play.svg") left 200px top 160px no-repeat, rgb(0, 130, 201);
  background: url("../img/play.svg") left 200px top 160px no-repeat, -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: url("../img/play.svg") left 200px top 160px no-repeat, -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: url("../img/play.svg") left 200px top 160px no-repeat, linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}
.products-section .section-title {
  padding-bottom: 30px;
}
.products-section .section-title h2 {
  color: #fff;
}
.products-section .products-accordion .accordion-card {
  padding: 0px 40px;
  border: 2px solid transparent;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  margin: 0px 0px 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.products-section .products-accordion .accordion-card.active {
  padding: 40px;
  border-color: #211949;
  -webkit-box-shadow: 10px 30px 60px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 10px 30px 60px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 10px 30px 60px 0px rgba(0, 0, 0, 0.23);
}
.products-section .products-accordion .accordion-card.active .card-btn .icon {
  background-color: #30B6FF;
}
.products-section .products-accordion .accordion-card.active .card-btn:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.products-section .products-accordion .accordion-card .card-btn {
  position: relative;
  background-color: transparent;
  padding: 0px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.products-section .products-accordion .accordion-card .card-btn .icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.04);
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.products-section .products-accordion .accordion-card .card-btn .name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 20px;
}
.products-section .products-accordion .accordion-card .card-btn:after {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("../img/arrow03.svg");
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.products-section .products-accordion .accordion-card .card-box {
  display: none;
  padding: 25px 0px 0px;
}
.products-section .products-accordion .accordion-card .card-box p {
  color: #fff;
  line-height: 210.2%;
}
.products-section .products-accordion .accordion-card .card-box a {
  color: #30B6FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.products-section .products-accordion .accordion-card .card-box a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  background-image: url("../img/arrow04.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.why-section {
  padding: 40px 0px;
  position: relative;
}
.why-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  bottom: 70px;
  left: 50%;
  width: 1px;
  background-color: #0C0726;
  opacity: 0.12;
}
.why-section .text-block {
  padding: 0px 30px 30px;
}
.why-section .text-block img {
  max-width: 72px;
  height: auto;
  margin-top: 30px;
  margin-bottom: 10px;
}
.why-section .text-block h2 {
  color: #0C0726;
  margin: 0px 0px 15px;
}
.why-section .text-block h3 {
  font-size: 36px;
  margin: 0px 0px 45px;
}
.why-section .text-block h4 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
}
.why-section .text-block p {
  line-height: 210.2%;
  margin: 0px;
}
.why-section .text-block .c-btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.video-modal .modal-body {
  padding: 5px;
}
.video-modal .video-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
}
.video-modal .video-holder iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.columns-section {
  padding: 50px 0px;
}
.columns-section .spacer {
  margin-top: 70px;
  margin-bottom: 70px;
}
.columns-section .section-title {
  text-align: center;
}
.columns-section .left-orient .image-block img {
  float: right;
}
.columns-section .image-block {
  width: 100%;
}
.columns-section .text-block h2 {
  margin: 0px 0px 20px;
}
.columns-section .text-block p {
  line-height: 210.2%;
}
.columns-section .text-block p b {
  color: #0C0726;
}
.columns-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.columns-section .text-block ul li {
  display: block;
  position: relative;
  line-height: 210.2%;
  padding-left: 20px;
}
.columns-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.columns-section .text-block .mobile-media {
  display: none;
  max-width: 100%;
  height: auto;
  margin: 0px auto 30px;
}
.columns-section .text-block a:not(.c-btn) {
  color: #30B6FF;
  text-decoration: underline;
}

.compliant-section {
  padding: 30px 0px;
  background-color: #0F0833;
}
.compliant-section .text-block {
  padding: 100px 0px;
}
.compliant-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 35px;
}
.compliant-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.compliant-section .text-block .c-btn {
  margin-top: 30px;
}
.compliant-section .cont-box {
  width: 100%;
  min-height: 265px;
  margin-bottom: 25px;
  padding: 65px 30px 25px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.compliant-section .cont-box.box-1 {
  background-image: url("../img/bg04a.png");
}
.compliant-section .cont-box.box-2 {
  background-image: url("../img/bg04b.png");
}
.compliant-section .cont-box.box-3 {
  margin-top: 65px;
  background-image: url("../img/bg04c.png");
}
.compliant-section .cont-box.box-4 {
  background-image: url("../img/bg04d.png");
}
.compliant-section .cont-box.white-box h4 {
  color: #0C0726;
}
.compliant-section .cont-box.white-box h4:before {
  background-color: #30B6FF;
}
.compliant-section .cont-box.white-box .round-btn {
  background-color: #0C0726;
  background-image: url("../img/arrow05a.svg");
}
.compliant-section .cont-box.dark-box h4 {
  color: #fff;
}
.compliant-section .cont-box.dark-box h4:before {
  background-color: #fff;
}
.compliant-section .cont-box.dark-box .round-btn {
  background-color: #fff;
  background-image: url("../img/arrow05b.svg");
}
.compliant-section .cont-box h4 {
  font-size: 18px;
  font-weight: 700;
}
.compliant-section .cont-box h4:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin-bottom: 15px;
}
.compliant-section .cont-box .round-btn {
  align-self: flex-end;
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 0px;
  background-color: red;
  background-repeat: no-repeat;
  background-position: left 14px center;
}

.promo-section {
  padding: 55px 0px;
  background-image: url("../img/bg05.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.promo-section .text-block {
  text-align: center;
}
.promo-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 20px;
}
.promo-section .text-block p {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 210.2%;
}
.promo-section .text-block .c-btn {
  margin-top: 10px;
}

.more-about-section {
  width: 100%;
  padding: 120px 0px 40px;
}
.more-about-section .section-title {
  text-align: center;
  padding-bottom: 35px;
}
.more-about-section .box {
  width: 100%;
}
.more-about-section .box .box-img {
  width: 100%;
  height: 0px;
  padding-top: 62%;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.more-about-section .box .box-body {
  width: 100%;
  padding: 50px 30px 50px;
  position: relative;
}
.more-about-section .box .box-body .v-btn {
  display: block;
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: none;
  background: url("../img/play.svg") left 37px center no-repeat, rgb(0, 130, 201);
  background: url("../img/play.svg") left 37px center no-repeat, -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: url("../img/play.svg") left 37px center no-repeat, -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: url("../img/play.svg") left 37px center no-repeat, linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background-size: 30px auto, auto;
  top: -48px;
  right: 48px;
}
.more-about-section .box .box-body h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 20px;
  text-transform: uppercase;
}
.more-about-section .box .box-body p {
  line-height: 210.2%;
}

.nf-before-form-content, .nf-form-title, .nf-after-form-content, .nf-form-content {
  max-width: 800px !important;
  margin: 0 auto;
  display: block;
  padding: 5px;
}

.nf-after-form-content {
  margin-bottom: 2rem;
}

.data-sheet-section .nf-after-form-content, .whitepaper-section .nf-after-form-content, .case-study-section .nf-after-form-content {
  margin-bottom: 0rem;
  padding: 0;
}

.nf-form-title {
  text-align: center;
  max-width: 600px !important;
  margin: 3rem auto 1rem auto;
}

.nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-content input:not([type=button]),
.nf-form-content textarea {
  border-radius: 10px !important;
}
.nf-form-content .nf-error.field-wrap .nf-field-element:after {
  border-bottom-right-radius: 9px;
  border-top-right-radius: 9px;
}

.nf-response-msg {
  display: block;
  max-width: 800px;
  margin: 4rem auto;
}

.nf-form-fields-required {
  display: none;
}

.post-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.08);
  overflow: hidden;
}
.post-holder .post-img {
  width: 100%;
  height: 0px;
  padding-top: 55%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0px;
}
.post-holder .nf-before-form-content {
  padding: 0px;
}
.post-holder .nf-before-form {
  display: none;
}
.post-holder .post-body {
  margin: 0px;
  padding: 20px 20px 25px;
}
.post-holder .post-body h5 {
  min-height: 60px;
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px 10px;
}
.post-holder .post-body p {
  line-height: 156%;
  margin: 0px;
}
.post-holder .form-body {
  width: 100%;
  margin: auto 0px 0px 0px;
  padding: 0px 20px 20px;
}
.post-holder .form-body .wpcf7 form.invalid .wpcf7-response-output,
.post-holder .form-body .wpcf7 form.unaccepted .wpcf7-response-output,
.post-holder .form-body .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
}
.post-holder .form-body .wpcf7-not-valid-tip {
  font-size: 12px;
}
.post-holder .form-body .nf-form-title {
  margin: 0 !important;
}
.post-holder .form-body .nf-form-content {
  width: 100%;
  position: relative;
}
.post-holder .form-body .nf-form-content .input-holder {
  width: 100%;
}
.post-holder .form-body .nf-form-content .input-holder.hidden-input {
  display: none;
}
.post-holder .form-body .nf-form-content .input-holder input {
  width: 100%;
  height: 48px;
  padding: 0px 160px 0px 20px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-radius: 24px !important;
  -webkit-border-radius: 24px;
  color: #000;
  font-size: 16px;
}
.post-holder .form-body .nf-form-content .input-holder .nf-field-element::after {
  content: "" !important;
  display: none;
}
.post-holder .form-body .nf-form-content .submit-holder {
  position: absolute;
  top: 4px;
  right: 0px;
  width: 140px;
  height: 48px;
}
.post-holder .form-body .nf-form-content .submit-holder input {
  width: 100%;
  min-width: 140px;
  height: 48px;
  border: 1px solid #0F0833;
  background-color: #0F0833;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}
.post-holder .form-body .nf-form-content .check-holder {
  padding-top: 0px;
  text-align: left;
  margin-bottom: 10px;
}
.post-holder .form-body .nf-form-content .check-holder .checkbox-wrap {
  display: inline;
}
.post-holder .form-body .nf-form-content .check-holder a {
  color: #000;
  text-decoration: underline;
}
.post-holder .form-body .nf-form-content .check-holder label {
  font-weight: normal;
  display: inline;
  color: #000;
  font-size: 14px;
}
.post-holder .form-body .nf-form-content .check-holder label a {
  color: #000;
  text-decoration: underline;
}
.post-holder .form-body .nf-form-content .check-holder br {
  display: none;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-list-item {
  margin: 0px;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-checkbox label {
  cursor: pointer;
  color: #000;
  font-size: 14px;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 25px;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  background-color: #FFF;
  background-image: url("../img/check-square.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.post-holder .form-body .nf-form-content .check-holder .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background-color: #000;
}

.partners-section {
  width: 100%;
}
.partners-section .tabs-navigation {
  border-bottom: 2px solid #F9F9F9;
}
.partners-section .tabs-navigation .custom-partner-tabs {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.partners-section .tabs-navigation .custom-partner-tabs li {
  flex: 0 0 270px;
  max-width: 270px;
}
.partners-section .tabs-navigation .custom-partner-tabs li .tab-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 24px 5px;
  margin: 0px;
  border: none;
  border-bottom: 2px solid #f9f9f9;
  background-color: transparent;
  color: #555555;
  font-size: 22px;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.partners-section .tabs-navigation .custom-partner-tabs li .tab-link.active {
  color: #0082C9;
  border-color: #0082C9;
}
.partners-section .tabs-navigation .custom-partner-tabs li .tab-link svg {
  display: none;
}
.partners-section .desc-text {
  width: 100%;
  max-width: 750px;
  padding: 55px 0px;
  text-align: center;
  margin: 0px auto;
}
.partners-section .desc-text p {
  color: #6C6C6C;
  font-size: 18px;
  line-height: 27px;
  margin: 0px;
}
.partners-section .text-block {
  text-align: center;
}
.partners-section .logos {
  padding: 0px;
  margin: 0px 0px 50px;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-section .logos li {
  flex: 0 0 80px;
  width: 80px;
  margin: 0px 5px 15px;
}
.partners-section .logos li img {
  max-width: 100%;
  height: auto;
}
.partners-section .filters-holder {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0px 55px;
  margin-left: -15px;
  margin-right: -15px;
}
.partners-section .filters-holder .input-outer {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 20px;
  padding: 0px 15px;
}
.partners-section .filters-holder .input-outer:nth-child(1) {
  z-index: 99;
}
.partners-section .filters-holder .input-outer:nth-child(2) {
  z-index: 98;
}
.partners-section .filters-holder .input-outer:nth-child(3) {
  z-index: 97;
}
.partners-section .filters-holder .input-outer:nth-child(4) {
  z-index: 96;
}
.partners-section .filters-holder .input-outer .input-holder {
  position: relative;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border: 1px solid #D7D7D7;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  z-index: 6;
}
.partners-section .filters-holder .input-outer .input-holder.active:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.partners-section .filters-holder .input-outer .input-holder:after {
  content: "";
  display: block;
  position: absolute;
  width: 54px;
  height: 54px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-image: url("../img/filter-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.partners-section .filters-holder .input-outer .input-holder .label {
  flex: 0 0 125px;
  max-width: 125px;
  display: block;
  padding-left: 20px;
  border-right: 1px solid #D7D7D7;
  color: #6C6C6C;
  font-size: 16px;
  line-height: 24px;
}
.partners-section .filters-holder .input-outer .input-holder .inner {
  flex: 1;
  padding-right: 54px;
}
.partners-section .filters-holder .input-outer .input-holder input[type=text] {
  width: 100%;
  height: 40px;
  padding: 0px 25px;
  background-color: #fff;
  cursor: pointer;
  border: none;
  color: #6C6C6C;
  font-size: 16px;
  outline: none;
}
.partners-section .filters-holder .input-outer .input-holder ::-webkit-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .input-holder ::-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .input-holder :-ms-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .input-holder :-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .search-holder {
  width: 100%;
  height: 56px;
  background-color: #fff;
  border: 1px solid #D7D7D7;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.partners-section .filters-holder .input-outer .search-holder input[type=text] {
  width: 100%;
  height: 40px;
  padding: 0px 20px;
  background-color: transparent;
  border: none;
  color: #6C6C6C;
  font-size: 16px;
  outline: none;
  background-image: url("../img/search-icon.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.partners-section .filters-holder .input-outer .search-holder ::-webkit-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .search-holder ::-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .search-holder :-ms-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .search-holder :-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.partners-section .filters-holder .input-outer .select-list {
  display: none;
  position: absolute;
  list-style: none;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: 0px;
  padding: 35px 0px 20px;
  border: 1px solid #D7D7D7;
  background-color: #fff;
  z-index: 5;
  border-bottom-left-radius: 28px;
  -webkit-border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  -webkit-border-bottom-right-radius: 28px;
}
.partners-section .filters-holder .input-outer .select-list.check-list li:hover {
  color: #6C6C6C;
  background-color: transparent;
}
.partners-section .filters-holder .input-outer .select-list li {
  padding: 5px 30px;
  font-size: 16px;
  margin: 0px;
  cursor: pointer;
}
.partners-section .filters-holder .input-outer .select-list li:hover {
  color: #fff;
  background-color: #0082c9;
}
.partners-section .filters-holder .input-outer .select-list li input[type=checkbox] {
  display: none;
}
.partners-section .filters-holder .input-outer .select-list li input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  background-color: transparent;
  color: #6C6C6C;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.partners-section .filters-holder .input-outer .select-list li input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 4px;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
}
.partners-section .filters-holder .input-outer .select-list li input[type=checkbox]:checked + label:before {
  background-image: url("../img/check-icon.svg");
}
.partners-section .custom-partner-tab-content {
  width: 100%;
}
.partners-section .custom-partner-tab-content .custom-tab-panel {
  display: none;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partners-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partners-holder .partner-col {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partners-holder .partner2-col {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel.active {
  display: block;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box {
  position: relative;
  height: 100%;
  padding: 45px 25px 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #D7D7D7;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .certificate-line {
  display: block;
  width: 170px;
  position: absolute;
  top: -1px;
  right: -1px;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  padding: 7px 10px 7px 40px;
  border: 1px solid #D7D7D7;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  background-image: url("../img/subtract.svg");
  background-repeat: no-repeat;
  background-position: left 13px center;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .certificate-line.platinum {
  background-color: #204C65;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .certificate-line.gold {
  background-color: #D3AE43;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .certificate-line.silver {
  background-color: #8C9AA1;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .certificate-line.bronze {
  background-color: #CB7F3B;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-logo {
  width: 100%;
  height: 70px;
  margin: 0px 0px 15px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-text {
  margin: 0px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-text h4 {
  color: #0082C9;
  font-size: 18px;
  margin: 0px 0px 15px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-text p {
  color: #6C6C6C;
  font-size: 12px;
  line-height: 17px;
  margin: 0px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info {
  margin: auto 0px 0px;
  padding: 25px 0px 0px;
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info li:nth-child(1) {
  margin: 0px auto 20px 0px;
  color: rgba(108, 108, 108, 0.5);
  font-size: 14px;
  line-height: 17px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info li:nth-child(2) {
  flex: 0 0 110px;
  max-width: 110px;
  margin: 0px 0px 20px auto;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info li:nth-child(2) a {
  display: block;
  width: 100%;
  background-color: #0082C9;
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 8px 10px 9px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info li:nth-child(2) a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background-image: url("../img/external-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  vertical-align: middle;
}
.partners-section .custom-partner-tab-content .custom-tab-panel .partner-box .partner-info li:nth-child(2) a:hover {
  opacity: 0.7;
  text-decoration: none;
}

a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

a,
a:active,
a:visited,
a:hover {
  text-decoration: none;
}

*:focus {
  outline: 1px dotted #000;
}

blockquote {
  border-left: 4px gray solid;
  padding-left: 1rem;
  margin: 0.75rem 0;
}

.wpcf7-spinner,
div.wpcf7 .ajax-loader {
  display: none !important;
}

button {
  outline: none !important;
}

html :where(img) {
  max-width: initial;
}

body {
  position: relative;
  width: 100%;
  color: rgba(12, 7, 38, 0.7);
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: normal;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

h2 {
  color: #0C0726;
  font-size: 72px;
  font-weight: 700;
  margin: 0px;
}

h3 {
  color: #0C0726;
  font-size: 48px;
  font-weight: 700;
  margin: 0px;
}

p {
  margin: 0px 0px 20px;
}

.c-btn {
  display: inline-block;
  min-width: 242px;
  padding: 19px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: 2px solid #004871;
  border-radius: 38px;
  background-color: #004871;
  text-align: center;
}
.c-btn:hover {
  background-color: #fff;
  color: #004871;
  text-decoration: none;
}
.c-btn:focus {
  border: 2px solid white;
  outline: none;
}
.c-btn.btn-blue {
  background-color: #30B6FF;
  border-color: #30B6FF;
}
.c-btn.btn-blue:hover, .c-btn.btn-blue:focus {
  color: #30B6FF;
  background-color: #fff;
}
.c-btn.btn-white {
  color: #30B6FF;
  background-color: #fff;
  border-color: #30B6FF;
}
.c-btn.btn-white:hover, .c-btn.btn-white:focus {
  color: #fff;
  background-color: #30B6FF;
}
.c-btn.btn-black {
  color: #fff;
  background-color: #0F0833;
  border-color: #0F0833;
}
.c-btn.btn-black:hover, .c-btn.btn-black:focus {
  color: #0F0833;
  background-color: #fff;
}

.section-404 {
  padding: 300px 0px;
  text-align: center;
}
.section-404 h1 {
  color: #0C0726;
  font-size: 48px;
  font-weight: 700;
  margin: 0px 0px 50px;
}

.gr {
  background: rgb(28, 175, 255);
  background: -moz-radial-gradient(center, ellipse cover, rgb(28, 175, 255) 0%, rgb(0, 130, 201) 100%);
  background: -webkit-radial-gradient(center, ellipse cover, rgb(28, 175, 255) 0%, rgb(0, 130, 201) 100%);
  background: radial-gradient(ellipse at center, rgb(28, 175, 255) 0%, rgb(0, 130, 201) 100%);
}

.subs-section {
  margin-top: 75px;
  position: relative;
  z-index: 5;
}
.subs-section:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #0F0833;
}
.subs-section .text-block {
  position: relative;
  padding: 60px 20px;
  background: rgb(0, 130, 201);
  background: -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  text-align: center;
  z-index: 10;
}
.subs-section .text-block h3 {
  color: #fff;
  margin: 0px 0px 20px;
}
.subs-section .text-block p {
  color: #fff;
  margin: 0px 0px 30px;
}
.subs-section .text-block p small {
  display: block;
  font-size: 14px;
  max-width: 620px;
  width: 100%;
  margin: 0px auto;
}
.subs-section .text-block h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0px 20px;
}
.subs-section .text-block .form-block {
  width: 100%;
  max-width: 585px;
  margin: 0px auto;
}
.subs-section .text-block .form-block .form-holder {
  width: 100%;
  position: relative;
}
.subs-section .text-block .form-block .form-holder .input-holder {
  width: 100%;
}
.subs-section .text-block .form-block .form-holder .input-holder input {
  width: 100%;
  height: 70px;
  padding: 0px 180px 0px 25px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background-color: transparent;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #fff;
  font-size: 18px;
}
.subs-section .text-block .form-block .form-holder .submit-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 175px;
  height: 70px;
}
.subs-section .text-block .form-block .form-holder .submit-holder input {
  width: 100%;
  height: 70px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #30B6FF;
  font-size: 18px;
  font-weight: 600;
}
.subs-section .text-block .form-block .form-holder .check-holder {
  padding-top: 25px;
  text-align: left;
  margin-bottom: 10px;
}
.subs-section .text-block .form-block .form-holder .check-holder p {
  display: inline;
  color: #fff;
  font-size: 12px;
}
.subs-section .text-block .form-block .form-holder .check-holder p a {
  color: #fff;
  text-decoration: underline;
}
.subs-section .text-block .form-block .form-holder .check-holder br {
  display: none;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-list-item {
  margin: 0px;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox label {
  cursor: pointer;
  color: #fff;
  font-size: 12px;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 50px;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  height: 12px;
  width: 12px;
  top: 2px;
  left: 25px;
  background-color: #fff;
  background-image: url("../img/check-square.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.subs-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background-color: transparent;
}

.page-hero-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 570px;
  padding: 195px 0px 105px;
}
.page-hero-section .section-title {
  padding: 0px 0px;
}
.page-hero-section .section-title h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 700;
  margin: 0px 0px 20px;
}
.page-hero-section .section-title p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 30px;
}

.page-hero-top-section {
  padding: 195px 0px 105px;
}

.page-hero-bottom-section {
  height: 300px;
  background-position: bottom;
  margin-top: -300px;
  background-size: auto 300px;
  position: relative;
}
.page-hero-bottom-section h2 {
  position: absolute;
  bottom: 3rem;
  color: white;
  font-size: 1.7rem;
}

.video-section {
  padding: 100px 0px 65px;
}
.video-section .text-block h2 {
  margin: 0px 0px 35px;
}
.video-section .text-block p {
  line-height: 210.2%;
}
.video-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.video2-section {
  padding: 100px 0px 75px;
}
.video2-section .text-block p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.video2-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
}
.video2-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.solution-section {
  padding: 65px 0px 110px;
}
.solution-section .section-title {
  padding-bottom: 50px;
}
.solution-section .section-title h2 {
  margin: 0px 0px 25px;
}
.solution-section .section-title p {
  line-height: 210.2%;
}
.solution-section .spacer {
  margin-bottom: 15px;
}
.solution-section .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.solution-section .item-box.box-1 {
  background-image: url("../img/bg07a.jpg");
}
.solution-section .item-box.box-2 {
  background-image: url("../img/bg07b.jpg");
}
.solution-section .item-box:hover {
  border-color: #30B6FF;
}
.solution-section .item-box img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
}
.solution-section .item-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px 10px;
}
.solution-section .item-box h4:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 45px auto 10px;
  background-color: #30B6FF;
}
.solution-section .item-box h6 {
  color: #0C0726;
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0px 15px;
}
.solution-section .item-box p {
  line-height: 156%;
}
.solution-section .item-box .c-btn {
  margin-top: 20px;
  min-width: 140px;
  padding: 11px 30px;
  font-size: 16px;
}

.whyhub-section {
  padding: 75px 0px;
  background-color: #0F0833;
}
.whyhub-section .image-block {
  width: 100%;
  text-align: center;
}
.whyhub-section .image-block img {
  max-width: 100%;
  height: auto;
}
.whyhub-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 40px;
}
.whyhub-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.whyhub-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.whyhub-section .text-block ul li {
  display: block;
  position: relative;
  color: #fff;
  line-height: 210.2%;
  padding-left: 20px;
}
.whyhub-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.capabilities-section {
  padding: 125px 0px 70px;
}
.capabilities-section .section-title {
  text-align: center;
  padding-bottom: 75px;
}
.capabilities-section .spacer {
  margin-bottom: 50px;
}
.capabilities-section .sub-text {
  width: 100%;
  max-width: 600px;
  padding: 20px 0px;
  margin: 0px auto;
  text-align: center;
}
.capabilities-section .sub-text p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.capabilities-section .slide-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 25px;
  border: 2px solid transparent;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.capabilities-section .slide-box.simple-box {
  justify-content: flex-start;
}
.capabilities-section .slide-box:hover {
  border-color: #30B6FF;
}
.capabilities-section .slide-box img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.capabilities-section .slide-box h4 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 5px;
  text-transform: uppercase;
}
.capabilities-section .slide-box p {
  line-height: 210.2%;
}
.capabilities-section .slide-box a {
  color: #30B6FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  margin: auto 0px 0px 0px;
  text-transform: uppercase;
}
.capabilities-section .slide-box a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  background-image: url("../img/arrow04.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.capabilities-section .slide-box a:hover {
  color: #000;
}
.capabilities-section .slide-box a:hover:after {
  filter: brightness(0);
  -webkit-filter: brightness(0);
  z-index: 1;
}
.capabilities-section .capabilities-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 37px;
  height: 37px;
  top: -50px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-image: url("../img/arrow01.svg");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 10px auto;
  font-size: 0px;
  z-index: 50;
}
.capabilities-section .capabilities-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.capabilities-section .capabilities-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 12px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.capabilities-section .capabilities-slider .slick-arrow.slick-next {
  right: 0px;
}
.capabilities-section .capabilities-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 12px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.collaboration2-section {
  background: rgb(0, 130, 201);
  background: -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  padding: 80px 0px 80px;
}
.collaboration2-section .text-block {
  text-align: center;
}
.collaboration2-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 20px;
}
.collaboration2-section .text-block p {
  width: 100%;
  max-width: 780px;
  color: #fff;
  line-height: 210.2%;
  margin: 0px auto 45px;
}
.collaboration2-section .text-block .logos-list {
  width: 100%;
  padding: 0px;
  margin: 0px auto 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.collaboration2-section .text-block .logos-list li {
  margin: 0px 15px 30px;
}
.collaboration2-section .text-block .logos-list li img {
  max-width: 96px;
  max-height: 96px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.collaboration2-section .text-block .logos-list li:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.whatcanhub-section {
  padding: 125px 0px 95px;
}
.whatcanhub-section .section-title {
  padding-bottom: 30px;
}
.whatcanhub-section .section-title h2 {
  margin: 0px 0px 35px;
}
.whatcanhub-section .section-title p {
  line-height: 210.2%;
}
.whatcanhub-section .spacer {
  margin-bottom: 30px;
}
.whatcanhub-section .item-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border: 2px solid transparent;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
}
.whatcanhub-section .item-box:hover {
  border-color: #30B6FF;
}
.whatcanhub-section .item-box img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.whatcanhub-section .item-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  line-height: 166.2%;
  margin: 0px;
}
.whatcanhub-section .item-box h4:after {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 15px 0px 10px;
  background-color: #30B6FF;
}
.whatcanhub-section .item-box p {
  color: #0C0726;
  line-height: 210.2%;
}
.whatcanhub-section .item-box a {
  color: #30B6FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  margin: auto 0px 0px 0px;
  text-transform: uppercase;
}
.whatcanhub-section .item-box a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  background-image: url("../img/arrow04.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.whatcanhub-section .item-box a:hover {
  color: #000;
}
.whatcanhub-section .item-box a:hover:after {
  filter: brightness(0);
  -webkit-filter: brightness(0);
  z-index: 1;
}

.hosting-section {
  padding: 100px 0px 50px;
  background-color: #0F0833;
}
.hosting-section.hosting2 {
  background-color: #fff;
}
.hosting-section.hosting2 .section-title h2 {
  color: #263238;
}
.hosting-section.hosting2 .text-block p {
  color: rgba(38, 50, 56, 0.7);
}
.hosting-section .spacer {
  margin-bottom: 50px;
}
.hosting-section .section-title {
  padding-bottom: 55px;
}
.hosting-section .section-title h2 {
  color: #fff;
}
.hosting-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.hosting-section .text-block .c-btn {
  margin-top: 50px;
}

.extend-section {
  padding: 100px 0px 40px;
}
.extend-section .text-block h2 {
  margin: 0px 0px 35px;
}
.extend-section .text-block p {
  color: #0C0726;
  font-size: 19px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 20px;
}
.extend-section .text-block .bullet-list {
  padding: 15px 0px 65px;
  margin: 0px;
  list-style: none;
}
.extend-section .text-block .bullet-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 19px;
  font-weight: 600;
  line-height: 166.2%;
}
.extend-section .text-block .bullet-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 7px;
  left: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.columns2-section {
  padding: 40px 0px 100px;
}
.columns2-section .spacer {
  margin-bottom: 75px;
}
.columns2-section .mobile-media {
  display: none;
}
.columns2-section .image-block {
  width: 100%;
}
.columns2-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns2-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns2-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.columns2-section .text-block h3 {
  margin: 0px 0px 30px;
}
.columns2-section .text-block p {
  line-height: 210.2%;
}
.columns2-section .text-block .c-btn {
  margin-top: 30px;
}

.benefits-section {
  padding: 100px 0px 70px;
  background-color: #0F0833;
}
.benefits-section .section-title {
  text-align: center;
  padding-bottom: 90px;
}
.benefits-section .section-title h2 {
  color: #fff;
}
.benefits-section .spacer {
  margin-bottom: 55px;
}
.benefits-section .benefits-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 37px;
  height: 37px;
  top: -50px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-image: url("../img/arrow01.svg");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 10px auto;
  font-size: 0px;
  z-index: 50;
}
.benefits-section .benefits-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.benefits-section .benefits-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
}
.benefits-section .benefits-slider .slick-arrow.slick-next {
  right: 0px;
}
.benefits-section .benefits-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
}
.benefits-section .slide-box {
  width: 100%;
  height: 100%;
  padding: 35px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-image: url("../img/bg09.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.benefits-section .slide-box img {
  max-width: 47px;
  max-height: 47px;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.benefits-section .slide-box h4 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 700;
  line-height: 166.2%;
  margin: 0px 0px 25px;
}
.benefits-section .slide-box h4:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 0px 0px 10px;
  background-color: #30B6FF;
}
.benefits-section .slide-box p {
  font-size: 12px;
  line-height: 210.2%;
}
.benefits-section .slide-box a {
  color: #30B6FF;
  text-decoration: underline;
}
.benefits-section .move-center .button-block {
  text-align: center;
}
.benefits-section .button-block {
  text-align: right;
}
.benefits-section .text-block p {
  color: #fff;
}
.benefits-section .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0px 0px 60px;
}

.whatsets-section {
  padding: 125px 0px 65px;
}
.whatsets-section .text-block h2 {
  margin: 0px 0px 40px;
}
.whatsets-section .text-block h6 {
  color: #0C0726;
  font-size: 19px;
  font-weight: 600;
  margin: 0px 0px 20px;
}
.whatsets-section .text-block p {
  line-height: 210.2%;
}
.whatsets-section .text-block ul {
  padding: 0px 0px 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.whatsets-section .text-block ul li {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 19px;
  font-weight: 600;
  line-height: 166.2%;
}
.whatsets-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 7px;
  left: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.whatsets-section .image-block {
  width: 100%;
  text-align: center;
}
.whatsets-section .image-block img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 10px 15px 40px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 10px 15px 40px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 10px 15px 40px 0px rgba(0, 0, 0, 0.25);
}

.muchmore-section {
  padding: 65px 0px 50px;
}
.muchmore-section .section-title {
  padding: 0px 150px 30px;
  text-align: center;
}
.muchmore-section .button-block {
  padding: 45px 0px 0px;
  text-align: center;
}
.muchmore-section .button-block a {
  color: #30B6FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  margin: auto 0px 0px 0px;
  text-transform: uppercase;
}
.muchmore-section .button-block a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  background-image: url("../img/arrow04.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.muchmore-section .button-block a:hover {
  color: #000;
}
.muchmore-section .button-block a:hover:after {
  filter: brightness(0);
  -webkit-filter: brightness(0);
  z-index: 1;
}
.muchmore-section .more-slider .slick-list {
  margin: 0px -10px;
}
.muchmore-section .more-slider .slick-track {
  display: flex !important;
}
.muchmore-section .more-slider .slick-slide {
  margin: 20px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid transparent;
  height: inherit !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
}
.muchmore-section .more-slider .slick-slide:hover {
  border-color: #30B6FF;
}
.muchmore-section .more-slider .slide-box {
  padding: 35px;
  text-align: center;
}
.muchmore-section .more-slider .slide-box img {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  margin: 0px auto 20px;
}
.muchmore-section .more-slider .slide-box p {
  line-height: 210.2%;
}
.muchmore-section .more-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -100px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.muchmore-section .more-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.muchmore-section .more-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.muchmore-section .more-slider .slick-arrow.slick-next {
  right: 0px;
}
.muchmore-section .more-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.collaboration3-section {
  padding: 125px 0px 50px;
}
.collaboration3-section .section-title {
  padding: 0px 150px 70px 0px;
}
.collaboration3-section .coll-slider .slick-list {
  overflow: visible;
}
.collaboration3-section .coll-slider .slick-track {
  display: flex !important;
}
.collaboration3-section .coll-slider .slick-slide {
  height: inherit !important;
}
.collaboration3-section .coll-slider .slick-slide .row {
  height: 100%;
}
.collaboration3-section .coll-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -140px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.collaboration3-section .coll-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.collaboration3-section .coll-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.collaboration3-section .coll-slider .slick-arrow.slick-next {
  right: 0px;
}
.collaboration3-section .coll-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.collaboration3-section .mobile-media {
  display: none;
}
.collaboration3-section .image-block {
  width: 100%;
}
.collaboration3-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.collaboration3-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.collaboration3-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.collaboration3-section .text-block h2 {
  margin: 0px 0px 40px;
}
.collaboration3-section .text-block h3 {
  margin: 0px 0px 30px;
}
.collaboration3-section .text-block h4 {
  color: #0C0726;
  font-size: 36px;
  font-weight: 700;
  margin: 0px 0px 20px;
}
.collaboration3-section .text-block p {
  line-height: 210.2%;
}
.collaboration3-section .text-block .c-btn {
  margin-top: 30px;
}
.collaboration3-section .text-block a:not(.c-btn) {
  color: #30B6FF;
  text-decoration: underline;
}
.collaboration3-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.collaboration3-section .text-block ul li {
  display: block;
  position: relative;
  line-height: 210.2%;
  padding-left: 20px;
}
.collaboration3-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.collaboration3-section .text-block .check-list {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.collaboration3-section .text-block .check-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 210.2%;
}
.collaboration3-section .text-block .check-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 8px;
  left: 0px;
  background-color: transparent;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.ucol-section {
  padding: 75px 0px 125px;
}
.ucol-section .image-block {
  width: 100%;
  text-align: center;
}
.ucol-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
}
.ucol-section .text-block {
  width: 100%;
}
.ucol-section .text-block .mobile-media {
  display: none;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.ucol-section .text-block h3 {
  margin: 0px 0px 25px;
}
.ucol-section .text-block p {
  line-height: 210.2%;
}
.ucol-section .bottom-block {
  padding-top: 110px;
  text-align: center;
}
.ucol-section .bottom-block p {
  line-height: 210.2%;
}

.columns3-section {
  padding: 50px 0px;
}
.columns3-section .spacer {
  margin-top: 70px;
  margin-bottom: 70px;
}
.columns3-section .left-orient .image-block img {
  max-width: 100%;
  height: auto;
}
.columns3-section .image-block {
  width: 100%;
}
.columns3-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
}
.columns3-section .text-block h3 {
  margin: 0px 0px 20px;
}
.columns3-section .text-block p {
  line-height: 210.2%;
}
.columns3-section .text-block p b {
  color: #0C0726;
}
.columns3-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.columns3-section .text-block ul li {
  display: block;
  position: relative;
  line-height: 210.2%;
  padding-left: 20px;
}
.columns3-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.columns3-section .text-block .mobile-media {
  display: none;
  max-width: 100%;
  height: auto;
  margin: 0px auto 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.compliance-section {
  padding: 75px 0px;
}
.compliance-section .section-title h2 {
  margin: 0px 0px 40px;
}
.compliance-section .section-title p {
  line-height: 210.2%;
}
.compliance-section .coll-slider .slick-track {
  display: flex !important;
}
.compliance-section .coll-slider .slick-slide {
  padding: 75px 0px;
  height: inherit !important;
}
.compliance-section .coll-slider .slick-slide .row {
  height: 100%;
}
.compliance-section .coll-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -140px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.compliance-section .coll-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.compliance-section .coll-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.compliance-section .coll-slider .slick-arrow.slick-next {
  right: 0px;
}
.compliance-section .coll-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.compliance-section .mobile-media {
  display: none;
}
.compliance-section .image-block {
  width: 100%;
}
.compliance-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
}
.compliance-section .text-block h3 {
  margin: 0px 0px 30px;
}
.compliance-section .text-block p {
  line-height: 210.2%;
}
.compliance-section .text-block .c-btn {
  margin-top: 30px;
}
.compliance-section .text-block ul {
  padding: 0px 0px 0px;
  margin: 0px;
  list-style: none;
}
.compliance-section .text-block ul li {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 210.2%;
}
.compliance-section .text-block ul li a {
  color: rgba(12, 7, 38, 0.7);
  text-decoration: underline;
}
.compliance-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 7px;
  left: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.squote-section {
  position: relative;
  padding: 0;
  margin-bottom: 75px;
  z-index: 1;
}
.squote-section .image-block {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.squote-section .image-block:before {
  content: "";
  display: block;
  position: absolute;
  top: -125px;
  bottom: -125px;
  background-color: #0F0833;
  width: 9999px;
  left: 50%;
  border-top-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  z-index: -1;
  background-image: url("../img/shape01.jpg");
  background-repeat: no-repeat;
  background-position: left 1000px bottom;
}
.squote-section .image-block img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.15);
}
.squote-section .text-block {
  position: relative;
  width: 100%;
  z-index: 6;
}
.squote-section .text-block .quote-block {
  background-image: url("../img/quote-open.svg"), url("../img/quote-close.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  padding: 20px 50px 5px;
}
.squote-section .text-block .quote-block p {
  color: #fff;
  font-size: 18px;
  line-height: 210.2%;
}
.squote-section .text-block .rest {
  padding: 0px 50px;
}
.squote-section .text-block .rest h6 {
  color: #fff;
  font-size: 18px;
  line-height: 166.2%;
  font-weight: 600;
  margin: 0px;
}
.squote-section .text-block .rest h6:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 0px 0px 15px;
  background-color: #30B6FF;
}
.squote-section .text-block .rest span {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 166.2%;
  margin: 0px 0px 0px;
}
.squote-section .text-block .rest a {
  color: #30B6FF;
  font-size: 18px;
  line-height: 166.2%;
}

.capabilities2-section {
  padding: 75px 0px 50px;
}
.capabilities2-section .section-title {
  text-align: center;
  padding-bottom: 70px;
}
.capabilities2-section .capabilities-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.capabilities2-section .capabilities-list li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0px 0px 20px;
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  padding: 7px 0px 7px 55px;
}
.capabilities2-section .capabilities-list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 35px;
  background-image: url("../img/check-circle2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.capabilities2-section .notation-list {
  width: 50%;
  padding: 0px 0px 0px 55px;
  margin: 0px 0px 0px auto;
  list-style: none;
}
.capabilities2-section .notation-list li {
  display: block;
  font-size: 14px;
  margin: 0px 0px 5px;
}
.capabilities2-section .button-block {
  padding-top: 40px;
  text-align: center;
}
.capabilities2-section .button-block p {
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 25px;
}
.capabilities2-section .button-block p blue {
  color: #0082C9;
}

.benefits2-section {
  padding: 50px 0px 75px;
}
.benefits2-section .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.benefits2-section .image-block {
  width: 100%;
  text-align: center;
}
.benefits2-section .image-block img {
  max-width: 100%;
  height: auto;
}
.benefits2-section .spacer {
  margin-bottom: 60px;
}
.benefits2-section .benefits-slider {
  padding-top: 50px;
}
.benefits2-section .benefits-slider .slide-box img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.benefits2-section .benefits-slider .slide-box h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.benefits2-section .benefits-slider .slide-box p {
  line-height: 210.2%;
  margin: 0px;
}
.benefits2-section .benefits-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 37px;
  height: 37px;
  top: 30px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-image: url("../img/arrow01.svg");
  background-size: 10px auto;
  font-size: 0px;
  z-index: 50;
}
.benefits2-section .benefits-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.benefits2-section .benefits-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 12px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.benefits2-section .benefits-slider .slick-arrow.slick-next {
  right: 15px;
}
.benefits2-section .benefits-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 12px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.columns4-section {
  padding: 0px 0px 75px;
}
.columns4-section .section-title {
  padding-top: 100px;
  text-align: center;
}
.columns4-section .section-title h6 {
  color: #30B6FF;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.columns4-section .spacer {
  padding: 75px 0px;
}
.columns4-section .image-slider .slick-list {
  overflow: visible;
}
.columns4-section .image-slider .slick-slide p {
  min-height: 42px;
  text-align: center;
  margin: 0px;
}
.columns4-section .image-slider .slick-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns4-section .image-slider .slick-slide img.no-shd {
  background-color: transparent;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.columns4-section .image-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 24px;
  height: 24px;
  left: 50%;
  bottom: -50px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/circle-arrow.svg");
  background-size: contain;
  font-size: 0px;
  z-index: 50;
}
.columns4-section .image-slider .slick-arrow.slick-prev {
  margin-left: -34px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.columns4-section .image-slider .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.5;
}
.columns4-section .image-slider .slick-arrow.slick-next {
  margin-left: 10px;
}
.columns4-section .image-slider .slick-arrow.slick-next.slick-disabled {
  opacity: 0.5;
}
.columns4-section .mobile-media {
  display: none;
}
.columns4-section .image-block {
  width: 100%;
}
.columns4-section .image-block img {
  max-width: 100%;
  height: auto;
}
.columns4-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns4-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.columns4-section .text-block h3 {
  margin: 0px 0px 30px;
}
.columns4-section .text-block p {
  line-height: 210.2%;
}
.columns4-section .text-block .c-btn {
  margin-top: 30px;
}
.columns4-section .text-block quote {
  display: block;
  font-weight: 600;
  padding: 25px 60px;
  background-image: url("../img/quote-open.svg"), url("../img/quote-close.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
}
.columns4-section .text-block small {
  color: rgba(12, 7, 38, 0.5);
  font-size: 14px;
}
.columns4-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.columns4-section .text-block ul li {
  display: block;
  position: relative;
  line-height: 210.2%;
  padding-left: 20px;
}
.columns4-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.columns4-section .text-block .check-list {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.columns4-section .text-block .check-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 210.2%;
}
.columns4-section .text-block .check-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 8px;
  left: 0px;
  background-color: transparent;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.platform-section {
  position: relative;
  padding: 75px 0px 75px;
}
.platform-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 150px;
  right: 30%;
  width: 9999px;
  background-color: #0F0833;
  background-image: url("../img/shape02.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  border-top-right-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  z-index: -1;
}
.platform-section .section-title {
  padding-right: 25%;
  padding-bottom: 65px;
}
.platform-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 35px;
}
.platform-section .section-title p {
  color: #fff;
  line-height: 210.2%;
  margin: 0px;
}
.platform-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.platform-section .text-block .c-btn {
  margin-top: 25px;
}
.platform-section .image-block {
  width: 100%;
}
.platform-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.platform-section .video-holder {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.platform-section .video-holder iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.promo2-section {
  padding: 120px 0px 120px;
  background-image: url("../img/bg05.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.promo2-section .text-block {
  text-align: center;
}
.promo2-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 20px;
}
.promo2-section .text-block .btn-block {
  padding-top: 40px;
  text-align: center;
}
.promo2-section .text-block .btn-block .app-btn {
  display: inline-block;
  width: 100%;
  max-width: 183px;
  margin: 0px 20px 20px;
  height: 56px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.promo2-section .text-block .btn-block .app-btn.apple-link {
  background-image: url("../img/appstore.jpg");
}
.promo2-section .text-block .btn-block .app-btn.google-link {
  background-image: url("../img/playstore.jpg");
}

.enterprise-section {
  padding: 50px 0px 110px;
}
.enterprise-section .section-title {
  padding-bottom: 35px;
}
.enterprise-section .section-title h2 {
  margin: 0px 0px 25px;
}
.enterprise-section .section-title p {
  line-height: 210.2%;
}
.enterprise-section .text-block p {
  line-height: 210.2%;
}
.enterprise-section .spacer {
  margin-bottom: 55px;
}
.enterprise-section .enterprise-slider .slick-list {
  margin: 0px -15px;
}
.enterprise-section .enterprise-slider .slick-slide {
  padding: 0px 15px;
  margin-bottom: 55px;
}
.enterprise-section .enterprise-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -156px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.enterprise-section .enterprise-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.enterprise-section .enterprise-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.enterprise-section .enterprise-slider .slick-arrow.slick-next {
  right: 0px;
}
.enterprise-section .enterprise-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.enterprise-section .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.enterprise-section .item-box.box-1 {
  background-image: url("../img/bg07a.jpg");
}
.enterprise-section .item-box.box-2 {
  background-image: url("../img/bg07b.jpg");
}
.enterprise-section .item-box:hover {
  border-color: #30B6FF;
}
.enterprise-section .item-box img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
  margin: 0px auto 45px;
}
.enterprise-section .item-box h4 {
  color: #0C0726;
  font-size: 24px;
  margin: 0px 0px 20px;
}
.enterprise-section .item-box h4:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 0px auto 10px;
  background-color: #30B6FF;
}
.enterprise-section .item-box p {
  line-height: 156%;
}

.pricing-section {
  padding: 75px 0px;
  background: rgb(0, 130, 201);
  background: -moz-linear-gradient(top, rgb(0, 130, 201) 0%, rgb(28, 175, 255) 100%);
  background: -webkit-linear-gradient(top, rgb(0, 130, 201) 0%, rgb(28, 175, 255) 100%);
  background: linear-gradient(to bottom, rgb(0, 130, 201) 0%, rgb(28, 175, 255) 100%);
}
.pricing-section .section-title {
  padding-bottom: 20px;
  text-align: center;
}
.pricing-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 5px;
}
.pricing-section .section-title h5 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 210.2%;
  margin: 0px;
}
.pricing-section .section-title p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.pricing-section .pricing-block p {
  color: #fff;
  font-weight: 600;
  line-height: 210.2%;
}
.pricing-section .text-block p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 210.2%;
}
.pricing-section .button-block {
  padding-top: 30px;
  text-align: center;
}
.pricing-section .button-block .c-btn {
  padding: 22px 30px;
}

.needs2-section {
  position: relative;
  padding: 140px 0px 100px;
  background-color: #FFF;
  z-index: 5;
}
.needs2-section .section-title {
  position: relative;
  padding-right: 150px;
  padding-bottom: 50px;
  z-index: 10;
}
.needs2-section .section-title h2 {
  margin: 0px 0px 25px;
}
.needs2-section .section-title p {
  margin: 0px;
}
.needs2-section .needs-slider {
  z-index: 11;
}
.needs2-section .needs-slider .slick-list {
  margin: 0px -15px;
}
.needs2-section .needs-slider .slick-track {
  display: flex !important;
}
.needs2-section .needs-slider .slick-slide {
  margin: 20px 15px 80px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid transparent;
  height: inherit !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
}
.needs2-section .needs-slider .slick-slide:hover {
  border-color: #30B6FF;
}
.needs2-section .needs-slider .slide-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 10px;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.needs2-section .needs-slider .slide-box img {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  margin: 0px auto 15px;
}
.needs2-section .needs-slider .slide-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px auto;
}
.needs2-section .needs-slider .slide-box p {
  color: #0C0726;
  line-height: 210.2%;
  margin: 15px 0px 0px;
}
.needs2-section .needs-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -156px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.needs2-section .needs-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.needs2-section .needs-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.needs2-section .needs-slider .slick-arrow.slick-next {
  right: 0px;
}
.needs2-section .needs-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.columns5-section {
  background: rgb(0, 130, 201);
  background: -moz-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  background: linear-gradient(45deg, rgb(0, 130, 201) 0%, rgb(48, 182, 255) 100%);
  padding: 100px 0px 75px;
}
.columns5-section .section-title {
  text-align: center;
}
.columns5-section .section-title h2 {
  color: #fff;
}
.columns5-section .spacer {
  padding: 75px 0px;
}
.columns5-section .image-slider .slick-list {
  overflow: visible;
}
.columns5-section .image-slider .slick-slide p {
  min-height: 42px;
  text-align: center;
  margin: 0px;
}
.columns5-section .image-slider .slick-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns5-section .image-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 24px;
  height: 24px;
  left: 50%;
  bottom: -50px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/circle-arrow.svg");
  background-size: contain;
  font-size: 0px;
  z-index: 50;
}
.columns5-section .image-slider .slick-arrow.slick-prev {
  margin-left: -34px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.columns5-section .image-slider .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.5;
}
.columns5-section .image-slider .slick-arrow.slick-next {
  margin-left: 10px;
}
.columns5-section .image-slider .slick-arrow.slick-next.slick-disabled {
  opacity: 0.5;
}
.columns5-section .mobile-media {
  display: none;
}
.columns5-section .image-block {
  width: 100%;
}
.columns5-section .image-block img {
  max-width: 100%;
  height: auto;
}
.columns5-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns5-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.columns5-section .column-title {
  padding-bottom: 40px;
  text-align: center;
}
.columns5-section .column-title h3 {
  color: #fff;
  margin: 0px 0px 30px;
}
.columns5-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.columns5-section .text-block .c-btn {
  margin-top: 30px;
}
.columns5-section .text-block quote {
  display: block;
  font-weight: 600;
  padding: 25px 60px;
  background-image: url("../img/quote-open.svg"), url("../img/quote-close.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
}
.columns5-section .text-block small {
  color: rgba(12, 7, 38, 0.5);
  font-size: 14px;
}

.video3-section {
  padding: 80px 0px 40px;
  position: relative;
}
.video3-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 200px;
  background: rgb(48, 182, 255);
  background: -moz-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  z-index: 5;
}
.video3-section .section-title {
  position: relative;
  z-index: 11;
  text-align: center;
  padding-bottom: 65px;
}
.video3-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 45px;
}
.video3-section .section-title p {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 166.2%;
}
.video3-section .section-title .c-btn {
  margin-top: 40px;
}
.video3-section .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  z-index: 11;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.video3-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.get-started-section {
  padding: 50px 0px;
  position: relative;
}
.get-started-section.started2:before {
  display: none;
}
.get-started-section.started2.gr .text-block h3 {
  color: #fff;
}
.get-started-section.started2.gr .text-block p {
  color: #fff;
}
.get-started-section.started2.gr .text-block a:not(.c-btn) {
  color: #fff;
}
.get-started-section.started2 .text-block {
  background: none !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.get-started-section.started2 .text-block h3 {
  color: #000;
}
.get-started-section.started2 .text-block p {
  color: rgba(12, 7, 38, 0.7);
}
.get-started-section.started2 .text-block a:not(.c-btn) {
  color: #30b6ff;
}
.get-started-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #0F0833;
}
.get-started-section .text-block {
  position: relative;
  text-align: center;
  padding: 70px 20px 40px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  background: rgb(48, 182, 255);
  background: -moz-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  z-index: 11;
}
.get-started-section .text-block h3 {
  color: #fff;
  margin: 0px 0px 15px;
}
.get-started-section .text-block p {
  color: #fff;
  line-height: 210.2%;
  margin: 0px 0px 40px;
}
.get-started-section .text-block a:not(.c-btn) {
  color: #fff;
  text-decoration: underline;
}
.get-started-section .text-block .c-btn {
  margin: 0px 10px 20px;
}

.columns6-section {
  padding: 120px 0px 70px;
}
.columns6-section .section-title {
  padding-bottom: 45px;
}
.columns6-section .mobile-media {
  display: none;
}
.columns6-section .col-slider {
  padding: 60px 0px;
}
.columns6-section .col-slider .slick-list {
  overflow: visible;
}
.columns6-section .col-slider h6 {
  color: rgba(12, 7, 38, 0.7);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0px 0px 15px;
}
.columns6-section .col-slider .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns6-section .col-slider .video-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.columns6-section .col-slider .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.columns6-section .col-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 24px;
  height: 24px;
  left: 50%;
  bottom: 10px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/circle-arrow.svg");
  background-size: contain;
  font-size: 0px;
  z-index: 50;
}
.columns6-section .col-slider .slick-arrow.slick-prev {
  margin-left: -34px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.columns6-section .col-slider .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.5;
}
.columns6-section .col-slider .slick-arrow.slick-next {
  margin-left: 10px;
}
.columns6-section .col-slider .slick-arrow.slick-next.slick-disabled {
  opacity: 0.5;
}
.columns6-section .text-block {
  padding: 60px 0px;
}
.columns6-section .text-block h3 {
  margin: 0px 0px 25px;
}
.columns6-section .text-block p {
  line-height: 210.2%;
}
.columns6-section .text-block ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.columns6-section .text-block ul li {
  display: block;
  position: relative;
  line-height: 210.2%;
  padding-left: 20px;
}
.columns6-section .text-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.singles-section {
  padding: 110px 0px 0px;
}
.singles-section .text-block {
  text-align: center;
}
.singles-section .text-block p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}

.promo3-section {
  margin: 50px 0px;
  padding: 75px 0px;
  background: rgb(48, 182, 255);
  background: -moz-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
  background: linear-gradient(45deg, rgb(48, 182, 255) 0%, rgb(0, 130, 201) 100%);
}
.promo3-section .text-block {
  text-align: center;
}
.promo3-section .text-block h3 {
  color: #fff;
  margin: 0px 0px 20px;
}
.promo3-section .text-block p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 210.2%;
}
.promo3-section .text-block .c-btn {
  margin-top: 10px;
}

.content1-section {
  padding: 100px 0px;
}
.content1-section .section-title {
  padding-bottom: 30px;
}
.content1-section .section-title h2 {
  margin: 0px 0px 20px;
}
.content1-section .section-title p {
  line-height: 210.2%;
}
.content1-section .text-block h3 {
  margin: 0px 0px 25px;
}
.content1-section .text-block p {
  line-height: 210.2%;
}
.content1-section .text-block .c-btn {
  margin: 0px 10px 15px 0px;
}
.content1-section .image-block {
  width: 100%;
}
.content1-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}

.documentation-section {
  padding: 65px 0px 55px;
  background-image: url("../img/bg14.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.documentation-section .doc-block img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.documentation-section .doc-block h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 5px;
  text-transform: uppercase;
}
.documentation-section .doc-block p {
  color: #fff;
  line-height: 210.2%;
}
.documentation-section .doc-block .doc-links {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.documentation-section .doc-block .doc-links li {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 210.2%;
}
.documentation-section .doc-block .doc-links li a {
  color: #fff;
  text-decoration: underline;
}
.documentation-section .doc-block .doc-links li a:hover {
  opacity: 0.7;
}
.documentation-section .doc-block .doc-links li:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 8px;
  background-image: url("../img/link-icon.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.documentation-section .help-block img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.documentation-section .help-block h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 5px;
  text-transform: uppercase;
}
.documentation-section .help-block p {
  color: #fff;
  line-height: 210.2%;
}
.documentation-section .help-block .help-links {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.documentation-section .help-block .help-links li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  line-height: 210.2%;
}
.documentation-section .help-block .help-links li a {
  color: #fff;
  text-decoration: underline;
}
.documentation-section .help-block .help-links li a:hover {
  opacity: 0.7;
}
.documentation-section .help-block .help-links li span {
  display: block;
  flex: 0 0 20px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.documentation-section .help2-block {
  padding-top: 122px;
}
.documentation-section .help2-block p {
  color: #fff;
  line-height: 210.2%;
}
.documentation-section .button-block {
  padding-top: 30px;
}

.involved-section {
  padding: 45px 0px 115px;
}
.involved-section .section-title {
  padding-bottom: 10px;
}
.involved-section .section-title img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}
.involved-section .section-title h6 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px 0px 5px;
  text-transform: uppercase;
}
.involved-section .text-block .client-links {
  padding: 0px 0px 20px;
  margin: 0px;
  list-style: none;
}
.involved-section .text-block .client-links li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  line-height: 210.2%;
}
.involved-section .text-block .client-links li a {
  color: rgba(12, 7, 38, 0.7);
  text-decoration: underline;
}
.involved-section .text-block .client-links li span {
  display: block;
  flex: 0 0 20px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.involved-section .text-block p {
  font-size: 18px;
  line-height: 210.2%;
}
.involved-section .text-block small {
  display: block;
  font-size: 16px;
  line-height: 210.2%;
  margin: 20px 0px 15px;
}
.involved-section .text-block a {
  color: #30B6FF;
  text-decoration: underline;
}
.involved-section .text-block a:hover {
  opacity: 0.7;
}
.involved-section .text-block a.file-link {
  position: relative;
  padding-left: 20px;
  color: #0C0726;
}
.involved-section .text-block a.file-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0px;
  width: 18px;
  height: 18px;
  background-image: url("../img/file-icon.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.involved-section .text-block .file-links {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
}
.involved-section .text-block .file-links li {
  margin-right: 15px;
  font-size: 18px;
  line-height: 210.2%;
}
.involved-section .text-block .file-links li a {
  text-decoration: underline;
  position: relative;
  padding-left: 20px;
  color: #0C0726;
}
.involved-section .text-block .file-links li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 18px;
  height: 18px;
  background-image: url("../img/file-icon.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.cards-section {
  padding: 100px 0px 0px;
}
.cards-section .spacer {
  margin-bottom: 100px;
}
.cards-section .group-block img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  margin: 0px 0px 15px 70px;
}
.cards-section .group-block h6 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.cards-section .group-block p {
  line-height: 210.2%;
}
.cards-section .group-block p a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.cards-section .card-block {
  background-color: transparent;
  border-bottom: 1px solid rgba(12, 7, 38, 0.12);
}
.cards-section .card-block.active {
  background-color: #fff;
  margin-bottom: 50px;
  border-bottom: 1px solid transparent;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -webkit-box-shadow: 10px 30px 60px 0px rgba(28, 175, 255, 0.15);
  -moz-box-shadow: 10px 30px 60px 0px rgba(28, 175, 255, 0.15);
  box-shadow: 10px 30px 60px 0px rgba(28, 175, 255, 0.15);
}
.cards-section .card-block.active .card-head:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.cards-section .card-block .card-head {
  cursor: pointer;
  position: relative;
  min-height: 100px;
  width: 100%;
  padding: 25px 50px 25px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cards-section .card-block .card-head img {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.cards-section .card-block .card-head h6 {
  color: #0C0726;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  text-transform: uppercase;
  margin: 0px;
}
.cards-section .card-block .card-head:after {
  content: "";
  position: absolute;
  display: block;
  width: 22px;
  height: 14px;
  top: 50%;
  margin-top: -7px;
  right: 25px;
  background-image: url("../img/card-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.cards-section .card-block .card-main {
  display: none;
  padding: 0px 25px 10px;
}
.cards-section .card-block .card-main p {
  line-height: 210.2%;
  margin: 0px 0px 20px;
}
.cards-section .card-block .card-main p a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.cards-section .card-block .card-main table a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.cards-section .card-block .card-main ul,
.cards-section .card-block .card-main ol {
  padding: 0px 0px 0px 18px;
}
.cards-section .card-block .card-main ul li,
.cards-section .card-block .card-main ol li {
  line-height: 210.2%;
}
.cards-section .card-block .card-main ul li a,
.cards-section .card-block .card-main ol li a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.cards-section .card-block .card-main code {
  font-size: 16px;
  color: rgba(12, 7, 38, 0.5);
}
.cards-section .card-block .card-main .i-btn {
  display: inline-block;
  width: 100%;
  max-width: 183px;
  margin: 0px 15px 15px 0px;
  height: 56px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.cards-section .card-block .card-main .i-btn.appstore {
  background-image: url("../img/appstore.jpg");
}
.cards-section .card-block .card-main .i-btn.playstore {
  background-image: url("../img/playstore.jpg");
}
.cards-section .card-block .card-main .i-btn.f-droid {
  background-image: url("../img/f-droid.jpg");
}
.cards-section .card-block .card-main .a-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  padding: 14px 20px;
  min-width: 220px;
  margin: 0px 15px 15px 0px;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
}
.cards-section .card-block .card-main .a-btn img {
  max-height: 18px;
  max-width: 20px;
  height: auto;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.cards-section .card-block .card-main .a-btn.btn-light {
  border-color: #30B6FF;
  background-color: #30B6FF;
  color: #fff;
}
.cards-section .card-block .card-main .a-btn.btn-dark {
  border-color: #0F0833;
  background-color: #0F0833;
  color: #fff;
}
.cards-section .card-block .card-main .a-btn.btn-docx {
  border-color: #30B6FF;
  background-color: #FFF;
  color: #30B6FF;
}
.cards-section .card-block .card-main .a-btn.btn-source {
  border-color: #0F0833;
  background-color: #FFF;
  color: #0F0833;
}
.cards-section .card-block .card-main .a-btn.btn-android {
  border-color: #30B6FF;
  background-color: #FFF;
  color: #30B6FF;
}
.cards-section .card-block .card-main .a-btn.btn-ios {
  border-color: #0F0833;
  background-color: #FFF;
  color: #0F0833;
}

.custom-modal .modal-content {
  background-image: url("../img/bg08.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.custom-modal .modal-header {
  border: none;
  align-items: flex-start;
}
.custom-modal .modal-header h3 {
  color: #fff;
}
.custom-modal .modal-body .wrap-modal-slider {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  opacity: 0;
}
.custom-modal .modal-body .wrap-modal-slider.open {
  opacity: 1;
}
.custom-modal .modal-body .modal-slider .slick-list {
  margin: 0px -15px;
}
.custom-modal .modal-body .modal-slider .slick-track {
  display: flex !important;
}
.custom-modal .modal-body .modal-slider .slick-slide {
  height: inherit !important;
  margin: 0px 15px;
}
.custom-modal .modal-body .modal-slider .slider-box {
  height: 100%;
  padding: 45px 30px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  text-align: center;
}
.custom-modal .modal-body .modal-slider .slider-box img {
  max-width: 125px;
  max-height: 125px;
  width: auto;
  height: auto;
  margin: 0px auto 45px;
}
.custom-modal .modal-body .modal-slider .slider-box h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 35px;
}
.custom-modal .modal-body .modal-slider .slider-box p {
  line-height: 210.2%;
}
.custom-modal .modal-body .modal-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 24px;
  height: 24px;
  left: 100%;
  bottom: -32px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/circle-arrow.svg");
  background-size: contain;
  font-size: 0px;
  z-index: 50;
}
.custom-modal .modal-body .modal-slider .slick-arrow.slick-prev {
  margin-left: -48px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.custom-modal .modal-body .modal-slider .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.5;
}
.custom-modal .modal-body .modal-slider .slick-arrow.slick-next {
  margin-left: -1rem;
}
.custom-modal .modal-body .modal-slider .slick-arrow.slick-next.slick-disabled {
  opacity: 0.5;
}

.page-nav {
  display: block;
  position: fixed;
  top: 30%;
  left: 0px;
  background-color: #fff;
  border-top-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  padding: 20px 20px 10px 15px;
  margin: 0px;
  list-style: none;
  z-index: 999;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}
.page-nav li {
  display: block;
  margin-bottom: 10px;
}
.page-nav li a {
  color: #0C0726;
  font-size: 16px;
  font-weight: 600;
}
.page-nav li a:after {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  background-color: #30B6FF;
  margin-left: -15px;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
}
.page-nav li a.current-section:after {
  width: 65px;
}

.contact-section {
  padding: 150px 0px 70px;
}
.contact-section .text-block h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 700;
  margin: 0px 0px 20px;
}
.contact-section .text-block p {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}
.contact-section .text-block ul {
  padding: 20px 0px 0px;
  margin: 0px;
  list-style: none;
}
.contact-section .text-block ul li {
  display: block;
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-section .text-block ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.contact-section .text-block ul li a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  background-image: url("../img/link-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
}
.contact-section .form-block {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.contact-section .form-block ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.contact-section .form-block ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.contact-section .form-block :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.contact-section .form-block :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.contact-section .form-block h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 0px 0px 30px;
}
.contact-section .form-block .info-text {
  color: rgba(0, 0, 0, 0.67);
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0px 0px;
}
.contact-section .form-block .info-text::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url("../img/info_circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
}
.contact-section .form-block .nf-form-title, .contact-section .form-block .nf-before-form-content {
  display: none;
}
.contact-section .form-block .nf-form-content {
  padding: 0;
}

.form-holder {
  width: 100%;
}
.form-holder .center {
  text-align: center;
}
.form-holder .submit-holder {
  margin-bottom: 15px;
  width: 100%;
}
.form-holder .submit-holder input[type=submit] {
  display: inline-block;
  min-width: 200px;
  height: 48px;
  background-color: #0F0833;
  border: 1px solid #0f0833;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #fff;
  font-weight: 600;
}
.form-holder .submit-holder input[type=submit]:disabled {
  opacity: 0.2;
}
.form-holder .radio-holder {
  margin-bottom: 30px;
  width: 100%;
}
.form-holder .radio-holder .label {
  display: block;
  line-height: 24px;
  margin: 0px 0px 10px;
}
.form-holder .radio-holder input[type=radio] {
  display: none;
}
.form-holder .radio-holder input[type=radio] + label {
  position: relative;
  padding-left: 30px;
  margin-right: 40px;
  color: #0C0726;
  font-size: 14px;
  line-height: 156%;
  cursor: pointer;
}
.form-holder .radio-holder input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid rgb(85, 81, 103);
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.form-holder .radio-holder input[type=radio] + label::after {
  content: "";
  display: none;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #30B6FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.form-holder .radio-holder input[type=radio] + label a {
  color: #0C0726;
  text-decoration: underline;
}
.form-holder .radio-holder input[type=radio]:checked + label::before {
  border: 2px solid #30B6FF;
}
.form-holder .radio-holder input[type=radio]:checked + label::after {
  display: block;
}
.form-holder .radio-cf7-holder {
  margin-bottom: 10px;
}
.form-holder .radio-cf7-holder .label {
  display: block;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}
.form-holder .radio-cf7-holder br {
  display: none;
}
.form-holder .radio-cf7-holder .wpcf7-list-item {
  margin: 0px;
}
.form-holder .radio-cf7-holder .wpcf7-radio label {
  cursor: pointer;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio] {
  display: none;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio] + span {
  position: relative;
  padding-left: 25px;
  margin-right: 50px;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  height: 16px;
  width: 16px;
  top: 3px;
  border: 2px solid #b8b8b8;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio] + span:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  height: 8px;
  width: 8px;
  top: 7px;
  left: 4px;
  background-color: transparent;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio]:checked + span:before {
  border-color: #30B6FF;
}
.form-holder .radio-cf7-holder .wpcf7-radio input[type=radio]:checked + span:after {
  background-color: #30B6FF;
}
.form-holder .check-holder {
  margin-bottom: 15px;
  width: 100%;
}
.form-holder .check-holder.white-text input[type=checkbox] + label {
  color: #fff;
}
.form-holder .check-holder.white-text input[type=checkbox] + label a {
  color: #fff;
}
.form-holder .check-holder input[type=checkbox] {
  display: none;
}
.form-holder .check-holder input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  color: #0C0726;
  font-size: 14px;
  line-height: 156%;
  cursor: pointer;
}
.form-holder .check-holder input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.form-holder .check-holder input[type=checkbox] + label::after {
  content: "✓";
  display: none;
  position: absolute;
  left: 0px;
  top: -1px;
  width: 20px;
  height: 20px;
  color: #000;
  font-size: 16px;
}
.form-holder .check-holder input[type=checkbox] + label a {
  color: #0C0726;
  text-decoration: underline;
}
.form-holder .check-holder input[type=checkbox]:disabled + label::before {
  background-color: rgba(0, 0, 0, 0.25);
}
.form-holder .check-holder input[type=checkbox]:checked + label::after {
  display: block;
}
.form-holder .check-cf7-holder {
  text-align: left;
  margin-bottom: 15px;
}
.form-holder .check-cf7-holder.white-text input[type=checkbox] + label {
  color: #fff;
}
.form-holder .check-cf7-holder.white-text input[type=checkbox] + label a {
  color: #fff;
}
.form-holder .check-cf7-holder br {
  display: none;
}
.form-holder .check-cf7-holder .wpcf7-list-item {
  margin: 0px;
}
.form-holder .check-cf7-holder .wpcf7-checkbox label {
  cursor: pointer;
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 25px;
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox] + span:after {
  content: "✓";
  display: none;
  position: absolute;
  left: 0px;
  top: -1px;
  width: 20px;
  height: 20px;
  color: #000;
  font-size: 16px;
  text-align: center;
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox]:disabled + span:before {
  background-color: rgba(0, 0, 0, 0.25);
}
.form-holder .check-cf7-holder .wpcf7-checkbox input[type=checkbox]:checked + span:after {
  display: block;
}
.form-holder .check-cf7-holder a {
  color: #0C0726;
  text-decoration: underline;
}
.form-holder .input-holder {
  margin-bottom: 15px;
  width: 100%;
}
.form-holder .input-holder.hidden {
  display: none;
}
.form-holder .input-holder br {
  display: none;
}
.form-holder .input-holder label {
  line-height: 24px;
  font-weight: 400;
  margin: 0px 0px 10px;
}
.form-holder .input-holder input {
  width: 100%;
  height: 48px;
  padding: 0px 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #000;
  font-size: 16px;
}
.form-holder .input-holder textarea {
  width: 100%;
  height: 96px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #000;
  font-size: 16px;
  resize: none;
}
.form-holder .input-holder.selection.hide-first .options li:first-child {
  display: none;
}
.form-holder .input-holder.selection.limited .options {
  max-height: 160px;
  overflow-y: scroll;
}
.form-holder .input-holder.selection .s-hidden {
  visibility: hidden;
  padding-right: 30px;
}
.form-holder .input-holder.selection .select {
  width: 100%;
  height: 48px;
  cursor: pointer;
  display: block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  position: relative;
  font-size: 16px;
  color: #000000;
  text-align: left;
}
.form-holder .input-holder.selection .styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 40px 0px 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
}
.form-holder .input-holder.selection .styledSelect:after {
  content: "";
  width: 54px;
  height: 46px;
  background-color: #fff;
  background-image: url("../img/toggle-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.form-holder .input-holder.selection .styledSelect:active,
.form-holder .input-holder.selection .styledSelect.active {
  border-bottom-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  border-bottom: 1px solid transparent;
}
.form-holder .input-holder.selection .styledSelect:active::after,
.form-holder .input-holder.selection .styledSelect.active::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.form-holder .input-holder.selection .options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  left: 0px;
  z-index: 999;
  margin: -2px 0px 0px;
  padding: 0px;
  list-style: none;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
}
.form-holder .input-holder.selection .options li {
  margin: 0px;
  padding: 5px 15px;
}
.form-holder .input-holder.selection .options li:last-child {
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
}
.form-holder .input-holder.selection .options li:hover {
  background-color: #30B6FF;
  color: #fff;
}

.map-section .map-block {
  position: relative;
}
.map-section .map-block img {
  max-width: 100%;
  height: auto;
}
.map-section .map-block ul {
  position: absolute;
  top: 50px;
  right: 0px;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.map-section .map-block ul li {
  display: block;
  width: 360px;
  background-color: #fff;
  padding: 20px 20px 20px 70px;
  margin: 0px 0px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  background-image: url("../img/location-icon.svg");
  background-repeat: no-repeat;
  background-position: left 24px top 18px;
}
.map-section .map-block ul li h5 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 10px;
}
.map-section .map-block ul li p {
  line-height: 24px;
  margin: 0px;
}

.quote-section {
  padding: 20px 0px 40px;
}
.quote-section .form-block h2 {
  margin: 50px 0px 20px;
}
.quote-section .form-holder {
  padding: 30px 0px 0px;
}
.quote-section .form-holder .submit-holder {
  padding-top: 20px;
}
.quote-section .form-holder ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.quote-section .form-holder ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.quote-section .form-holder :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.quote-section .form-holder :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}

.info-section {
  position: relative;
  z-index: 5;
}
.info-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #0F0833;
  z-index: 1;
}
.info-section .text-block {
  position: relative;
  text-align: center;
  padding: 80px 140px 60px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  z-index: 10;
}
.info-section .text-block img {
  margin-bottom: 20px;
}
.info-section .text-block p {
  color: #fff;
  font-weight: 600;
}

.trial-section {
  padding: 20px 0px 40px;
}
.trial-section .form-block h3 {
  font-size: 56px;
  margin: 50px 0px 20px;
}
.trial-section .form-holder {
  padding: 30px 0px 0px;
}
.trial-section .form-holder .submit-holder {
  padding-top: 20px;
}
.trial-section .form-holder .text-holder p {
  font-size: 12px;
  line-height: 18px;
}
.trial-section .form-holder .text-holder p a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.trial-section .form-holder ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.trial-section .form-holder ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.trial-section .form-holder :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.trial-section .form-holder :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}

.partner-section {
  padding: 60px 0px 50px;
}
.partner-section .section-title {
  padding-bottom: 60px;
}
.partner-section .section-title p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
  text-align: center;
}
.partner-section ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.partner-section ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.partner-section :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.partner-section :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}

.marketing-section {
  padding: 180px 0px 140px;
}
.marketing-section .section-title h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 700;
  margin: 0px 0px 30px;
}
.marketing-section .section-title p {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}
.marketing-section .text-block p {
  color: #fff;
  font-size: 18px;
  line-height: 24x;
}
.marketing-section .form-block {
  padding: 50px 25px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.marketing-section ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.marketing-section ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.marketing-section :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.marketing-section :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}

.text1-section {
  padding: 60px 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #0F0833;
}
.text1-section .text-block {
  text-align: center;
}
.text1-section .text-block h3 {
  color: #fff;
  margin: 0px 0px 40px;
}
.text1-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.text1-section .text-block p a {
  color: #fff;
  text-decoration: underline;
}

.order-form-section {
  position: relative;
  padding: 50px 0px 150px;
}
.order-form-section .text-holder {
  padding-top: 50px;
  padding-bottom: 30px;
}
.order-form-section .text-holder h4 {
  color: #0C0726;
  font-size: 48px;
  font-weight: 700;
  margin: 0px 0px 15px;
}
.order-form-section .text-holder p {
  line-height: 24px;
}
.order-form-section .text-input {
  margin: 0px 0px 15px;
}
.order-form-section .text-input p {
  font-size: 12px;
  line-height: 18px;
  margin: 0px;
}
.order-form-section .text-input p a {
  color: #30B6FF;
  font-weight: 600;
  text-decoration: underline;
}
.order-form-section .form-inner {
  margin-top: 50px;
  padding: 40px 25px;
  border: 2px solid #30B6FF;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.order-form-section .form-inner .price {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: rgba(12, 7, 38, 0.5);
  margin: 0px 0px 10px;
}
.order-form-section .form-inner .price #totalprice {
  color: #30B6FF;
  font-weight: 700;
}
.order-form-section .form-inner h3 {
  color: rgba(12, 7, 38, 0.5);
  font-size: 12px;
  line-height: 18px;
  margin: 0px;
  text-align: center;
}
.order-form-section .form-inner h3::after {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background-color: #30B6FF;
  margin: 25px auto 30px;
}
.order-form-section .form-inner h6 {
  color: #0C0726;
  font-size: 14px;
  font-weight: 700;
  line-height: 156%;
  margin: 0px 0px 15px;
}
.order-form-section .form-inner #form-error {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #FF0000;
}
.order-form-section .form-inner #form-error.hidden {
  display: none;
}
.order-form-section ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.order-form-section ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.order-form-section :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.order-form-section :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}

.ionos-form-section {
  position: relative;
  padding: 50px 0px 150px;
}
.ionos-form-section .text-holder {
  padding-top: 50px;
  padding-bottom: 30px;
}
.ionos-form-section .text-holder h4 {
  color: #0C0726;
  font-size: 48px;
  font-weight: 700;
  margin: 0px 0px 15px;
}
.ionos-form-section .text-holder p {
  line-height: 24px;
}
.ionos-form-section .form-inner {
  margin-top: 50px;
  padding: 40px 25px;
  border: 2px solid #30B6FF;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.ionos-form-section .form-inner .price {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: rgba(12, 7, 38, 0.5);
  margin: 0px 0px 10px;
}
.ionos-form-section .form-inner .price #totalprice {
  color: #30B6FF;
  font-weight: 700;
}
.ionos-form-section .form-inner h3 {
  color: rgba(12, 7, 38, 0.5);
  font-size: 12px;
  line-height: 18px;
  margin: 0px;
  text-align: center;
}
.ionos-form-section .form-inner h3::after {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background-color: #30B6FF;
  margin: 25px auto 30px;
}
.ionos-form-section .form-inner h6 {
  color: #0C0726;
  font-size: 14px;
  font-weight: 700;
  line-height: 156%;
  margin: 0px 0px 15px;
}
.ionos-form-section .form-inner #form-error {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #FF0000;
}
.ionos-form-section .form-inner #form-error.hidden {
  display: none;
}
.ionos-form-section ::-webkit-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.ionos-form-section ::-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.ionos-form-section :-ms-input-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.ionos-form-section :-moz-placeholder {
  color: #0a92dc;
  opacity: 1;
}
.ionos-form-section .text-block {
  padding: 50px 0px;
}
.ionos-form-section .text-block h6 {
  color: #0C0726;
  font-size: 16px;
  font-weight: 700;
  line-height: 156%;
  margin: 0px 0px 15px;
}
.ionos-form-section .text-block .bullet-list {
  padding: 15px 0px 65px;
  margin: 0px;
  list-style: none;
}
.ionos-form-section .text-block .bullet-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 166.2%;
  margin: 0px 0px 10px;
}
.ionos-form-section .text-block .bullet-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 4px;
  left: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.boxes-section {
  padding: 25px 0px 110px;
}
.boxes-section .spacer {
  margin-bottom: 15px;
}
.boxes-section .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  overflow: hidden;
}
.boxes-section .item-box.box-1 {
  background-image: url("../img/bg07a.jpg");
  background-position: bottom -250px center;
}
.boxes-section .item-box.box-2 {
  background-image: url("../img/bg07a.jpg");
  background-position: bottom -100px center;
}
.boxes-section .item-box.box-3 {
  background-image: url("../img/bg07a.jpg");
  background-position: bottom -300px center;
}
.boxes-section .item-box:hover {
  border-color: #30B6FF;
}
.boxes-section .item-box .item-img {
  width: 100%;
  height: 0px;
  padding-top: 55%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.boxes-section .item-box .item-body {
  padding: 20px;
}
.boxes-section .item-box .item-body h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px 5px;
}
.boxes-section .item-box .item-body h6 {
  color: #0C0726;
  font-size: 14px;
  font-weight: 400;
  margin: 0px 0px 15px;
}
.boxes-section .item-box .item-body p {
  line-height: 156%;
}
.boxes-section .item-box .item-body .c-btn {
  margin-top: 20px;
  min-width: 140px;
  padding: 11px 30px;
  font-size: 16px;
}

.signup-section {
  padding: 175px 0px 100px;
}
.signup-section .image-block {
  padding: 50px 0px 0px;
  text-align: center;
}
.signup-section .image-block img {
  max-width: 100%;
  height: auto;
}
.signup-section .text-block h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 700;
  margin: 0px 0px 10px;
  text-align: center;
}
.signup-section .text-block p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 166.2%;
  text-align: center;
}
.signup-section .form-block {
  width: 100%;
  margin: 45px auto 0px;
}
.signup-section .form-block ::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.signup-section .form-block ::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.signup-section .form-block :-ms-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.signup-section .form-block :-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.signup-section .form-block .form-holder {
  width: 100%;
  position: relative;
}
.signup-section .form-block .form-holder .input-holder {
  width: 100%;
}
.signup-section .form-block .form-holder .input-holder input {
  width: 100%;
  height: 70px;
  padding: 0px 180px 0px 25px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background-color: transparent;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #fff;
  font-size: 18px;
}
.signup-section .form-block .form-holder .submit-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 175px;
  height: 70px;
}
.signup-section .form-block .form-holder .submit-holder input {
  width: 100%;
  height: 70px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #30B6FF;
  font-size: 18px;
  font-weight: 600;
}
.signup-section .form-block .form-holder .check-holder {
  text-align: center;
}
.signup-section .form-block .form-holder .check-holder label {
  color: #fff;
  margin: 0px 20px 10px;
}

.providers-section {
  padding: 100px 0px 25px;
}
.providers-section .spacer {
  margin-bottom: 25px;
}
.providers-section .item-box {
  width: 100%;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  display: flex;
  flex-direction: row;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
}
.providers-section .item-box:hover {
  border-color: #30B6FF;
}
.providers-section .item-box .item-img {
  flex: 0 0 64px;
  width: 64px;
}
.providers-section .item-box .item-img img {
  max-width: 64px;
  height: auto;
}
.providers-section .item-box .item-body {
  flex: 1;
  padding-left: 20px;
}
.providers-section .item-box .item-body h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 10px;
}
.providers-section .item-box .item-body p {
  color: #0C0726;
  line-height: 24px;
}
.providers-section .item-box .item-body .c-btn {
  padding: 11px 30px;
  font-size: 16px;
}

.industries-section {
  padding: 110px 0px 45px;
}
.industries-section .section-title {
  padding-bottom: 100px;
  text-align: center;
}
.industries-section .section-title p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.industries-section .text-block {
  padding-bottom: 55px;
}
.industries-section .text-block h2 {
  margin: 0px 0px 45px;
}
.industries-section .text-block p {
  font-weight: 600;
}
.industries-section .spacer {
  margin-bottom: 45px;
}
.industries-section .item-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 10px 60px;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: 2px solid #FFF;
}
.industries-section .item-box:hover {
  border-color: #30B6FF;
}
.industries-section .item-box img {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  margin: 0px auto 15px;
}
.industries-section .item-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px auto;
}
.industries-section .item-box p {
  color: #0C0726;
  line-height: 210.2%;
  margin: 15px 0px 0px;
}

.analysis-section {
  padding: 110px 0px 45px;
}
.analysis-section .section-title {
  padding-bottom: 100px;
  text-align: center;
}
.analysis-section .section-title p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.analysis-section .text-block {
  position: relative;
  padding: 60px 0px;
  z-index: 5;
}
.analysis-section .text-block::before {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  right: -300px;
  bottom: 0px;
  width: 9999px;
  background-color: #0F0833;
  background-image: url("../img/shape01.jpg");
  background-repeat: no-repeat;
  background-position: right 1000px bottom;
  z-index: -1;
}
.analysis-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 30px;
}
.analysis-section .text-block p {
  color: #fff;
  line-height: 210.2%;
}
.analysis-section .quote-circle {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  -moz-box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  z-index: 6;
}
.analysis-section .quote-circle .quote-inner {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.analysis-section .quote-circle .quote-inner .quote-block {
  background-image: url("../img/quote-open.svg"), url("../img/quote-close.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left 20px, bottom right 20px;
  padding: 40px 20px;
}
.analysis-section .quote-circle .quote-inner .quote-block p {
  color: #263238;
  font-size: 18px;
  line-height: 210.2%;
  text-align: center;
  margin: 0px;
}
.analysis-section .quote-circle .quote-inner .rest {
  text-align: center;
}
.analysis-section .quote-circle .quote-inner .rest:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 10px auto 20px;
  background-color: #30B6FF;
}
.analysis-section .quote-circle .quote-inner .rest h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px;
}
.analysis-section .quote-circle .quote-inner .rest span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px;
}
.analysis-section .quote-circle .quote-inner .rest a {
  color: #30B6FF;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px;
}
.analysis-section .form-box {
  width: 100%;
}
.analysis-section .form-box ::-webkit-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.analysis-section .form-box ::-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.analysis-section .form-box :-ms-input-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.analysis-section .form-box :-moz-placeholder {
  color: #6C6C6C;
  opacity: 1;
}
.analysis-section .form-box .form-holder {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.analysis-section .form-box .form-holder .input-holder {
  margin-right: 15px;
  width: 60%;
}
.analysis-section .form-box .form-holder .input-holder input {
  width: 100%;
  height: 48px;
  padding: 0px 180px 0px 25px;
  border: 2px solid #FFF;
  background-color: #FFF;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #000;
  font-size: 16px;
}
.analysis-section .form-box .form-holder .submit-holder {
  width: 140px;
  height: 48px;
}
.analysis-section .form-box .form-holder .submit-holder input {
  width: 100%;
  height: 48px;
  border: 1px solid #30B6FF;
  background-color: #30B6FF;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}
.analysis-section .form-box .form-holder .check-holder {
  padding-top: 25px;
  text-align: left;
  margin-bottom: 10px;
}
.analysis-section .form-box .form-holder .check-holder p {
  display: inline;
  color: #fff;
  font-size: 14px;
}
.analysis-section .form-box .form-holder .check-holder p a {
  color: #fff;
  text-decoration: underline;
}
.analysis-section .form-box .form-holder .check-holder br {
  display: none;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-list-item {
  margin: 0px;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-checkbox label {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 30px;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 20px;
  width: 20px;
  top: 2px;
  left: 0px;
  background-color: #fff;
  background-image: url("../img/check-square.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.analysis-section .form-box .form-holder .check-holder .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background-color: transparent;
}

.content2-section {
  padding: 110px 0px 60px;
}
.content2-section .text-block h3 {
  margin: 0px 0px 25px;
}
.content2-section .text-block p {
  line-height: 210.2%;
}
.content2-section .text-block p a {
  color: #30B6FF;
  text-decoration: underline;
}
.content2-section .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
}
.content2-section .image-block p {
  line-height: 210.2%;
  margin: 40px 0px 0px;
}

.squote2-section {
  padding: 50px 0px;
}
.squote2-section .round-block {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  -moz-box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  box-shadow: 5px 5px 30px 0px rgba(0, 130, 201, 0.15);
  z-index: 6;
}
.squote2-section .round-block .round-inner {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.squote2-section .round-block .round-inner p {
  color: #263238;
  font-size: 18px;
  line-height: 210.2%;
  text-align: center;
}
.squote2-section .text-block {
  position: relative;
  padding: 120px 0px;
}
.squote2-section .text-block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  background-color: #0F0833;
  width: 1100px;
  left: -250px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  z-index: -1;
  background-image: url("../img/shape01.jpg");
  background-repeat: no-repeat;
  background-position: left 900px bottom;
}
.squote2-section .text-block .quote-block {
  background-image: url("../img/quote-open.svg"), url("../img/quote-close.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  padding: 20px 50px 5px;
}
.squote2-section .text-block .quote-block p {
  color: #fff;
  font-size: 18px;
  line-height: 210.2%;
}
.squote2-section .text-block .rest {
  padding: 0px 50px;
}
.squote2-section .text-block .rest:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 50px 0px 30px;
  background-color: #30B6FF;
}
.squote2-section .text-block .rest img {
  max-width: 100%;
  height: auto;
}

.integration-section {
  padding: 65px 0px 110px;
}
.integration-section .section-title {
  padding-bottom: 70px;
  text-align: center;
}
.integration-section .section-title h2 {
  margin: 0px 0px 25px;
}
.integration-section .spacer {
  margin-bottom: 15px;
}
.integration-section .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.integration-section .item-box.box-1 {
  background-image: url("../img/bg07a.jpg");
}
.integration-section .item-box.box-2 {
  background-image: url("../img/bg07b.jpg");
}
.integration-section .item-box:hover {
  border-color: #30B6FF;
}
.integration-section .item-box img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
}
.integration-section .item-box p {
  line-height: 156%;
}
.integration-section .item-box p:before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin: 30px auto 30px;
  background-color: #30B6FF;
}

.subs2-section {
  padding: 70px 0px;
  position: relative;
  background-image: url("../img/bg15.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 5;
}
.subs2-section .text-block {
  position: relative;
  text-align: center;
}
.subs2-section .text-block h2 {
  color: #fff;
  margin: 0px 0px 50px;
}
.subs2-section .text-block p {
  color: #fff;
  line-height: 210.2%;
  margin: 0px 0px 30px;
}
.subs2-section .text-block p small {
  display: block;
  font-size: 14px;
  max-width: 620px;
  width: 100%;
  margin: 0px auto;
}
.subs2-section .text-block h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 210.2%;
  margin: 0px 0px 20px;
}
.subs2-section .text-block .form-block {
  width: 100%;
  max-width: 585px;
  margin: 0px auto;
}
.subs2-section .text-block .form-block .form-holder {
  width: 100%;
  position: relative;
}
.subs2-section .text-block .form-block .form-holder ::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.subs2-section .text-block .form-block .form-holder ::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.subs2-section .text-block .form-block .form-holder :-ms-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.subs2-section .text-block .form-block .form-holder :-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.subs2-section .text-block .form-block .form-holder .input-holder {
  width: 100%;
}
.subs2-section .text-block .form-block .form-holder .input-holder input {
  width: 100%;
  height: 70px;
  padding: 0px 180px 0px 25px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background-color: transparent;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #fff;
  font-size: 18px;
}
.subs2-section .text-block .form-block .form-holder .submit-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 175px;
  height: 70px;
}
.subs2-section .text-block .form-block .form-holder .submit-holder input {
  width: 100%;
  height: 70px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #30B6FF;
  font-size: 18px;
  font-weight: 600;
}
.subs2-section .text-block .form-block .form-holder .check-holder {
  padding-top: 25px;
  text-align: left;
  margin-bottom: 10px;
}
.subs2-section .text-block .form-block .form-holder .check-holder p {
  display: inline;
  color: #fff;
  font-size: 14px;
}
.subs2-section .text-block .form-block .form-holder .check-holder p a {
  color: #fff;
  text-decoration: underline;
}
.subs2-section .text-block .form-block .form-holder .check-holder br {
  display: none;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-list-item {
  margin: 0px;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox label {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 50px;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 25px;
  background-color: #fff;
  background-image: url("../img/check-square.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.subs2-section .text-block .form-block .form-holder .check-holder .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background-color: transparent;
}

.text2-section {
  padding: 50px 0px 100px;
}
.text2-section .section-title {
  padding-bottom: 65px;
  text-align: center;
}
.text2-section .section-title h6 {
  color: #30B6FF;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.text2-section .section-title p {
  line-height: 210.2%;
  margin: 0px;
}
.text2-section .text-block p {
  line-height: 210.2%;
}
.text2-section .text-block ol li,
.text2-section .text-block ul li {
  line-height: 210.2%;
}
.text2-section .text-block a {
  color: #30B6FF;
}

.data-sheet-section,
.whitepaper-section,
.case-study-section {
  padding: 80px 0px;
}
.data-sheet-section .section-title,
.whitepaper-section .section-title,
.case-study-section .section-title {
  padding-right: 180px;
  padding-bottom: 50px;
}
.data-sheet-section .section-title h2,
.whitepaper-section .section-title h2,
.case-study-section .section-title h2 {
  margin: 0px 0px 10px;
}
.data-sheet-section .section-title p,
.whitepaper-section .section-title p,
.case-study-section .section-title p {
  line-height: 210.2%;
}
.data-sheet-section .section-title p small,
.whitepaper-section .section-title p small,
.case-study-section .section-title p small {
  color: rgba(12, 7, 38, 0.5);
  display: block;
  font-size: 14px;
}
.data-sheet-section .case-slider,
.whitepaper-section .case-slider,
.case-study-section .case-slider {
  width: 100%;
}
.data-sheet-section .case-slider .slick-list,
.whitepaper-section .case-slider .slick-list,
.case-study-section .case-slider .slick-list {
  margin: 0px -10px;
}
.data-sheet-section .case-slider .slick-track,
.whitepaper-section .case-slider .slick-track,
.case-study-section .case-slider .slick-track {
  display: flex !important;
}
.data-sheet-section .case-slider .slick-slide,
.whitepaper-section .case-slider .slick-slide,
.case-study-section .case-slider .slick-slide {
  height: inherit !important;
  padding: 20px 10px;
}
.data-sheet-section .case-slider .slick-arrow,
.whitepaper-section .case-slider .slick-arrow,
.case-study-section .case-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -156px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.data-sheet-section .case-slider .slick-arrow.slick-prev,
.whitepaper-section .case-slider .slick-arrow.slick-prev,
.case-study-section .case-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.data-sheet-section .case-slider .slick-arrow.slick-prev.slick-disabled,
.whitepaper-section .case-slider .slick-arrow.slick-prev.slick-disabled,
.case-study-section .case-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.data-sheet-section .case-slider .slick-arrow.slick-next,
.whitepaper-section .case-slider .slick-arrow.slick-next,
.case-study-section .case-slider .slick-arrow.slick-next {
  right: 0px;
}
.data-sheet-section .case-slider .slick-arrow.slick-next.slick-disabled,
.whitepaper-section .case-slider .slick-arrow.slick-next.slick-disabled,
.case-study-section .case-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.post-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.14);
  -moz-box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.14);
  box-shadow: 0px 8px 10px 0px rgba(0, 116, 178, 0.14);
  overflow: hidden;
}
.post-holder .post-img {
  width: 100%;
  height: 0px;
  padding-top: 55%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0px;
}
.post-holder .post-body {
  margin: 0px;
  padding: 20px 20px 25px;
}
.post-holder .post-body h5 {
  min-height: 60px;
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px 10px;
}
.post-holder .post-body p {
  line-height: 156%;
  margin: 0px;
}
.post-holder .form-body {
  width: 100%;
  margin: auto 0px 0px 0px;
  padding: 0px 20px 20px;
}
.post-holder .form-body .wpcf7 form.invalid .wpcf7-response-output,
.post-holder .form-body .wpcf7 form.unaccepted .wpcf7-response-output,
.post-holder .form-body .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
}
.post-holder .form-body .wpcf7-not-valid-tip {
  font-size: 12px;
}
.post-holder .form-body .form-holder {
  width: 100%;
  position: relative;
}
.post-holder .form-body .form-holder .input-holder {
  width: 100%;
}
.post-holder .form-body .form-holder .input-holder.hidden-input {
  display: none;
}
.post-holder .form-body .form-holder .input-holder input {
  width: 100%;
  height: 48px;
  padding: 0px 160px 0px 20px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #000;
  font-size: 16px;
}
.post-holder .form-body .form-holder .submit-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 140px;
  height: 48px;
}
.post-holder .form-body .form-holder .submit-holder input {
  width: 100%;
  min-width: 140px;
  height: 48px;
  border: 1px solid #0F0833;
  background-color: #0F0833;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}
.post-holder .form-body .form-holder .check-holder {
  padding-top: 0px;
  text-align: left;
  margin-bottom: 10px;
}
.post-holder .form-body .form-holder .check-holder p {
  display: inline;
  color: #000;
  font-size: 14px;
}
.post-holder .form-body .form-holder .check-holder p a {
  color: #000;
  text-decoration: underline;
}
.post-holder .form-body .form-holder .check-holder br {
  display: none;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-list-item {
  margin: 0px;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-checkbox label {
  cursor: pointer;
  color: #000;
  font-size: 14px;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 25px;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-checkbox input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  background-color: #FFF;
  background-image: url("../img/check-square.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.post-holder .form-body .form-holder .check-holder .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background-color: #000;
}

.video4-section {
  padding: 110px 0px 80px;
  background-color: #0F0833;
}
.video4-section .section-title {
  padding-bottom: 70px;
  text-align: center;
}
.video4-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 10px;
}
.video4-section .section-title p {
  color: #fff;
  margin: 0px;
}
.video4-section .spacer {
  margin-bottom: 30px;
}
.video4-section .video-block {
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.video4-section .video-block iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.team-section {
  padding: 100px 0px 50px;
}
.team-section .section-title {
  padding-bottom: 80px;
  text-align: center;
}
.team-section .section-title p {
  font-size: 18px;
  font-weight: 600;
  line-height: 210.2%;
}
.team-section .text-block {
  padding-top: 110px;
  padding-bottom: 40px;
  text-align: center;
}
.team-section .spacer {
  margin-bottom: 30px;
}
.team-section .member-holder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  background-image: url("../img/shape03.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  overflow: hidden;
}
.team-section .member-holder .member-img {
  width: 100%;
  height: 0px;
  padding-top: 88%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.team-section .member-holder .member-body {
  padding: 20px 25px;
}
.team-section .member-holder .member-body h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 700;
  margin: 0px;
}
.team-section .member-holder .member-body h5 {
  color: #0C0726;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0px;
}
.team-section .member-holder .member-body h6 {
  color: #0C0726;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0px 0px 15px;
  opacity: 0.5;
}
.team-section .member-holder .member-body p {
  font-size: 14px;
  line-height: 22px;
  margin: 0px 0px 15px;
}
.team-section .member-holder .member-body ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: 0px;
}
.team-section .member-holder .member-body ul li {
  display: inline-block;
  margin: 0px 10px 10px 0px;
}
.team-section .member-holder .member-body ul li img {
  max-width: 24px;
  max-height: 24px;
  width: auto;
  height: auto;
}

.single-hero-section {
  padding: 200px 0px 40px;
  background-image: url("../img/bg16.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.single-hero-section .section-title {
  padding-bottom: 100px;
  text-align: center;
}
.single-hero-section .section-title h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 0px;
}
.single-hero-section .date-block {
  text-align: center;
}
.single-hero-section .date-block p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px;
}
.single-hero-section .date-block p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -4px;
  margin-right: 10px;
  background-image: url("../img/calender.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  vertical-align: middle;
}
.single-hero-section .cat-block {
  text-align: center;
}
.single-hero-section .cat-block ul {
  background-image: url("../img/tag.svg");
  background-repeat: no-repeat;
  background-position: left top 5px;
  background-size: auto;
  padding: 0px 0px 0px 34px;
  margin: 0px auto;
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.single-hero-section .cat-block ul a:focus, .single-hero-section .cat-block ul a:hover {
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
  outline: none;
}
.single-hero-section .cat-block ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
}
.single-hero-section .cat-block ul li::before {
  content: ", ";
}
.single-hero-section .cat-block ul li:first-child::before {
  content: "";
}
.single-hero-section .author-block {
  text-align: center;
}
.single-hero-section .author-block p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 166.2%;
  margin: 0px;
}
.single-hero-section .author-block p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -4px;
  margin-right: 10px;
  background-image: url("../img/user.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  vertical-align: middle;
}
.single-hero-section .share-block {
  padding: 40px 0px 0px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.single-hero-section .share-block a {
  margin: 0px 15px;
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 32px;
  padding: 4px;
  width: 40px;
}
.single-hero-section .share-block a:focus {
  box-shadow: 0 0 0 2px white;
  outline: none;
  border-radius: 50%;
}

.related-posts-section {
  padding: 60px 0px 80px;
}
.related-posts-section .section-title {
  text-align: center;
  padding-bottom: 50px;
}
.related-posts-section .related-slider .slick-list {
  margin: 0px -30px;
}
.related-posts-section .related-slider .slick-track {
  display: flex !important;
}
.related-posts-section .related-slider .slick-slide {
  height: inherit !important;
  padding: 30px;
}
.related-posts-section .related-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 24px;
  height: 24px;
  left: 50%;
  bottom: -50px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/circle-arrow.svg");
  background-size: contain;
  font-size: 0px;
  z-index: 50;
}
.related-posts-section .related-slider .slick-arrow.slick-prev {
  margin-left: -34px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.related-posts-section .related-slider .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.5;
}
.related-posts-section .related-slider .slick-arrow.slick-next {
  margin-left: 10px;
}
.related-posts-section .related-slider .slick-arrow.slick-next.slick-disabled {
  opacity: 0.5;
}

.blog-section {
  padding: 90px 0px 0px;
}
.blog-section .section-title {
  padding-bottom: 90px;
}
.blog-section .section-button {
  text-align: center;
}
.blog-section .section-button #loadNews {
  display: none;
  margin: 30px auto 50px;
}
.blog-section .form-holder {
  padding-bottom: 90px;
}
.blog-section .form-holder .search-form {
  width: 100%;
  position: relative;
}
.blog-section .form-holder .search-form label {
  width: 100%;
}
.blog-section .form-holder .search-form .search-field {
  width: 100%;
  height: 75px;
  padding: 0px 90px 0px 30px;
  border: 1px solid rgba(12, 7, 38, 0.15);
  color: #000;
  font-size: 16px;
  border-radius: 38px;
  -webkit-border-radius: 38px;
}
.blog-section .form-holder .search-form .search-submit {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 73px;
  height: 73px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 0px;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.blog-section .spacer {
  margin-bottom: 30px;
}

.post-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
}
.post-box .post-img {
  width: 100%;
  height: 0px;
  padding-top: 45%;
  background-color: #30B6FF;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.post-box .post-body {
  padding: 20px 25px 75px;
}
.post-box .post-body h4 {
  color: #0082C9;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0px 0px 10px;
}
.post-box .post-body p {
  font-size: 12px;
  line-height: 17px;
}
.post-box .post-body .c-btn {
  position: absolute;
  bottom: 35px;
  left: 25px;
  min-width: 110px;
  background-color: #0082C9;
  border: 1px solid #0082C9;
  padding: 7px 20px;
  font-size: 10px;
  line-height: 14px;
}
.post-box .post-body .c-btn:hover {
  color: #0082C9;
  background-color: #fff;
}

.faq-section {
  padding: 100px 0px;
  background-color: #0f0833;
}
.faq-section .text-block {
  padding-bottom: 60px;
}
.faq-section .text-block h2 {
  color: #fff;
}
.faq-section .accord-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.faq-section .accords {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
}
.faq-section .accords.accord2 {
  padding-left: 15px;
  padding-right: 0px;
}
.faq-section .accords .card {
  width: 100%;
  padding: 0px 30px;
  background-color: transparent;
  border: 1px solid transparent;
  margin: 0px 0px 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.faq-section .accords .card.active {
  border: 1px solid #211949;
}
.faq-section .accords .card .card-header {
  padding: 0px;
  border: none;
  background-color: transparent;
  border-radius: none;
  -webkit-border-radius: none;
}
.faq-section .accords .card .card-header button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 50px 20px 0px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.faq-section .accords .card .card-header button:after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 14px;
  top: 20px;
  right: 0px;
  background-image: url("../img/arrow03.svg");
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.faq-section .accords .card .card-header button.collapsed {
  color: #fff;
}
.faq-section .accords .card .card-header button.collapsed:after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.faq-section .accords .card .card-body {
  padding: 0px;
}
.faq-section .accords .card .card-body p {
  color: #fff;
  line-height: 210.2%;
  margin: 0px 0px 20px;
}

.jobs-section {
  padding: 50px 0px;
}
.jobs-section .spacer {
  margin-bottom: 30px;
}
.jobs-section .section-title {
  padding-bottom: 80px;
}
.jobs-section .job-box {
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  padding: 45px 25px 75px;
}
.jobs-section .job-box:hover {
  border: 1px solid #0082C9;
}
.jobs-section .job-box:hover h4 {
  color: #0082C9;
}
.jobs-section .job-box h4 {
  min-height: 60px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0px 0px 30px;
}
.jobs-section .job-box p {
  font-size: 12px;
  line-height: 17px;
}
.jobs-section .job-box .c-btn {
  position: absolute;
  bottom: 35px;
  left: 25px;
  min-width: 110px;
  background-color: #0082C9;
  border: 1px solid #0082C9;
  padding: 7px 20px;
  font-size: 10px;
  line-height: 14px;
}
.jobs-section .job-box .c-btn:hover {
  color: #0082C9;
  background-color: #fff;
}

.benefits3-section {
  position: relative;
  padding: 40px 0px 85px;
  background-color: #FFF;
  z-index: 5;
}
.benefits3-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 185px;
  left: 0px;
  background-image: url("../img/bg02.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.benefits3-section .section-title {
  padding-right: 170px;
  padding-bottom: 50px;
}
.benefits3-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 25px;
}
.benefits3-section .section-title p {
  color: #fff;
}
.benefits3-section .spacer {
  margin-bottom: 55px;
}
.benefits3-section .benefits2-slider .slick-list {
  margin: 0px -20px;
}
.benefits3-section .benefits2-slider .slick-track {
  display: flex !important;
}
.benefits3-section .benefits2-slider .slick-slide {
  padding: 50px 20px;
  height: inherit !important;
}
.benefits3-section .benefits2-slider .slick-arrow {
  display: block;
  position: absolute;
  padding: 0px;
  width: 61px;
  height: 61px;
  top: -156px;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #004871;
  background-repeat: no-repeat;
  background-position: left 26px center;
  background-image: url("../img/arrow01.svg");
  font-size: 0px;
  z-index: 50;
}
.benefits3-section .benefits2-slider .slick-arrow.slick-prev {
  right: 76px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.benefits3-section .benefits2-slider .slick-arrow.slick-prev.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.benefits3-section .benefits2-slider .slick-arrow.slick-next {
  right: 0px;
}
.benefits3-section .benefits2-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  background-image: url("../img/arrow02.svg");
  background-position: left 23px center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.benefits3-section .slide-box {
  width: 100%;
  height: 100%;
  padding: 35px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  text-align: center;
}
.benefits3-section .slide-box:hover {
  border-color: #0082C9;
}
.benefits3-section .slide-box img {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  margin: 0px auto 15px;
}
.benefits3-section .slide-box h4 {
  color: #0C0726;
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 20px;
}
.benefits3-section .slide-box p {
  line-height: 210.2%;
}

.post-single-section {
  padding: 100px 0px 110px;
}
.post-single-section .text-block .fa-check {
  color: rgb(22, 227, 0) !important;
}
.post-single-section .text-block .fa-times {
  color: #ff0000;
}
.post-single-section .text-block .table th {
  text-align: center;
}
.post-single-section .text-block .table th img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0px auto;
}
.post-single-section .text-block .search-form {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
}
.post-single-section .text-block .search-form label {
  width: 100%;
}
.post-single-section .text-block .search-form .search-field {
  width: 100%;
  height: 55px;
  padding: 0px 90px 0px 30px;
  border: 1px solid rgba(12, 7, 38, 0.15);
  color: #000;
  font-size: 16px;
  border-radius: 38px;
  -webkit-border-radius: 38px;
}
.post-single-section .text-block .search-form .search-submit {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 73px;
  height: 53px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 0px;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.post-single-section .text-block a, .post-single-section .text-block a:active, .post-single-section .text-block a:visited, .post-single-section .text-block a:hover {
  text-decoration: underline;
}
.post-single-section .text-block h1 {
  font-size: 58px;
  color: #0c0726;
  font-weight: 700;
  margin: 30px 0px 15px;
}
.post-single-section .text-block h2 {
  color: #0c0726;
  font-size: 42px;
  font-weight: 700;
  margin: 30px 0px 15px;
}
.post-single-section .text-block h3 {
  color: #0c0726;
  font-size: 36px;
  font-weight: 700;
  margin: 25px 0px 10px;
}
.post-single-section .text-block h4 {
  color: #0c0726;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0px 10px;
}
.post-single-section .text-block h5 {
  color: #0c0726;
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0px 10px;
}
.post-single-section .text-block h6 {
  color: #0c0726;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0px 10px;
}
.post-single-section .text-block p, .post-single-section .text-block li {
  line-height: 1.6;
}
.post-single-section .text-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0px 20px;
}
.post-single-section .text-block img.aligncenter {
  margin: 0.5rem auto;
}
.post-single-section .text-block img.alignright {
  margin: 0.5rem 0px 0.5rem auto;
}
.post-single-section .text-block a:not(.c-btn) {
  color: #30B6FF;
}
.post-single-section .text-block a:not(.c-btn):hover {
  color: #000;
}

.whitepaper-list-section {
  padding: 100px 0px 90px;
}
.whitepaper-list-section .section-title {
  padding-bottom: 70px;
}
.whitepaper-list-section .section-title h2 {
  margin: 0px 0px 30px;
}
.whitepaper-list-section .spacer {
  margin-bottom: 30px;
}
.whitepaper-list-section .paper-box {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
}
.whitepaper-list-section .paper-box:hover {
  border-color: #0082C9;
}
.whitepaper-list-section .paper-box .cats {
  padding: 0px;
  margin: 0px 0px 30px;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.whitepaper-list-section .paper-box .cats li {
  margin-right: 5px;
  color: rgba(108, 108, 108, 0.5);
  font-size: 14px;
}
.whitepaper-list-section .paper-box .cats li a {
  color: #30B6FF;
}
.whitepaper-list-section .paper-box h4 {
  color: #0082C9;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0px 0px 40px;
}
.whitepaper-list-section .paper-box .info {
  padding: 0px;
  margin: auto 0px 0px 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.whitepaper-list-section .paper-box .info li {
  color: rgba(108, 108, 108, 0.5);
  font-size: 14px;
}
.whitepaper-list-section .paper-box .c-btn {
  bottom: 35px;
  left: 25px;
  min-width: 110px;
  background-color: #0082C9;
  border: 1px solid #0082C9;
  padding: 9px 20px;
  font-size: 10px;
  line-height: 14px;
}
.whitepaper-list-section .paper-box .c-btn:hover {
  color: #0082C9;
  background-color: #fff;
}

.img-cols-section {
  padding: 65px 0px;
}
.img-cols-section .section-title {
  text-align: center;
  padding-bottom: 65px;
}
.img-cols-section .section-title h2 {
  margin: 0px 0px 20px;
}
.img-cols-section .spacer {
  margin-bottom: 30px;
}
.img-cols-section .img-col-block {
  padding-bottom: 10px;
  width: 100%;
}
.img-cols-section .img-col-block.center-it {
  text-align: center;
}
.img-cols-section .img-col-block .the-img {
  margin-bottom: 20px;
  width: 100%;
}
.img-cols-section .img-col-block .the-img img {
  max-width: 100%;
  height: auto;
}
.img-cols-section .img-col-block p {
  line-height: 210.2%;
}
.img-cols-section .img-col-block h4 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 20px;
}
.img-cols-section .img-col-block a:not(.c-btn) {
  color: #30b6ff;
  text-decoration: underline;
}
.img-cols-section .img-col-block ul {
  padding: 0px 0px 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.img-cols-section .img-col-block ul li {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 166.2%;
  margin-bottom: 10px;
}
.img-cols-section .img-col-block ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 5px;
  left: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.events-section {
  padding: 75px 0px;
}
.events-section .section-title {
  text-align: center;
  padding-bottom: 50px;
}
.events-section .section-title h2 {
  color: #fff;
  margin: 0px 0px 20px;
}
.events-section .section-title p {
  color: #fff;
}
.events-section .section-title p a {
  color: #fff;
  text-decoration: underline;
}
.events-section .button-block {
  text-align: center;
  padding-top: 30px;
}
.events-section .spacer {
  margin-bottom: 30px;
}
.events-section .event-box {
  height: 100%;
}
.events-section .event-box .event-img {
  width: 100%;
  height: 0px;
  padding-top: 140%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.counter-section {
  padding: 100px 0px;
}
.counter-section .text-block {
  width: 100%;
}
.counter-section .text-block #counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.counter-section .text-block #counter .block {
  flex: 0 0 200px;
  width: 200px;
  padding-top: 30px;
  margin: 0px 10px;
  text-align: center;
  color: #000;
  font-size: 72px;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 116, 178, 0.08);
}
.counter-section .text-block #counter .block .text {
  display: block;
  margin-top: 30px;
  padding: 10px;
  background-color: #0082c9;
  color: #fff;
  font-size: 24px;
}

.price-tab-section {
  padding: 80px 0px 0px;
}
.price-tab-section .section-title {
  padding-bottom: 20px;
  text-align: center;
}
.price-tab-section .section-title h2 {
  margin: 0px 0px 20px;
}
.price-tab-section .section-title h4 {
  font-size: 24px;
  margin: 0px 0px 20px;
}
.price-tab-section .section-title h4 a {
  color: rgba(12, 7, 38, 0.7);
  text-decoration: underline;
}
.price-tab-section .section-title p {
  font-size: 18px;
}
.price-tab-section .section-title p a {
  color: #1CAFFF;
}
.price-tab-section .tabs-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.price-tab-section .tabs-block .tab-buttons {
  display: none;
  flex: 0 0 100%;
  width: 100%;
  padding: 0px;
  margin: 0px 0px 50px;
  list-style: none;
  flex-direction: row;
}
.price-tab-section .tabs-block .tab-buttons li {
  margin-right: 35px;
}
.price-tab-section .tabs-block .tab-buttons li button {
  border: none;
  padding: 5px 0px;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  color: #0C0726;
  font-size: 16px;
}
.price-tab-section .tabs-block .tab-buttons li button.active {
  border-bottom: 2px solid #30B6FF;
}
.price-tab-section .tabs-block .plan-holder {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  padding: 0px 15px;
  margin-bottom: 75px;
  background-color: #fff;
}
.price-tab-section .tabs-block .plan-holder.box1 .plan-box .plan-head {
  background-color: rgba(48, 182, 255, 0.5);
  border-bottom: 2px solid #30B6FF;
}
.price-tab-section .tabs-block .plan-holder.box2 .plan-box .plan-head {
  background-color: #30B6FF;
  border-bottom: 2px solid #0082C9;
}
.price-tab-section .tabs-block .plan-holder.box3 .plan-box .plan-head {
  background-color: #0082C9;
  border-bottom: 2px solid rgba(48, 182, 255, 0.5);
  color: #fff;
}
.price-tab-section .tabs-block .plan-holder.box3 .plan-box .plan-head h3 {
  color: #fff;
}
.price-tab-section .tabs-block .plan-holder .plan-box {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  -moz-box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  box-shadow: 0px 8px 30px 0px rgba(0, 130, 201, 0.08);
  overflow: hidden;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-head {
  text-align: center;
  padding: 25px 10px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-head h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0px 0px 15px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-head p {
  font-size: 14px;
  margin: 0px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body {
  background-image: url("../img/bg17.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 20px 25px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part:first-child::before {
  display: none;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part::before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  margin-bottom: 20px;
  background-color: #30b6ff;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part h4 {
  color: #263238;
  font-size: 16px;
  font-weight: 700;
  margin: 0px 0px 15px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul {
  padding: 0px;
  margin: 0px 0px 20px;
  list-style: none;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul li {
  display: block;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
  line-height: 210.2%;
  margin-bottom: 10px;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul li a {
  color: rgba(12, 7, 38, 0.7);
  text-decoration: underline;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul li.tr {
  color: #D7D7D7;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul li.tr a {
  color: #D7D7D7;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-body .plan-part ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 7px;
  left: 0px;
  background-color: transparent;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.price-tab-section .tabs-block .plan-holder .plan-box .plan-foot {
  padding: 20px 10px;
  text-align: center;
}

.footnote-section {
  padding: 50px 0px;
  background-color: #0f0833;
}
.footnote-section .text-block p {
  color: #fff;
  font-size: 14px;
  line-height: 36px;
}

.section-intro {
  padding: 180px 0px 100px;
}
.section-intro .section-title {
  text-align: center;
}
.section-intro .section-title h4 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0px 0px 25px;
}

.podcast-section {
  padding: 150px 0px 100px;
}
.podcast-section .section-title {
  text-align: center;
  padding-bottom: 45px;
}
.podcast-section #podcast-player {
  width: 100%;
}
.podcast-section #podcast-player iframe {
  width: 100%;
}
.podcast-section .links {
  padding: 0px;
  margin: 75px 0px 0px;
  list-style: none;
}
.podcast-section .links li {
  display: block;
  text-align: center;
  margin: 0px 0px 20px;
}
.podcast-section .links li h4 {
  margin-bottom: 50px;
}
.podcast-section .links li a {
  color: #0082C9;
  text-decoration: underline;
}

.single-post .platform-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  right: 30%;
  width: 9999px;
  background-color: #0f0833;
  background-image: url(dist/img/shape02.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  border-top-right-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  z-index: -1;
}

.single-post .platform-section h2 {
  color: #fff !important;
}

@media (max-width: 1399.98px) {
  footer #menu-footer-menu-container {
    padding: 50px 0px 40px 120px;
  }
}
@media (max-width: 991.98px) {
  .squote2-section .round-block {
    padding: 40px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    height: auto;
  }
  .squote2-section .round-block .round-inner {
    position: relative;
    padding: 0px;
  }

  .analysis-section .quote-circle {
    padding: 40px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    height: auto;
  }
  .analysis-section .quote-circle .quote-inner {
    position: relative;
    padding: 0px;
  }

  .squote2-section .text-block:before {
    bottom: -100px;
  }

  .analysis-section .text-block:before {
    bottom: -100px;
  }

  .data-sheet-section .section-title,
.whitepaper-section .section-title,
.case-study-section .section-title {
    padding-right: 0px;
  }

  .faq-section .accords {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
  }
  .faq-section .accords.accord2 {
    padding-left: 0px;
  }

  .blog-section .section-title {
    text-align: center;
    padding-bottom: 20px;
  }

  .map-section .map-block ul {
    position: relative;
    padding: 50px 0px;
    top: auto;
  }
  .map-section .map-block ul li {
    width: 100%;
  }

  .contact-section .text-block {
    margin-bottom: 45px;
  }

  .page-nav {
    display: none;
  }

  .documentation-section .help2-block {
    padding: 0px;
  }

  .documentation-section .help-block,
.documentation-section .doc-block,
.cards-section .group-block {
    margin-bottom: 75px;
  }

  .columns5-section .column-title {
    padding-bottom: 10px;
  }

  .content1-section .image-block,
.columns5-section .video-block {
    margin-bottom: 30px;
  }

  .video-section .video-block {
    margin-bottom: 40px;
  }

  .capabilities-section .capabilities-slider {
    margin: 0px;
  }

  .whatsets-section .image-block img {
    max-width: 100%;
    height: auto;
  }

  .benefits-section .button-block,
.benefits-section .text-block {
    text-align: center;
  }

  .benefits-section .benefits-slider {
    margin: 0px;
  }

  .columns2-section .image-block,
.columns2-section .video-block {
    margin-bottom: 30px;
  }

  .hosting-section .spacer {
    margin-bottom: 100px;
  }

  .needs2-section .needs-slider {
    padding-top: 50px;
  }

  .needs2-section .needs-slider .slick-arrow {
    top: 20px;
  }

  .needs2-section .section-title {
    padding: 0px 0px 20px;
  }

  .pricing-section .text-block {
    text-align: center;
    margin-top: 20px;
  }

  .pricing-section .pricing-block p {
    text-align: center;
  }

  .enterprise-section .enterprise-slider {
    padding-top: 70px;
  }

  .collaboration3-section .coll-slider .slick-slide .row {
    height: auto;
  }

  .collaboration3-section .video-block,
.collaboration3-section .image-block {
    display: none;
  }

  .collaboration3-section .mobile-media {
    display: block;
    margin-bottom: 30px;
  }
  .collaboration3-section .mobile-media .image-block {
    display: block;
  }
  .collaboration3-section .mobile-media .video-block {
    display: block;
  }

  .collaboration3-section .coll-slider {
    padding-top: 100px;
  }

  .collaboration3-section .section-title {
    padding: 0px 0px 20px 0px;
  }

  .platform-section .text-block {
    margin-bottom: 40px;
  }

  .platform-section {
    background-color: #0f0833;
  }
  .platform-section:before {
    display: none;
  }

  .columns4-section .mobile-media .image-slider img {
    max-width: 100%;
    height: auto;
  }

  .columns4-section .image-slider .slick-arrow {
    bottom: 0px;
  }

  .columns4-section .image-slider {
    display: none;
  }

  .columns4-section .video-block {
    display: none;
  }

  .columns4-section .mobile-media {
    display: block;
    margin-bottom: 30px;
  }
  .columns4-section .mobile-media .video-block {
    display: block;
  }
  .columns4-section .mobile-media .image-slider {
    display: block;
    padding-bottom: 50px;
  }

  .benefits2-section .benefits-slider {
    padding-top: 100px;
    margin: 0px;
  }

  .squote-section .image-block {
    margin-top: 50px;
  }

  .squote-section .image-block:before {
    display: none;
  }

  .squote-section {
    padding: 125px 0 50px;
    background-color: #0f0833;
  }

  .compliance-section .coll-slider .slick-slide .row {
    height: auto;
  }

  .compliance-section .image-block {
    display: none;
  }

  .compliance-section .mobile-media {
    display: block;
  }
  .compliance-section .mobile-media .image-block {
    display: block;
    margin-bottom: 30px;
  }

  .compliance-section .coll-slider .slick-arrow {
    top: 0px;
  }

  .ucol-section .bottom-block {
    padding-top: 30px;
  }

  .columns3-section .image-block,
.ucol-section .image-block {
    display: none;
  }

  .columns3-section .text-block .mobile-media,
.ucol-section .text-block .mobile-media {
    display: block;
    margin-bottom: 30px;
  }

  .video2-section .text-block {
    padding-top: 30px;
  }

  .custom-modal .modal-body {
    padding-bottom: 45px;
  }

  footer .foot-text {
    text-align: center;
  }

  footer .social-media-holder .social-menu {
    justify-content: center;
  }
  footer .social-media-holder .social-menu li {
    margin: 0px 15px 15px;
  }

  .more-about-section .box .box-body {
    text-align: center;
  }

  .compliant-section .cont-box.box-1 {
    margin-top: 50px;
  }

  .compliant-section .cont-box.box-3 {
    margin-top: 0px;
  }

  .compliant-section .text-block {
    text-align: center;
  }

  .columns-section .text-block h2 {
    margin: 0px 0px 30px;
  }

  .columns-section .text-block .mobile-media {
    display: block;
  }

  .columns-section .image-block {
    display: none;
  }

  .products-section {
    padding-bottom: 0px;
  }
  .products-section:before {
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 88px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  .products-section .button-block {
    margin-top: 100px;
  }
  .products-section .button-block .video-btn {
    width: 175px;
    height: 175px;
    padding: 30px 0 0;
    background-position: left 80px top 60px, center center;
    background-size: 20px 20px, cover;
    font-size: 14px;
  }

  .muchmore-section .section-title {
    padding: 0px 0px 30px;
  }

  .muchmore-section .more-slider {
    padding-top: 50px;
  }

  .enterprise-section .enterprise-slider .slick-arrow {
    top: 0px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .enterprise-section .enterprise-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .enterprise-section .enterprise-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .muchmore-section .more-slider .slick-arrow {
    top: 0px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .muchmore-section .more-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .muchmore-section .more-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .collaboration3-section .coll-slider .slick-arrow {
    top: 0px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .collaboration3-section .coll-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .collaboration3-section .coll-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .needs2-section .needs-slider .slick-arrow {
    top: 0px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .needs2-section .needs-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .needs2-section .needs-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .needs-section .needs-slider .slick-arrow {
    top: -50px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .needs-section .needs-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .needs-section .needs-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .benefits3-section .benefits2-slider .slick-arrow {
    top: -30px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .benefits3-section .benefits2-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .benefits3-section .benefits2-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .data-sheet-section .case-slider .slick-arrow,
.whitepaper-section .case-slider .slick-arrow,
.case-study-section .case-slider .slick-arrow {
    top: -30px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .data-sheet-section .case-slider .slick-arrow.slick-prev.slick-disabled,
.whitepaper-section .case-slider .slick-arrow.slick-prev.slick-disabled,
.case-study-section .case-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .data-sheet-section .case-slider .slick-arrow.slick-next.slick-disabled,
.whitepaper-section .case-slider .slick-arrow.slick-next.slick-disabled,
.case-study-section .case-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .compliance-section .coll-slider .slick-arrow {
    top: 0px;
    width: 37px;
    height: 37px;
    background-position: left 15px center;
    background-size: 10px auto;
  }
  .compliance-section .coll-slider .slick-arrow.slick-prev.slick-disabled {
    background-position: left 12px center;
  }
  .compliance-section .coll-slider .slick-arrow.slick-next.slick-disabled {
    background-position: left 12px center;
  }

  .benefits3-section .section-title {
    padding-right: 0px;
  }

  .needs-section .section-title {
    padding: 0px 0px 70px 0px;
  }

  .why-section .text-block {
    text-align: center;
    padding: 0px 0px 30px;
  }
  .why-section .text-block .c-btn {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 15px;
  }

  .why-section:before {
    display: none;
  }

  .marketing-section .section-title h1,
.contact-section .text-block h1,
.signup-section .text-block h1,
.page-hero-section .section-title h1,
.home-hero-section .section-title h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 48px;
  }

  .trial-section .form-block h3,
h3 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .info-section .text-block {
    padding: 80px 20px 60px;
  }

  .capabilities2-section .notation-list {
    width: 100%;
  }

  .capabilities2-section .capabilities-list li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-modal .modal-body .modal-slider .slider-box {
    padding: 45px 10px;
  }

  .signup-section .form-block .form-holder .input-holder input,
.subs-section .text-block .form-block .form-holder .input-holder input {
    padding: 0px 25px;
  }

  .signup-section .form-block .form-holder .submit-holder,
.subs-section .text-block .form-block .form-holder .submit-holder {
    position: relative;
    margin: 20px auto 10px;
  }

  .home-hero-section .image-block img {
    max-height: 450px;
    width: auto;
  }

  .single-hero-section .section-title h1,
.marketing-section .section-title h1,
.contact-section .text-block h1,
.signup-section .text-block h1,
.page-hero-section .section-title h1,
.home-hero-section .section-title h1 {
    font-size: 36px;
    line-height: normal;
  }

  h2 {
    font-size: 32px;
  }

  .trial-section .form-block h3,
h3 {
    font-size: 28px;
  }

  .post-single-section .text-block h1 {
    font-size: 36px;
  }
  .post-single-section .text-block h2 {
    font-size: 32px;
  }
  .post-single-section .text-block h3 {
    font-size: 28px;
  }
  .post-single-section .text-block h4 {
    font-size: 24px;
  }
  .post-single-section .text-block h5 {
    font-size: 20px;
  }
  .post-single-section .text-block h6 {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .contact-section .text-block ul li a,
.contact-section .text-block p {
    font-size: 18px;
    line-height: 24px;
  }

  .providers-section .item-box {
    display: block;
    padding: 15px;
  }
  .providers-section .item-box .item-body {
    padding: 10px 0px 0px;
  }

  .squote-section .text-block .rest {
    padding: 0px;
  }

  .squote-section .text-block .quote-block {
    padding: 40px 0px 20px;
  }

  .squote-section .image-block img {
    max-width: 100%;
    height: auto;
  }

  .capabilities2-section .capabilities-list li {
    font-size: 16px;
  }

  .compliant-section .cont-box {
    padding: 65px 10px 25px;
  }
  .compliant-section .cont-box h4 {
    font-size: 16px;
  }
}
.wpml-floating-language-switcher .wpml-ls-statics-shortcode_actions {
  margin-bottom: 0;
}

.wpml-floating-language-switcher .wpml-ls-statics-shortcode_actions a {
  background-color: transparent !important;
}

.wpml-floating-language-switcher .wpml-ls-legacy-list-horizontal a {
  padding: 5px;
}

.wpml-ls-item:not(.wpml-ls-item-en):not(.wpml-ls-item-de):not(.wpml-ls-item-fr) {
  display: none;
}

/*Customize this if you want*/
.wpml-floating-language-switcher {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #f8f8f8;
  /*background color*/
  border: 1px solid #eee;
  padding: 0;
  border-radius: 6px;
  z-index: 9999999;
  /*Box Shadow*/
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

/*# sourceMappingURL=theme.min.css.map */
