/* === General === */

@font-face {
  font-family: "Light";
  src: url("../fonts/Gilroy-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "SemiBold";
  src: url("../fonts/Gilroy-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
  font-display: swap;
}

* {
  font-family: "Medium";
  box-sizing: border-box;
  margin: 0;
}

*:focus {
  outline: none;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
  display: inline-block;
}

:root {
  font-size: 16px;
  --text-color1: #12153A;
}

@media (min-width: 1px) and (max-width: 575.9px) {
  :root {
    font-size: 13px;
  }
}

@media (min-width: 576px) and (max-width: 991.9px) {
  :root {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
  :root {
    font-size: 15px;
  }
}

/* === Key Frames Animation === */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* === Header === */

header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: 0.3s;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

header.down {
  background-color: rgba(255, 255, 255, 0.85);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

header img.logo {
  width: auto;
  height: 1.875rem;
  max-width: 11rem;
  transition: 0.3s;
}

header.down img.logo {
  height: 1.625rem;
}

header ul {
  list-style: none;
  padding: 0;
}

header .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

header .links li,
header .multiLangs {
  position: relative;
}

header .links li ul,
header .multiLangs ul {
  position: absolute;
  left: 50%;
  top: 2rem;
  z-index: 9;
  transform: translateX(-50%);
  min-width: 100%;
  width: auto;
  white-space: nowrap;
  display: none;
  max-height: 75vh;
  overflow: auto;
}

header .multiLangs ul {
  top: 3rem;
}

header .multiLangs span.active {
  background-color: #5433FF;
  border-color: #5433FF;
}

header .multiLangs span svg [stroke] {
  transition: 0.3s;
}

header .multiLangs span.active svg [stroke] {
  stroke: #fff;
}

header .links li a.active+ul,
header .multiLangs span.active+ul {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

header .links li ul li a,
header .multiLangs ul li a {
  display: flex;
  padding: 0.625rem 1rem;
  background-color: #F6F5FF;
  transition: 0.3s;
  color: var(--text-color1);
  font-size: 0.9375rem;
}

header .links li ul li a,
header .multiLangs ul li a {
  border-bottom: 1px solid #F6F5FF;
}


header .links li ul li a:hover,
header .multiLangs ul li a:hover {
  background-color: #efeef7;
}

header .links li ul li:first-child a,
header .multiLangs ul li:first-child a {
  border-start-start-radius: 0.25rem;
  border-start-end-radius: 0.25rem;
}

header .links li ul li:last-child a,
header .multiLangs ul li:last-child a {
  border-end-start-radius: 0.25rem;
  border-end-end-radius: 0.25rem;
  border-bottom: none;
}

header .links a,
header .multiLangs a {
  text-transform: capitalize;
  display: flex !important;
  align-items: center;
  color: var(--text-color1);
}

header .multiLangs {
  margin-inline-end: 0.75rem;
}

header .multiLangs span {
  border: 1px solid var(--text-color1);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  transition: 0.3s;
  cursor: pointer;
}

header .multiLangs span svg {
  height: 1.5rem;
  width: 1.5rem;
  flex: 0 0 1.5rem;
}

header .multiLangs a img {
  border-radius: 50%;
  object-fit: contain;
}

.getInTouch {
  padding: 0 0.75rem;
  min-height: 2.25rem;
  border: 1px solid var(--text-color1);
  border-radius: 3rem;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: var(--text-color1);
}

.menuMobile {
  display: flex;
  align-items: center;
}

.menuMobile svg {
  width: 2.25rem;
  height: auto;
}

.col-links+.bg {
  display: none;
}

@media (max-width: 991.9px) {
  .col-links {
    position: fixed;
    top: 0;
    left: -75vw;
    width: 75vw;
    height: 100vh;
    background-color: #fff;
    transition: 0.3s;
    padding: 1.25rem;
    overflow: auto;
    z-index: 9;
  }

  .col-links.show {
    left: 0;
  }

  .col-links+.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 5;
  }

  .col-links.show+.bg {
    display: block;
    animation: fadeIn 0.3s linear;
  }

  .getInTouch {
    margin-inline-end: 0.75rem;
  }

  .col-links .links {
    flex-direction: column;
    align-items: flex-start;
  }

  header .links li ul {
    position: static;
    transform: unset;
    margin-top: 1rem;
    max-height: unset;
  }

  header .links li ul li a {
    padding: 0.5rem;
  }
}

/* === Hero Section === */

header+div {
  padding-top: 8rem;
}

.hero {
  background-image: url('../imgs/hero-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% calc(100% - 3rem);
  background-position: top;
  padding-bottom: 5rem;
}

.hero .title-hero {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.description-text,
.tag {
  color: #2A1AEE;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  padding: 0.625rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  background: rgba(42, 26, 238, 0.10);
}

.title-hero h1 {
  color: #12153A;
  font-size: 3.625rem;
  margin-bottom: 0.8125rem;
  font-weight: 700;
}

.title-hero p {
  color: #425466;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-bottom: 1.9375rem;
}

.btn.btn-basic {
  display: inline-flex;
  padding: 0.875rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2.5rem;
  background: #4353FF;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn.btn-basic:hover {
  background: #6573ff;
  transform: scale(1.025);
}

.btn.btn-basic svg {
  transition: 0.3s;
}

.btn.btn-basic:hover svg {
  transform: translateX(7px);
}

.hero-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

/* === Numbers === */

.numbers {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.numbers .img {
  position: relative;
}

.numbers img {
  width: calc((5 / 6) * 100%);
}

.numbers .boxes {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
  gap: 1.25rem;
}

@media (max-width: 575.9px) {
  .numbers img {
    width: 100%;
  }

  .numbers .boxes {
    position: static;
    transform: unset;
  }
}

.numbers .boxes>div {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.875rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}

.numbers .boxes>div .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}

.numbers .boxes>div .icon svg {
  height: 1.875rem;
  width: auto;
  max-width: 1.875rem;
}

.numbers .boxes strong {
  color: #000;
  font-size: 3rem;
  font-weight: 500;
}

.numbers .boxes span {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.numbers .main-text span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.numbers .main-text h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.numbers .main-text p {
  color: #425466;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.numbers .main-text a,
.btn-secondary {
  display: inline-flex;
  padding: 0.875rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2.5rem;
  color: #12153A;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #12153A;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.numbers .main-text a:hover,
.btn-secondary:hover {
  background: #6573ff;
  transform: scale(1.025);
  color: #FFF;
  border: 1px solid #6573ff;
}

.numbers .main-text a:hover svg [fill],
.btn-secondary:hover svg [fill] {
  fill: #FFF;
}

/* === Services === */

.services,
.contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services span,
.contact span,
.related-article span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.services h2,
.contact h2,
.related-article h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

.services .item img {
  width: 91px;
  height: 91px;
}

.services .item h3 {
  margin-top: 1.875rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services .item p {
  color: #425466;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

/* === reliable-testing ===*/

.container-fluid-reliable {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.reliable-testing {
  background: #5433FF;
  text-align: center;
  padding: 5rem 2rem;
}

.reliable-testing h3 {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.btn.btn-testing {
  display: inline-flex;
  padding: 0.875rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2.5rem;
  border: 1px solid #9CFFAC;
  color: #9CFFAC;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn.btn-testing:hover {
  background: #fff;
  color: #1180FF;
  border: 1px solid #fff;
}

.btn.btn-testing:hover svg path {
  fill: #1180FF;
}

/*=== indusrty ===*/

.indusrty,
.features,
.ways-working {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.indusrty .row,
.features .row {
  align-items: stretch !important;
}

.indusrty span,
.features span,
.ways-working span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
}

.indusrty h2,
.features h2,
.ways-working h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 3.125rem;
}

.item-industry,
.item-feature {
  padding: 2.5rem 0.75rem;
  background: #F6F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.item-industry img,
.item-feature img {
  max-width: 2.5rem;
  width: auto;
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.item-industry span,
.item-feature span {
  color: #000;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* === Methodology === */

.methodology,
.our-team {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.methodology span,
.our-team span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.methodology h2,
.our-team h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 3.75rem;
}

.methodology img {
  width: 100%;
  height: auto;
}

.methodology .img-mob {
  width: 75%;
  margin: auto;
}

/* === Team === */

.row-team {
  margin-top: 3.5rem;
}

.box-person-team {
  height: 100%;
  padding: 5.625rem 2rem 2.8125rem;
  background-color: #F6F5FF;
}

.box-person-team .img img {
  width: 12.5rem;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.box-person-team .text {
  margin-top: 1.25rem;
  text-align: center;
}

.box-person-team .text h4 {
  font-size: 1.5rem;
  color: #000;
  font-family: 'SemiBold';
}

.box-person-team .text span {
  font-size: 1rem;
  color: #5433FF;
  font-family: 'Medium';
}

.box-person-team .text p {
  font-size: 1rem;
  color: #425466;
  line-height: 1.5;
  font-family: 'Regular';
}

/*=== Clients ===*/

.clients {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.clients span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.clients h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.125rem;
}

.clients img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  cursor: pointer;
}

.clients img:hover {
  filter: none;
  -webkit-filter: none;
}

.owl-carousel button.owl-dot.active {
  width: 38px;
  background: #D9D9D9 !important;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: #FD5900 !important;
  width: 10px;
  height: 10px;
  margin: 3px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* vision */
.vision {
  padding-top: 6rem;
  text-align: center;
}

.vision-content {
  gap: 2.5rem;
}

.vision span {
  color: #1180FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vision h2 {
  color: #12153A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.125rem;
}

.vision-title {
  text-align: left;
  background-image: url('../imgs/Group\ 80\ \(1\).svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 493px;
  height: 595.5px;
  padding: 6.25rem 4.125rem;

}

.vision-title h4 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.vision-title p {
  color: #425466;
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
}

.value-title {
  text-align: left;
  background-image: url('../imgs/Frame\ 57.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 493px;
  height: 595.5px;
  padding: 6.25rem 4.125rem;
}

.value-title h4 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.value-title p {
  color: #425466;
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
}

/* === Box Article === */

.box-article .img {
  display: flex;
  margin-bottom: 1.35rem;
  height: 15rem;
}

.box-article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-article .text h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.box-article .tag {
  font-size: 0.75rem;
}

.box-article .text h2 {
  color: var(--text-color1);
  font-size: 1.5rem;
  font-family: "SemiBold";
}

.box-article .text p {
  font-family: "Regular";
  font-size: 1rem;
  color: #425466;
}

.pagination {
  display: inline-flex;
  margin: auto;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1.8rem;
  background-color: #F6F5FF;
  border-radius: 3rem;
  margin-top: 5rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #000000;
  border: 1px solid #F1F1F1;
  background-color: #FFFFFF;
  font-size: 0.8125rem;
}

.pagination a.active {
  background-color: #5433FF;
  border-color: #5433FF;
  color: #fff;
}

.pagination span {
  border-radius: 0.5rem;
}

.pagination svg {
  width: auto;
  height: 0.5rem;
}

/* === Section Before Footer === */

.beforeFooter {
  margin-top: 7rem;
  margin-bottom: 7rem;
  background-color: #5433FF;
}

/* === Footer === */

footer {
  background-image: url('../imgs/footer-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  padding-top: 13.5rem;
}

footer>.container {
  position: relative;
  z-index: 5;
}

footer .desc-company {
  margin-top: 1.625rem;
  margin-block-end: 3.75rem;
}

footer .social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

footer .social a {
  display: inline-flex;
}

footer .social a svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}

footer .title {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  color: var(--text-color1);
  font-family: "SemiBold";
  text-transform: capitalize;
}

footer ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

footer ul li a {
  color: #425466;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

footer ul li a:hover {
  color: var(--text-color1);
}

footer ul:not(.list-contact-us) li a::before {
  content: "";
  width: 0;
  margin-inline-end: 0;
  height: 2px;
  background-color: #000;
  display: inline-block;
  transition: 0.3s;
}

footer ul li a:hover::before {
  width: 0.9375rem;
  margin-inline-end: 0.4rem;
}

footer .list-contact-us li a {
  align-items: flex-start;
  line-height: 1.875;
}

footer ul li .icon {
  display: inline-flex;
  margin-inline-end: 0.9375rem;
}

footer .copy-right {
  margin-top: 2.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-top: 1px solid #CCCCCC;
  text-align: center;
  color: #000;
  font-size: 0.875rem;
}

/* === Single Article === */

.hero-single-article .img {
  position: relative;
}

.hero-single-article .img img {
  width: 100%;
  min-height: 100%;
  height: auto;
}

.hero-single-article .share {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 9;
  background-color: #F6F5FF;
  padding: 1.25rem 0.875rem;
  padding-bottom: 1.75rem;
  border-radius: 2rem;
  gap: 0.5rem;
}

.hero-single-article .share a {
  display: inline-flex;
  transition: 0.3s;
}

.hero-single-article .share a:hover {
  transform: scale(1.1);
}

.hero-single-article .share span {
  transform: rotate(-90deg);
  display: block;
  margin-top: 1.5rem;
  font-family: 'SemiBold';
  color: #000;
  font-size: 1rem;
}

.text-article {
  margin-top: 5rem;
}

.text-article p {
  font-size: 1.125rem;
  line-height: 1.66667;
  color: #000;
}

@media (min-width: 992px) {
  .hero-single-article .colImg {
    position: sticky;
    top: 6rem;
  }
}

@media (max-width: 767.9px) {
  .hero-single-article .share {
    position: absolute;
    top: unset;
    right: 1.3rem;
    transform: unset;
    bottom: 4.5rem;
  }
}

/* === Page About === */

.numbers-page-about img {
  margin-inline-start: auto;
}

.numbers-page-about .boxes {
  right: unset;
  left: 0;
}

/* === Points === */

.points {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.col-points {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.25rem;
}

.col-points p {
  font-size: 1.125rem;
  font-family: 'Bold';
  position: relative;
}

.col-points p span {
  display: block;
  margin: auto;
  padding: 1.25rem;
  background-color: #F6F5FF;
}

@media (min-width: 992px) {
  .col-points p span {
    width: calc((8/10) * 100%);
  }

  .col-points p::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: calc((1/10) * 100%);
    height: 1px;
    background-color: #000;
  }

  .col-points p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #5433FF;
    transform: translateY(-50%);
    right: 0;
    border-radius: 50%;
  }

  .col-points p:nth-child(even):before,
  .col-points p:nth-child(even)::after {
    right: unset;
    left: 0;
  }
}

.box-feature {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.box-feature h5 {
  padding: 5.75rem 2.25rem 3.5rem;
  position: relative;
  flex: 0 0 36%;
  height: 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-feature h5 span {
  position: relative;
  z-index: 9;
  font-family: 'SemiBold';
  font-size: 1.5rem;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-feature h5::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.box-feature p {
  padding: 4rem 2.25rem;
  background-color: #F6F5FF;
  color: #425466;
  font-size: 1.125rem;
  line-height: 1.6667;
  font-family: 'Regular';
  flex: 1 0 auto;
}

.box-feature1 h5::before {
  background-color: #5433FF;
}

.box-feature2 h5::before {
  background-color: #FD3455;
}

.box-feature3 h5::before {
  background-color: #20BDFF;
}

.ways-working img {
  height: auto;
  width: 100%;
}

.subTitle-team {
  font-size: 2rem;
  color: #12153A;
  font-family: 'Bold';
  text-transform: capitalize;
}

.contact img {
  width: calc((5/6) * 100%);
  height: auto;
}

@media (max-width: 991.9px) {
  .contact img {
    width: 100%;
  }
}

.contact form {
  gap: 1.25rem;
  background-image: url('../imgs/bg-form.png');
  background-size: cover;
  padding: 4.75rem 2.3rem 2.3rem;
}

.contact form>div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact form label {
  font-size: 1.125rem;
  color: #000;
  display: inline-block;
}

.contact form input,
.contact form textarea {
  font-size: 1.125rem;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}

.contact form input.error,
.contact form textarea.error {
    border: 1px solid #ff0e0e;
}
.contact form input+small,
.contact form textarea+small {
    font-size: 0.75rem;
    width: 100%;
    display: flex;
    color: #ff0e0e;
}

.contact form textarea {
  height: 200px;
  resize: none;
}

.contact form button {
  background-color: #5433FF;
  border: 1px solid #5433FF;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 2rem;
  padding: 1rem;
  transition: 0.3s;
}

.contact form button:hover {
  background-color: #fff;
  color: #5433FF;
}

/*process*/
.process {
    padding-top: 3rem;
    text-align: center;
}

.process span {
    color: #1180FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.process h2 {
    color: #12153A;
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 4.25rem;
}

.item-process {
    margin-bottom: 5rem;
}

.process .item {
    background: conic-gradient(from 155.47deg at 32.39% -94.97%, rgba(165, 254, 203, 0.1) -6.61deg, rgba(251, 172, 0, 0.1) 27.62deg, rgba(253, 52, 85, 0.1) 112.39deg, rgba(84, 51, 255, 0.1) 193.02deg, rgba(32, 189, 255, 0.1) 277.39deg, rgba(165, 254, 203, 0.1) 353.39deg, rgba(251, 172, 0, 0.1) 387.62deg);
    padding: 3rem 1rem;
    position: relative;
    font-size: 24px;
    font-weight: 400;
    height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;}

.process .item .icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.process3-img {
    margin-top: 5.5rem;
}

.process .analyze{
    background-image: url('../imgs/Rectangle\ 31.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 493px;
    height:635px;
    padding: 6.25rem 4.125rem;
    text-align: left;
}

.analyze h3 ,.manage h3 ,.item-mobile h3{
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.7rem;
}

.manage{
    background-image: url('../imgs/Rectangle\ 32.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 493px;
    height:635px;
    padding: 6.25rem 4.125rem;
    text-align: left;
}
.analyze li , .manage li ,.item-mobile li{
    color: #425466;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 30px;
}

/*tool*/
.tool {
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.tool span {
    color: #1180FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tool h2 {
    color: #12153A;
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2.25rem;
}

.w-100 {
    width: 100%;
}

.tool-item {
    gap: 2rem;
}

.tool-img {
    width: auto;
    max-width: 33.333%
}

@media (max-width: 991.9px) {
    .process3-img {
        margin-top: 0;
    }

    .process,
    .tool {
        padding-top: 3rem;
    }
    .item-mobile{
        max-width:100% !important ;
    }
    .mt-6 {
        margin-top: 5rem;
    }
    .security{
        width: 75% !important;
    }
    .process .item {
        margin-bottom: 3rem;
    }
}

.mb-6 {
    margin-bottom: 5rem;
}

.row-tools-logo {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/*automation*/
ul.automation-list  {
    list-style: none;
    text-align: left;
}

ul.automation-list li{
    color: #425466;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 40px;
}
ul.automation-list li svg{
    margin-right: 14px;
}

.item-mobile{
    width: 390px;
    max-width: 34.64%;
    background-repeat: no-repeat;
    background-size: cover;
    height:300px;
    text-align: left;
    padding-left:3.125rem;

}

.security{

    background-repeat: no-repeat;
    background-size: cover;
    height:180px;
    padding-left:3.125rem;
    width: 280px;

}

.mt-6{
    margin-top: 6rem;
}

.chain-item h4{
    text-align: left;
    color: #000;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

 .alert-success {
     border: 1px solid #5CB85C;
     background-color: #bce2bc;
     width: auto;
     display: inline-flex;
     padding: 0.75rem 1.25rem;
     border-radius: 0.75rem;
     position: fixed;
     top: 1.5rem;
     left: 1.5rem;
     z-index: 999;
     font-size: 1rem;
     color: #222;
     -webkit-animation-name: bounce;
     animation-name: bounce;
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
     -webkit-animation-duration: 1s;
     animation-duration: 1s;
     -webkit-animation-duration: 1s;
     animation-duration: 1s;
     -webkit-animation-fill-mode: both;
     animation-fill-mode: both
 }

@keyframes bounce {

    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }

    80% {
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95);
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}
