.title-start,
.title-center {
  margin-bottom: 50px;
}

.title-center {
  text-align: center;
}

.title-center p {
  font-size: 26px;
  width: 40%;
  margin: 40px auto 0;
  font-family: "font_bold";
}

.title-start h2,
.title-center h2 {
  color: var(--color-Primary1);
  font-size: 33px;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 20px 35px;
  font-family: "font_medium";
}

.title-start h2::after,
.title-center h2::after {
  content: "";
  position: absolute;
  left: 0;
  border: 1px solid var(--color-Primary2);
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  top: 10%;
  height: 60px;
  animation: titleBorder 4s linear infinite;
  animation-delay: 0.3s;
  border-radius: 50%;
}

.title-start h2::before,
.title-center h2::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #e4f7ffbe;
  right: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  top: 10%;
  height: 60px;
  animation: titlebg 4s linear infinite;
  border-radius: 50%;
}

@keyframes titleBorder {
  0% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(8deg);
  }

  100% {
    transform: rotate(-8deg);
  }
}

@keyframes titlebg {
  0% {
    transform: rotate(8deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  100% {
    transform: rotate(8deg);
  }
}

.text-services-index h3 {
  color: #0b0a17;
  line-height: 30px;
  font-family: "font_bold";
  font-size: 28px;
  width: 80%;
  margin: 25px 0;
}

.text-services-index p {
  margin-bottom: 25px;
}

.sub-services-index {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(117, 116, 152, 0.08);
  background: #fff;
  box-shadow: 0px 4px 46px 0px rgba(219, 246, 253, 0.51);
  width: calc(50% - 7.5px);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.main-services-index {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 35px;
}

.sub-services-index:nth-child(odd) {
  transform: translateY(-35px);
}

.sub-services-index p {
  font-size: 19px;
  transition: all 0.3s linear;

  line-height: 25px;
}

.sub-services-index h2 {
  color: var(--color-Primary1);
  margin: 7px 0;
  font-family: "font_bold";
  transition: all 0.3s linear;
}

.img-services-index {
  width: 60px;
  height: 50px;
  display: flex;
  transition: all 0.3s linear;

  align-items: center;
}

.img-services-index img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sub-services-index::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-Primary1);
  z-index: -1;
  bottom: 0;
  z-index: -1;
  right: 0;
  left: 0;
  transition: all 0.3s linear;
  border-radius: 50%;
  transform: translateX(102%) translateY(-102%);
}

.sub-services-index:hover::after {
  transform: translateX(0%);
  border-radius: 0;
}

.sub-services-index:hover h2,
.sub-services-index:hover p {
  color: var(--color-white);
}

.sub-services-index:hover img {
  filter: brightness(0) invert(1);
  overflow: hidden;
}

.services-index {
  position: relative;
  overflow: hidden;
}

.services-index::after {
  width: 55%;
  height: 100%;
  position: absolute;
  top: 76px;
  left: -21%;
  background-size: 100%;
  border-radius: 45px;
  z-index: -1;
  background-repeat: no-repeat;
  background-image: url(../images/bgs.png);
  content: "";
  animation: serverbg 5s linear infinite;
  background-position: top left;
}

@keyframes serverbg {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(27deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.main-aboutus-index {
  min-height: 450px;
  display: flex;
  position: relative;
  align-items: flex-end;
}

.main-aboutus-index .img-aboutus-index img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.text-aboutus-index {
  border-radius: 32px;
  border: 1px solid rgba(44, 82, 83, 0.19);
  background: #fff;
  padding: 35px 35px;
}

.main-aboutus-index .img-aboutus-index {
  width: 50%;
  height: 94%;
  position: absolute;
  right: 0;
  top: 0;
}

.text-aboutus-index h2 {
  font-size: 27px;
  width: 70%;
  color: var(--color-Primary2);
  margin: 0 0 20px 0;
  font-family: "font_bold";
}

.text-aboutus-index span {
  width: 100px;
  height: 100px;
  display: flex;

  position: absolute;
  left: 60px;
  top: -40px;
  color: #fff;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.text-aboutus-index span::after {
  content: "";
  position: absolute;
  background-color: var(--color-Primary2);
  width: 100%;
  border-radius: 20px;
  height: 100%;
  z-index: -1;
  transform: rotate(45deg);
}

.text-aboutus-index span {
  font-size: 26px;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.text-aboutus-index span i {
  width: 100%;
  height: 20px;
  font-style: normal;
  display: block;
  margin-top: 5px;
}

.text-aboutus-index p {
  margin: 20px 0;
  font-size: 26px;
  line-height: 37px;
}

.main-why-choose {
  padding: 80px 0 120px;
  background-image: url(../images/bgw.png);
  display: flex;
  z-index: 1;
  background-position: center;
  position: relative;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.main-why-choose::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;

  z-index: -1;
  right: 0;
  background-color: rgba(20, 108, 148, 0.74);
}

.sub-why-choose {
  width: 64%;
  margin: auto;
  aspect-ratio: 1 / 1;
  z-index: 1;
  position: relative;
  text-align: center;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.sub-why-choose::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
  transition: all 0.3s linear;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 40px;
  z-index: -1;
}

.sub-why-choose img {
  width: 65px;
  height: 65px;
}

.sub-why-choose h2 {
  width: 100%;
  font-size: 26px;
  font-family: "font_bold";
}

.sub-why-choose span {
  width: 45px;
  background-color: #c9edfc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4%;
  left: 12%;
  line-height: 0;
  font-size: 26px;
  color: var(--color-Primary1);
  height: 45px;
  font-family: "font_bold";
}

.arrow-choose {
  position: absolute;
  left: -100%;
  z-index: -1;
  top: 50%;
  width: 120%;
  transform: translateY(-50%);
}

.why-choose .col-lg-3:nth-child(odd) .sub-why-choose {
  transform: translateY(40px);
}

.why-choose .col-lg-3:last-of-type .sub-why-choose .arrow-choose {
  display: none;
}

.sub-why-choose:hover::after {
  background-color: var(--color-Primary2);
}

.sub-why-choose:hover img {
  filter: brightness(0) invert(1);
}

.sub-why-choose:hover h2 {
  color: var(--color-white);
}

.main-video-introducing {
  height: 500px;
  display: flex;
  align-items: center;
}

.video-introducing {
  width: 80%;
  margin: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/mask2.png);
  mask-image: url(../images/mask2.png);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  justify-content: end;
  mask-size: contain;
  display: flex;
  justify-content: center;
  margin-right: auto;
  position: relative;
  -webkit-mask-position: center;
  mask-position: center;
}

.btn-play-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  border-radius: 50%;

  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  justify-content: center;
  background-color: var(--color-white);
}

.btn-play-video a {
  line-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--color-white);
  }

  80% {
    box-shadow: 0 0 0 14px var(--color-white);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 60px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border:hover {
  color: #fff;
}

.btn-play-video::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid var(--color-white);
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  pointer-events: none;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.title-introducing {
  margin-bottom: 30px;
}

.title-introducing h4 {
  color: var(--color-Primary2);
  font-size: 22px;
  font-family: "font_medium";
}

.title-introducing h2 {
  font-size: 30px;
  font-family: "font_bold";
}

.asked-introducing ul li {
  position: relative;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 20px 0;
  cursor: pointer;
  box-shadow: 0 2px 3px #0000002d;
}

.asked-introducing ul li p {
  display: none;
  margin-top: 15px;
  font-size: 22px;
}

.asked-introducing ul li h2 {
  display: flex;
  width: 100%;
  padding-left: 60px;
  position: relative;
  user-select: none;
}

.asked-introducing ul li.active .puls-que::before {
  transform: rotate(0deg);
}

.puls-que::before {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-Primary2);
  content: "";
  left: 0;
  transform: rotate(90deg);
  margin: auto;
  top: 15px;
  transition: all 0.3s linear;
}

.puls-que::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-Primary2);
  content: "";
  left: 0;
  margin: auto;
  top: 15px;
}

.asked-introducing ul li.active {
  background-color: var(--color-Primary1);
}

.asked-introducing ul li.active p,
.asked-introducing ul li.active h2 {
  color: var(--color-white);
}

.asked-introducing ul li.active .puls-que::before,
.asked-introducing ul li.active .puls-que::after {
  background-color: var(--color-white);
}

.sub-customers-index {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(25, 167, 206, 0.24);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0px 4px 46px 0px rgba(219, 246, 253, 0.35);
}

.img-customers-index {
  height: 260px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-customers-index img {
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}

.text-customers-index {
  border-top: 10px solid #e5f7ff;
  padding: 30px 15px 20px;
  transition: all 0.3s linear;
}

.text-customers-index p {
  font-size: 21px;
  height: 107px;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 25px;
}

.text-customers-index h2 {
  color: var(--color-Primary1);
  font-family: "font_bold";
}

.text-customers-index span {
  font-size: 18px;
  font-family: "font_medium";
}

.text-customers-index {
  position: relative;
}

.text-customers-index::after {
  content: ",,";
  line-height: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  font-family: sans-serif;
  transition: all 0.3s linear;
  top: -30px;
  right: 14px;
  background-color: var(--color-Primary2);
  font-size: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 7px;

  padding-bottom: 37px;
  letter-spacing: -7px;
  color: #fff;
}

.sub-customers-index:hover .text-customers-index::after {
  transform: translateY(-35px) rotate(360deg);
}

.sub-customers-index:hover .img-customers-index img {
  transform: scale(1.1);
}

.sub-customers-index:hover .text-customers-index {
  background-color: #e5f7ff;
}

.sub-partners img {
  max-width: 110px;
}

.sub-partners {
  border-radius: 8px;
  border: 1px solid #afd3e2;
  background: #fff;
  display: flex;
  margin: 15px 0;
  gap: 10px;
  align-items: center;
  height: 140px;
  padding: 10px 20px;
  justify-content: flex-start;
  transition: all 0.3s linear;
}

.sub-partners:hover {
  background-color: #e5f7ff;
}

.sub-blog-index {
  display: flex;
  gap: 0;
  overflow: hidden;
  transition: all 0.3s linear;
  border-radius: 12px;
  border: 1px solid rgba(25, 167, 206, 0.11);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0px 4px 46px 0px rgba(219, 246, 253, 0.35);
}

.img-blog-index {
  width: 45%;
  height: 300px;
}

.img-blog-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-blog-index {
  width: 55%;
  padding: 20px 30px 20px 20px;
}

.item {
  margin: 2px;
}

.text-blog-index h3 {
  padding-bottom: 10px;
  display: flex;
  color: var(--color-Primary2);
  gap: 10px;
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5f7ff;
}

.text-blog-index h2 {
  color: var(--color-Primary1);
  font-size: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
  white-space: nowrap;
}

.text-blog-index p {
  font-size: 22px;
  line-height: 25px;
  margin: 18px 0;
  height: 100px;
  overflow: hidden;
}

.text-blog-index a {
  margin-right: auto;
  display: block;
  text-align: end;
}

.sub-blog-index:hover {
  background-color: #c9edfc;
}

.contactus-index {
  background-image: url(../images/bg3.png);
  min-height: 600px;
  background-position: center;
  background-size: 100%;
  z-index: 1;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.contactus-index::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(20, 108, 148, 0.74);
  z-index: -1;
}

.contactus-index .title-center h2::before {
  background-color: var(--color-white);
}

.main-contactus-index {
  padding: 40px;
  background-color: #fff;
  border-radius: 25px;
  width: 50%;
  margin: 20px auto 0;
}

.main-contactus-index .input-form {
  position: relative;
  margin: 20px 0;
}

.main-contactus-index .input-form .form-control {
  padding-right: 50px;
  background-color: transparent;
}

.main-contactus-index .input-form textarea.form-control {
  padding-top: 11px;
}

.main-contactus-index .input-form img {
  position: absolute;
  top: 17px;
  right: 15px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.main-contactus-index .ctm-btn {
  height: 60px;
  border-radius: 15px;
}

/* start style about us */
.header-pages.header::after {
  display: none;
}

.title-header {
  min-height: 350px;
  width: 100%;
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;

  z-index: 1;
  background-size: cover;
  background-image: url(../images/bgw.png);
}

.title-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #146c94;
  opacity: 0.74;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.title-header h1 {
  font-size: 50px;
  color: var(--color-white);
}

.breadcrumb-header {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-family: "font_medium";
}

.breadcrumb-header a {
  color: var(--color-white);
  font-size: 26px;
  font-family: "font_medium";
}

.title-header::before {
  content: "";
  background-image: url(../images/logo-header.png);
  width: 250px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.about-page .main-aboutus-index {
  min-height: 570px;
}

.sub-info-about {
  position: relative;
  transition: all 0.3s linear;
  min-height: 200px;
  padding: 35px 20px;
  border-radius: 12px;
  border: 1px solid rgba(44, 82, 83, 0.19);
  background: var(--color-white);
  min-height: 100%;
}
.sub-info-about p {
  color: #58595b;
  font-size: 19px;
  line-height: 25px;
}
.title-info-about {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}
.title-info-about::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  transition: all 0.3s linear;
  bottom: -1px;
  background-color: var(--color-Primary2);
}
.sub-info-about:hover {
  background-color: #f2fbff;
}
.sub-info-about:hover .title-info-about::after {
  width: 100%;
}
.sub-sectors {
  border-radius: 12px;
  border: 1px solid rgba(25, 167, 206, 0.24);
  background: rgba(255, 255, 255, 0.18);
  transition: all 0.3s linear;
  padding: 10px;
  box-shadow: 0px 4px 46px 0px rgba(219, 246, 253, 0.35);
}

.img-sectors {
  height: 280px;
  width: 100%;
  border-radius: 10px;

  overflow: hidden;
}

.img-sectors img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s linear;
}

.text-sectors h2 {
  margin: 10px 0;
  color: var(--color-Primary2);
}

.text-sectors p {
  line-height: 25px;
  font-size: 19px;
}

.sub-sectors:hover {
  background-color: #f2fbff;
}

.sub-sectors:hover .img-sectors img {
  transform: scale(1.2);
}
.sub-services-page {
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid rgba(175, 211, 226, 0.71);
  background: #f6fcff;
  position: relative;
  height: 100%;
  transition: all 0.3s linear;
}
.sub-services-page::after {
  content: "";
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.3s linear;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 12px;
  pointer-events: none;
  border: 7px solid #eaf8ff;
}

.sub-services-page:hover::after {
  opacity: 1;
}
.sub-services-page:hover {
  background-color: var(--color-white);
  border-color: #eaf8ff;
}
.img-services-page {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
}

.img-services-page img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sub-services-page > h2 {
  font-size: 28px;
  font-family: "font_bold";
  margin: 15px 0;
  color: var(--color-Primary1);
}
.sub-services-page > p {
  font-size: 21px;
  margin-bottom: 15px;
}

.sub-services-page > a {
  display: flex;
  align-items: center;
  color: var(--color-Primary2);
  gap: 5px;
  font-size: 26px;
}
.sub-services-page i {
  padding-top: 4px;
  line-height: 0;
  display: inline-block;
  font-size: 18px;
}

.services-page .row,
.jops-page .row {
  row-gap: 10px;
}

.services-page .row .col-lg-3,
.jops-page .col-lg-3 {
  padding-right: 5px;
  padding-left: 5px;
}

.img-title-services-details {
  border-radius: 8px;
  border: 1px solid rgba(175, 211, 226, 0.71);
  background: #19a7ce;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
}
.img-title-services-details img {
  width: 70%;
  object-fit: contain;
  max-height: 70%;
  filter: brightness(0) invert(1);
}

.title-services-details {
  margin: 20px 0;
}

.img-services-details {
  width: 100%;
  height: 480px;
}
.img-services-details img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.title-services-details {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 36px;
  font-family: "font_bold";
}

.text-details {
  font-size: 24px;
}
.text-details p {
  line-height: 35px;
  font-size: 27px;
  margin-bottom: 20px;
}

.text-details h2,
.text-details h3 .text-details h4,
.text-details h5 {
  color: var(--color-Primary2);
  font-size: 29px;
  margin-bottom: 20px;
}

.text-details ul li {
  font-size: 29px;
  color: var(--color-black);
  padding: 0 35px 0 0;
  position: relative;
}
.text-details ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  background-image: url(../images/check.png);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}
.more-servies {
  background: #f6fcff;
  padding: 25px;
}

.more-servies h2 {
  font-size: 33px;
  font-family: "font_bold";
  color: var(--color-Primary1);
  margin-bottom: 25px;
}
.more-servies ul li a {
  display: flex;
  padding: 10px 20px;
  font-size: 24px;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s linear;
  height: 65px;
  margin: 20px 0;
  color: var(--color-black);
  background-color: var(--color-white);
}

.more-servies ul li a:hover {
  color: var(--color-Primary2);
}
.input-form input {
  height: 55px;
}
.order-form input {
  background-color: var(--color-white);
}
.order-form {
  padding: 30px 20px;
  position: relative;
  min-height: 300px;
  z-index: 1;
  background-color: var(--color-Primary1);
}

.order-form h2 {
  color: var(--color-white);
  margin-bottom: 25px;
}
.order-form input::placeholder {
  font-size: 24px;
  color: var(--color-Primary2);
}
.order-form::after {
  content: "";
  width: 40%;
  top: 0;
  z-index: -1;
  left: 0;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/logo-header.png);
  position: absolute;
}
.order-form::before {
  content: "";
  width: 40%;
  bottom: 0;
  right: 0;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  background-image: url(../images/logo-header.png);
  position: absolute;
}

.order-form .input-form {
  margin: 20px 0;
}
.btn-order-form button {
  height: 55px;
  font-size: 23px;
  border-radius: 20px;
}
.btn-order-form button:hover {
  color: var(--color-Primary2);
  background-color: var(--color-white);
}

.sub-info-about p {
  color: #58595b;
  font-size: 28px;
  line-height: 30px;
}

.info-contactus .sub-info-about h2 {
  font-family: "font_bold";
  font-size: 30px;
}
.fliter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.fliter-search .input-form {
  width: 33%;
}

.btn-fliter-search button {
  height: 55px;
  border-radius: 15px;
}

.sub-jops-page {
  border-radius: 12px;
  border: 1px solid rgba(175, 211, 226, 0.71);
  background: #f6fcff;
  padding: 20px;
  box-shadow: inset 0 0 0 10px transparent;
  transition: all 0.3s linear;
  height: 100%;
}
.sub-jops-page:hover {
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 10px #eaf8ff;
}
.title-jops-page {
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-title-jops-page {
  width: 70%;
}

.img-jops-page {
  width: 30%;
  aspect-ratio: 1 / 1;
  display: flex;
  border-radius: 20px;
  border: 1px solid #2c525330;
  align-items: center;
  background-color: var(--color-white);
  justify-content: center;
}

.img-jops-page img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
}
.text-title-jops-page h2 {
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  color: var(--color-Primary1);
  line-height: 25px;
  width: 95%;
  text-overflow: ellipsis;
}
.text-title-jops-page h5 {
  font-size: 19px;
  margin-top: 3px;
  color: #b4bdc8;
}

.sub-jops-page > h2 {
  font-size: 26px;
  font-family: "font_bold";
  margin: 20px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  color: var(--color-Primary2);
  width: 95%;
  text-overflow: ellipsis;
}
.date-jops-page {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #b4bdc8;
}

.date-jops-page h3 {
  font-size: 17px;
  gap: 2px;
  align-items: center;
  display: flex;
}

.date-jops-page h3 i {
  font-size: 13px;
  line-height: 0;
}
.sub-jops-page > p {
  color: var(--color-black);
  font-size: 18px;
  line-height: 20px;
  margin-top: 10px;
}

.sub-jops-page a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 12px;
  margin-top: 10px;
  font-family: "font_bold";
  border: 1px solid rgba(186, 229, 248, 0.99);
  color: var(--color-Primary1);
  background: #fff;
}

.sub-jops-page:hover a {
  border: 1px solid rgba(186, 229, 248, 0.99);
  background: #dff8ff;
}

.title-jops-details {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(44, 82, 83, 0.19);
  background: #fff;
  padding: 20px 25px;
  gap: 15px;
}

.img-jops-details {
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #2c525330;
}

.title-jops-details h2 {
  font-size: 29px;
  font-family: "font_bold";
  color: var(--color-Primary1);
}
.date-jops {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  color: #b4bdc8;
}

.date-jops i {
  font-size: 16px;
}
.date-jops h3 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.title-jops-details {
  margin-bottom: 25px;
}

.sub-jops-details {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(44, 82, 83, 0.19);
  background: #fff;
}

.sub-jops-details h2 {
  font-size: 24px;
  color: var(--color-Primary1);
  font-family: "font_medium";
}

.address-company h2 {
  font-size: 27px;
}

.sub-jops-details i {
  font-size: 15px;
}

.sub-jops-details h3 {
  font-size: 21px;
  margin-top: 5px;
  color: #b4bdc8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.address-company {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
}
.details-sub-jops {
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #d0d0d0;
}

.details-sub-jops ul li {
  margin: 20px 0;
}
.btn-jops-details a {
  height: 55px;
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.title-modal h2 {
  font-size: 22px;
  font-family: "font_bold";
}

.modal-dialog {
  max-width: 70%;
  margin: 1.75rem auto;
}
.title-modal {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px;
  border-bottom: 1px solid #d0d0d0;
}
.title-modal h2 {
  font-size: 30px;
  color: var(--color-Primary2);
  font-family: "font_bold";
}
.title-modal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  margin: auto;
  width: 50%;
  height: 4px;
  background-color: var(--color-Primary2);
}
.modal-content form {
  padding: 20px;
}

.input-upload input {
  width: 0;
  height: 0;
  position: absolute;
}

.input-upload label {
  height: 55px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-modal {
  text-align: center;
  margin-top: 20px;
}
.btn-modal button {
  height: 55px;
  border-radius: 15px;
}
.img-certificates {
  width: 100%;
}
.img-certificates img {
  width: 100%;
}
.text-certificates h2 {
  color: var(--color-Primary2);
  font-size: 30px;
  margin-bottom: 30px;
  font-family: "font_bold";
}

.text-certificates p {
  font-size: 27px;
  line-height: 38px;
}
.contracting .row {
  row-gap: 20px;
}
.main-jop-application {
  border-radius: 12px;
  width: 70%;
  margin: 30px auto;
  border: 1px solid rgba(44, 82, 83, 0.19);
  background: #fff;
}

.main-jop-application ul {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d0d0;
  justify-content: space-between;
}

.main-jop-application ul li {
  text-align: center;
  width: 50%;
  text-align: center;
}
.main-jop-application ul li a {
  width: 100%;
  color: #babac6;
  padding: 20px 0;
  font-size: 28px;
  position: relative;
  font-family: "font_medium";
}
.main-jop-application ul li a.active {
  background-color: transparent !important;
  color: var(--color-Primary2) !important;
}

.main-jop-application ul li a::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--color-Primary2);
  position: absolute;
  bottom: -2px;
  right: 0;
  transform: scale(0);
  left: 0;
  margin: auto;
  transition: all 0.3s linear;
}
.main-jop-application ul li a.active::after {
  transform: scale(1);
}
.blog-page .sub-blog-index {
  margin: 15px 0;
}

.search-pages {
  background: #f6fcff;
  padding: 25px;
}

.search-pages {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.search-pages input {
  background-color: var(--color-white);
  border-radius: 0;
  height: 50px;
}
.search-pages button {
  background-color: var(--color-Primary2);
  height: 50px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 22px;
  color: var(--color-white);
}

.search-pages button:hover {
  background-color: var(--color-Primary1);
}

.order-form {
  margin: 20px 0;
}

.img-blogs-details img {
    width: 100%;
    object-fit: cover;
    max-height: 400px;
    border-radius: 20px;
}

.img-blogs-details {
    margin-bottom: 20px;
    width: 100%;
}
.sub-header {
    position: relative;
    z-index: 10;
}

.info-contactus a:hover {
    color: var(--color-Primary1);
}
input.form-control {
    text-align: start;
}

button.close {
    position: absolute;
    left: 2%;
    font-size: 82px;
    height: auto;
    top: -12px;
}



@media (max-width: 992px) {
.text-sub-header {
    padding-left: 0;
    padding-right: 0;
}
}


@media (max-width: 576px) {
.text-aboutus-index span {
    left: 0;
    right: 0;
    margin: auto;
}


}
