.title-start h2,
.title-center h2 {
  position: relative;
  color: var(--color-main);
  font-family: "font_bold";
  font-size: 22px;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 13px;
}
.title-start h2::after,
.title-center h2::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--color-main);
  width: 80%;
  right: 0;
  animation: title1 linear 1.5s infinite;
  transform-origin: right;

  bottom: 0px;
}

.title-start h2::before,
.title-center h2::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--color-main);
  width: 80%;
  right: 0;
  bottom: -5px;
  transform-origin: right;
  animation: title1 linear 1.5s infinite;
  animation-delay: 0.2s;
}
.title-center {
  text-align: center;
}
.title-center h2 {
  margin: auto;
}
.title-center h2::before,
.title-center h2::after {
  left: 0;
  transform-origin: center;
  margin: auto;
}

@keyframes title1 {
  0% {
    transform: scaleX(0.2);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.2);
  }
}

.counter-about-index {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
.text-counter-number {
  font-size: 45px;
  margin: 10px 0;
  color: var(--color-num);
  font-family: "font_bold";
}
.counter-box {
  text-align: center;
  margin-top: 50px;
}
.counter-box p {
  color: var(--color-main);
  font-size: 22px;
}

.img-aboutus-index {
  display: flex;
  position: relative;
  justify-content: flex-end;
  /*padding-bottom: 60px;*/
  /*margin-bottom: 80px;*/
  align-items: center;
}

.img-aboutus-index img {
  width: 60%;
}

.img-aboutus-index::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 230px;
    background-image: url(../images/dots.png);
    background-position: center;
    bottom: -10px;
    background-size: contain;
    /* right: 0; */
    z-index: -1;
    left: 0;
    margin: auto;
}



.img-aboutus-index img {
  width: 100%;
  box-shadow: -8px -8px 0px #d9d9d9;
  height: 420px;
  object-fit: cover;
}

.services-index {
  padding: 40px 0;
  position: relative;
  z-index: 1;
  background-color: #01185c0c;
}
.services-index::after {
  content: "";
  width: 60%;
  position: absolute;
  top: 0;
  height: 100%;
  background-image: url(../images/bg5.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: -1;
}

.links-tabs {
  text-align: center;
  margin: 40px 0;
}

.links-tabs ul {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.links-tabs ul li a {
  background-color: var(--bg-1);
  height: 55px;
  color: var(--color-main);
  display: flex;
  transition: all 0.3s linear;
  align-items: center;
  padding: 5px 40px;
  position: relative;
  font-size: 19px;
  justify-content: center;
  border-radius: 0 !important;
}

.links-tabs ul li a.active {
  background-color: var(--color-main) !important;
  color: var(--color-main);
  transition: all 0.3s linear;
}
.links-tabs ul li a::after {
  content: "";
  position: absolute;
  width: 16px;
  transition: all 0.3s linear;
  height: 16px;
  background-image: url(../images/arrow3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: -12px;
  z-index: -1;
  transform: translateY(-100%);
  opacity: 0;
}

.links-tabs ul li a.active::after {
  transform: translateY(0%);
  opacity: 1;
}
.main-services-index {
  overflow: hidden;
}
.tab-content .active .text-services-index {
  animation: tranx 1s ease-in-out;
}
.tab-content .active .main-img-services-index {
  animation: tranx2 1s ease-in-out;
}

@keyframes tranx {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes tranx2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.text-services-index p {
  padding-right: 30px;
  position: relative;
  margin: 10px 0;
}
.text-services-index p::after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow01.png);
  width: 20px;
  height: 20px;
  background-size: contain;
  top: 2px;
  background-repeat: no-repeat;
  right: 0;
}

.text-services-index a {
  margin: 20px 0;
}

.ctm-btn {
  height: 50px;
  text-align: center;
  min-width: 160px;
  background-color: transparent;
  border: none;
  display: inline-block;
  padding: 12px 20px;
  position: relative;
  color: var(--color-main);
}

.ctm-btn::after {
  width: 70%;
  height: 100%;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
  content: "";
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.ctm-btn:hover {
  color: var(--color-main);
}
.ctm-btn span {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 19px;
  justify-content: center;
}

.ctm-btn {
  height: 50px;
  text-align: center;
  min-width: 160px;
  display: inline-block;
  padding: 9px 20px;
  position: relative;
}

.ctm-btn:hover::after {
  width: 100%;
}
.ctm-btn span::after {
  content: "";
  width: 1px;
  height: 50%;
  transform: scaleY(0);
  transition: all 0.3s linear;
  transition-delay: 0.2s;
  top: 0;
  position: absolute;
  transform-origin: top;

  right: 0;
  background-color: var(--color-main);
}
.ctm-btn span::before {
  content: "";
  width: 1px;
  height: 50%;
  transform: scaleY(0);
  transition: all 0.3s linear;
  transition-delay: 0.2s;
  bottom: 0;
  transform-origin: bottom;
  position: absolute;
  right: 0;
  background-color: var(--color-main);
}

.ctm-btn:hover::after {
  width: 100%;
}

.ctm-btn:hover span::after,
.ctm-btn:hover span::before {
  transform: scaleY(1);
}

.main-services-index {
  margin: 40px 0;
}

.img-services-index img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.img-services-index {
  width: 95%;
  height: 395px;
  overflow: hidden;
  mask-repeat: no-repeat;
  /*-webkit-mask-image: url(../images/mask.png);*/
  /*mask-image: url(../images/mask.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: flex-end;
  margin-right: auto;
  position: relative;
  -webkit-mask-position: center;
  mask-position: center;
}
.main-img-services-index::after {
  content: "";
  width: 83px;
  position: absolute;
  height: 86px;
  margin: auto;
  left: 30px;
  z-index: -1;
  bottom: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  transform-box: fill-box;
  background-image: url(../images/bg4.png);
  animation: rotete 4s linear infinite;
}
.main-img-services-index::before {
  content: "";
  width: 55px;
  position: absolute;
  height: 55px;
  margin: auto;
  right: 50px;
  z-index: -1;
  top: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  transform-box: fill-box;
  background-image: url(../images/bg4.png);
  animation: rotete 4s linear infinite;
}

@keyframes rotete {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.main-img-services-index {
  position: relative;
  padding: 10px 0;
}

.main-departments-index {
  margin: 60px 0;
}
.text-departments-index {
  background-color: var(--color-main);
  color: var(--color-white);
  height: 300px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  align-content: center;
  padding: 30px 50px 30px 40px;
  flex-wrap: wrap;
}
.text-departments-index h2 {
  font-size: 23px;
  font-family: "font_bold";
}
.text-departments-index p {
  color: var(--color-white);
  font-size: 13px;
}
.ctm-white {
  color: var(--color-white);
  height: 45px;
  font-size: 17px;
  min-width: 120px;
}

.ctm-white::after {
  border-color: var(--color-white) !important;
}
.ctm-white:hover {
  color: var(--color-white);
}
.ctm-white {
  color: var(--color-white);
  height: 45px;
  font-size: 14px !important;
}
.ctm-white span {
  font-size: 15px !important;
}
.ctm-white span::after,
.ctm-white span::before {
  background-color: var(--color-white);
}
.text-departments-index p {
  color: var(--color-white);
  font-size: 16px;
}
.btn-departments-index {
  width: 100%;
  text-align: left;
}

.img-departments-index {
  margin-top: 10px;
  overflow: hidden;
  height: 300px;
}

.img-departments-index img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  transition: all 0.6s linear;
}
.text-departments-index {
  z-index: 1;
}
.text-departments-index::after {
  content: "";
  position: absolute;
  top: 0px;
  height: 70%;
  right: 8%;
  z-index: -1;
  pointer-events: none;
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  width: 1px;
  background-color: var(--color-white);
}
.text-departments-index h2::before {
  content: "";
  position: absolute;
  top: 35px;
  height: 50%;
  right: 6%;
  z-index: -1;
  pointer-events: none;
  width: 1px;
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  background-color: var(--color-white);
}

.text-departments-index::before {
  content: "";
  position: absolute;
  right: 0px;
  height: 1px;
  top: 8%;
  z-index: -1;
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  width: 40%;
  background-color: var(--color-white);
}

.text-departments-index h2::after {
  content: "";
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
  right: 10px;
  height: 1px;
  top: 33px;
  z-index: -1;
  pointer-events: none;
  width: 40%;
  background-color: var(--color-white);
}

.sub-departments-index:hover .text-departments-index h2:after,
.sub-departments-index:hover .text-departments-index::before {
  width: 90%;
}
.sub-departments-index:hover .text-departments-index h2::before,
.sub-departments-index:hover .text-departments-index::after {
  height: 85%;
}
.sub-departments-index:hover .img-departments-index img {
  transform: scale(1.2);
}

.main-departments-index
  .maincarousel
  .owl-item:nth-child(even)
  .sub-departments-index,
.main-departments-index
  .maincarousel
  .owl-item:nth-child(even)
  .img-departments-index,
.main-departments-index
  .maincarousel
  .owl-item:nth-child(even)
  .text-departments-index {
  transform: scaleY(-1);
}

.clinet-index {
  background-color: #f0f0f0;
  padding: 30px 0;
}
.sub-clinet-index {
  text-align: center;
}
.sub-clinet-index img {
  object-fit: contain;
  object-position: center;
  max-width: 90px;
  height: 90px;
  margin: auto;
}
.sub-clinet-index h2 {
  font-size: 17px;
  margin-top: 20px;
}
/* start style aboutus   ===
=======================
=================
=========*/

.aboutus .img-aboutus-index img {
  width: 58%;
  height: 355px;
}

.aboutus-index {
  z-index: 1;
  position: relative;
}

.aboutus-index::after {
  content: "";
  background-image: url(../images/bg7.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  width: 40%;
  height: 40%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.inquiries-aboutus {
  background-color: var(--bg-3);
  padding: 60px 0;
  z-index: 1;
  position: relative;
}
.inquiries-aboutus::after {
  background-image: url(../images/bg10.png);
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  content: "";
  background-position: right;
  position: absolute;
  left: 0;
  top: 0;
}
.inquiries-aboutus .title-start {
  margin-bottom: 50px;
}
.img-inquiries-aboutus {
  padding-top: 0px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-inquiries-aboutus img {
  width: 100%;
  height: 345px;
  object-fit: cover;
}

.img-inquiries-aboutus::after {
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 50%;
  aspect-ratio: 1 / 1;
  z-index: -2;
}
.img-inquiries-aboutus::before {
  content: "";
  background-image: url(../images/dots.png);
  width: 30%;
  height: 50%;
  background-position: center;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
  top: -50px;
  right: 0;
  z-index: -1;
  left: 0;
  position: absolute;
}
.sub-text-inquiries {
  margin-bottom: 35px;
}

.sub-text-inquiries h2 {
  margin-bottom: 15px;
}

.sub-text-inquiries p {
  color: var(--color-num);
}

.title-administration-about img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: auto;
}

.administration-about {
  text-align: center;
  background-color: #fafafa;
  margin: 40px 0;
  position: relative;
  z-index: 1;
  padding: 65px 0;
}

.administration-about::after {
  content: "";
  position: absolute;
  width: 30%;
  height: auto;
  top: 0;
  aspect-ratio: 1 / 1;
  background-image: url(../images/bg5.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  z-index: -1;
  background-position: top right;
}

.administration-about::before {
  content: "";
  position: absolute;
  width: 30%;
  z-index: -1;
  height: auto;
  bottom: 0;
  aspect-ratio: 1 / 1;
  background-image: url(../images/bg8.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  background-position: bottom left;
}
.title-administration-about {
  margin: 40px 0;
}
.title-administration-about h2 {
  margin: 10px 0;
}
.title-administration-about span {
  color: var(--color-num);
}
.sub-administration-about p {
  width: 50%;
  color: var(--color-num);
  margin: auto;
}
.aboutus .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-main);
}

.aboutus .owl-theme .owl-dots .owl-dot span {
  width: 45px;
  height: 4px;
  margin: 5px 7px;
}

.aboutus .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0px;
}

.aboutus .text-services-index p {
  padding-right: 0px;
}
.aboutus .text-services-index p::after {
  display: none;
}
.vision-message {
  z-index: 1;
  position: relative;
}
.vision-message::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../images/bg9.png);
  width: 59%;
  height: 98%;
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: right;
}
.counter-aboutus {
  padding: 10px 0 50px;
  background-color: var(--color-main);
  position: relative;
}
.sub-counter-aboutus .text-counter-number {
  color: var(--color-white);
}

.counter-box p {
  color: var(--color-white);
  font-size: 22px;
}

.sub-counter-aboutus {
  position: relative;
}

.sub-counter-aboutus::after {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  left: -10px;
  background-color: #41548f;
  height: 100%;
}
.counter-aboutus .col-lg-4:last-of-type .sub-counter-aboutus::after {
  display: none;
}

.text-services-index {
    font-size: 19px;
    line-height: 32px;
}


.text-inquiries-aboutus {
    font-size: 19px;
    line-height: 40px;
}

/* end style aboutus =============
==========================
============== */

/* start style services =============
==========================
============== */
.serivces .title-center {
  margin-bottom: 60px;
}
.sub-serivces {
  display: flex;
  align-items: center;
  height: 450px;
  margin: 20px 0;
}

.img-serivces {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.img-serivces img {
  width: 100%;
  height: 100%;
  transition: all 0.6s linear;
  object-fit: cover;
}
.text-serivces {
  width: 50%;
  background-color: var(--bg-3);
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
  align-items: center;
  gap: 25px;
  align-content: center;
  flex-wrap: wrap;
  z-index: 1;
}
.text-serivces::after {
  content: "";
  width: 50%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-position: top left;
  background-image: url(../images/bg11.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: contain;
}
.text-serivces p {
  width: 90%;
}
.text-serivces h2 {
  font-size: 22px;
  font-family: "font_bold";
}
.text-serivces .text-left {
  width: 95%;
  margin-top: 20px;
  text-align: left !important;
}

.sub-serivces:nth-child(odd),
.sub-serivces:nth-child(odd) .text-serivces,
.sub-serivces:nth-child(odd) .img-serivces {
  transform: scaleX(-1);
}

.sub-serivces:hover .img-serivces img {
  transform: scale(1.2);
}

/* end style services =============
==========================
============== */

/* start style services details ==============
==============================
============ */
.img-services-details {
  width: 100%;
  margin-top: 30px;
  height: 450px;
}
.img-services-details img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: bottom;
}

.sub-services-details p {
  font-size: 19px;
  margin: 20px 0 40px;
}
.btn-services-details {
  text-align: left;
}

.order-services {
  margin: 60px auto;
  width: 50%;
}
.order-services label {
  margin-bottom: 10px;
  color: var(--color-num);
  font-size: 18px;
  width: 100%;
  display: block;
}
.input-order-services {
  margin: 20px 0;
}

.btn-order-services {
  text-align: center;
  margin-top: 40px;
}
.order-services {
  display: none;
}

.btn-services-details .ctm-btn.active {
  color: red;
}
.btn-services-details .ctm-btn.active::after {
  border-color: red;
}
.btn-services-details .ctm-btn.active span::after,
.btn-services-details .ctm-btn.active span::before {
  background-color: red;
}

.order-services.active {
  display: block !important;
}
/* end style services details ==============
==============================
============ */

/* start style departments-page ===========
===================================
====================*/
.sub-departments-page {
  height: 300px;
  margin: 10px 0;
  overflow: hidden;
}
.departments-page .title-center {
  margin-bottom: 60px;
}
.sub-departments-page > img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s linear;
  width: 100%;
}
.sub-departments-page .text-departments-index {
  background-color: #01185cbe !important;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 30px 70px 30px 40px;
}

.sub-departments-page {
  height: 300px;
  position: relative;
}

.sub-departments-page:hover
  .sub-departments-page:hover
  .text-departments-index
  h2:after,
.sub-departments-page:hover .text-departments-index::before,
.sub-departments-page:hover .text-departments-index h2::after {
  width: 90%;
}
.sub-departments-page:hover .text-departments-index h2::before,
.sub-departments-page:hover .text-departments-index::after {
  height: 85%;
}
.sub-departments-page:hover > img {
  transform: scale(1.2);
}

.departments-page .col-lg-6 {
  padding-right: 10px;
  padding-left: 10px;
}
/* end style departments-page ===========
===================================
====================*/

/* start style employment ===================
==============================
====================== */

.input-form {
  margin: 20px 0;
}

.input-form label {
  font-size: 18px;
  color: var(--color-num);
}
.input-form select {
  appearance: none;
}

.arrow-form {
  position: relative;
}

.arrow-form::after {
  content: "";
  pointer-events: none;
  width: 14px;
  height: 14px;
  background-image: url(../images/Vector.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 17px;
  left: 17px;
}
.upload-file label {
  width: 100%;
  margin: 0;
  position: relative;
}
.upload-file label span {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  left: 0;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  color: var(--color-white);
  background-color: var(--color-main);
  padding: 5px 25px;
}
.upload-file input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.upload-file div {
  display: flex;
  align-items: center;
}
div#file-text {
  display: flex;
  align-items: center;
  font-size: 17px;
  padding-left: 131px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-employment-img {
  width: 95%;
  height: 395px;
  overflow: hidden;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/mask.png);
  mask-image: url(../images/mask.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: flex-end;
  margin-right: auto;
  position: relative;
  -webkit-mask-position: center;
  mask-position: center;
}
.sub-employment-img {
  margin: 10px auto;
}
/* end style employment ===================
==============================
====================== */

/* start style contactus ============
========================  */
.form-contactus {
  width: 50%;
  margin: 60px auto;
}

.map img {
  height: 400px;
  object-fit: cover;
  width: 100%;
}
.map img {
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
}
.error {
    width: 100%;
    display: block;
    color: red !important;
    font-size: 15px !important;
}
/* end style contactus ==============
====================  */

.text-departments-index {
    padding: 41px 50px 7px 40px;
}

ul#append-search {
    z-index: 11;
    background: #fff;
    position: absolute;
    width: 100%;
    padding:  0 10px 0;
}
ul#append-search li{

    padding: 10px 0;
    border-bottom: 1px solid var(--bg-1);
}

.text-departments-index p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 25px;
}
.text-serivces p {
    width: 90%;
    height: 180px;
    overflow: hidden;
}
.sub-departments-page .text-departments-index {
    padding-top: 38px;
    padding-bottom: 12px;
}

.text-departments-index p {
    height: 53px;
    overflow: hidden;
}
.img-aboutus-index img {
    width: 100%;
    box-shadow: 8px -8px 0px #d9d9d9;
    height: 420px;
    object-fit: cover;
}

.sub-services-details {
    width: 88%;
    margin: 20px auto;
}
.aboutus .img-aboutus-index img {
    width: 100%;
    height: 355px;
    margin: auto;
}
 