.title-center {
  text-align: center;
}
.title-start,
.title-center {
  margin-bottom: 35px;
}
.title-start h2,
.title-center h2 {
  position: relative;
  padding-top: 25px;
  padding-bottom: 15px;
  display: inline-block;
}
.text-aboutus-index p {
  margin: 10px 0 30px;
  line-height: 30px;
}

.title-start h2 span::after,
.title-center h2 span::after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  right: 0;
  animation: colorborder 1s linear infinite;
  bottom: 0;
  background-color: var(--color-Primary2);
}

.title-start h2 span::before,
.title-center h2 span::before {
  content: "";
  animation: spin 1s linear infinite;
  width: 40px;
  height: 3px;
  position: absolute;
  right: 44px;
  bottom: 0;
  animation: colorborder 1s linear infinite;
  animation-delay: 0.3s;

  background-color: var(--color-Primary2);
}

.title-start h2::before,
.title-center h2::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  background-size: 10%;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/star.png);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes colorborder {
  0% {
    background-color: var(--color-Primary2);
  }
  50% {
    background-color: var(--color-Primary3);
  }
  100% {
    background-color: var(--color-Primary2);
  }
}

.img-aboutus-index {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.sub-img-aboutus-index {
  width: 44%;
  text-align: end;
}
.sub-img-aboutus-big {
  width: 56%;
  height: 395px;
}
.sub-img-aboutus-big img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sub-img-aboutus-index > img {
  margin-top: 15px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.img-logo-about {
  height: 180px;
  width: 180px;
  position: relative;
  margin-right: auto;
}

.img-logo-about::after {
  content: "";
  width: 95px;
  height: 95px;
  top: -20px;
  z-index: -1;
  position: absolute;
  right: -20px;
  animation: spin 3s linear infinite;

  background-image: url(../images/batern.png);
}
.img-logo-about img {
  width: 100%;
  height: 100%;
  object-fit: 100%;
}

.ctm-btn {
  background-color: var(--color-Primary2);
  height: 50px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 9px 20px;
  text-align: center;
  min-width: 140px;
  width: auto;
  gap: 5px;
  transition: all 0.3s linear;
  border-radius: 0px;
  border: 1px solid var(--color-Primary2);
}
.ctm-btn:hover {
  background-color: transparent;
  color: var(--color-Primary2);
}

.sub-info-about-index {
  background-color: #faf4e5;
  padding: 25px;
}
.title-info-about {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.title-info-about h2 {
  font-size: 22px;
  font-family: "font_medium";
}

.img-info-about {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-info-about img {
  object-fit: contain;
  width: 100%;
}

.title-info-about::after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  right: 0;
  animation: colorborder 1s linear infinite;
  bottom: -1px;
  background-color: var(--color-Primary2);
}

.title-info-about::before {
  content: "";
  animation: spin 1s linear infinite;
  width: 40px;
  height: 3px;
  position: absolute;
  right: 44px;
  bottom: -1px;
  animation: colorborder 1s linear infinite;
  animation-delay: 0.3s;
  background-color: var(--color-Primary2);
}
.sub-info-about-index {
  position: relative;
  aspect-ratio: 1 / 0.67;
  transition: all 0.3s linear;
}

.sub-info-about-index::after {
  content: "";
  position: absolute;
  width: 106%;
  height: 106%;
  top: -10px;
  right: -10px;
  z-index: 1;
  background-image: url(../images/bg-4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s linear;

  pointer-events: none;
}
.sub-info-about-index:hover {
  background-color: #f3f3f3;
}
.sub-info-about-index:hover::after {
  transition: all 0.3s linear;
  animation: rotateborder 1s linear infinite;
  transform: rotate(0deg);
}
.sub-info-about-index p {
  font-size: 15px;
  line-height: 24px;
  height: 96px;
  overflow: hidden;
}

@keyframes rotateborder {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

.info-about-index {
  background-color: #fcfcfc;
}

.sub-services-index {
  background-color: #f9f9f9;
}

.img-services-index {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.img-services-index img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  object-fit: cover;
}
.text-services-index {
  padding: 20px;

  text-align: center;
}

.text-services-index h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: var(--color-Primary2);
}

.text-services-index h2::after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  right: 0;
  left: 44px;
  margin: auto;
  animation: colorborder 1s linear infinite;
  bottom: -1px;
  background-color: var(--color-Primary2);
}

.text-services-index h2::before {
  content: "";
  animation: spin 1s linear infinite;
  width: 40px;
  height: 3px;
  position: absolute;
  left: 0;
  margin: auto;
  right: 44px;
  bottom: -1px;
  animation: colorborder 1s linear infinite;
  animation-delay: 0.3s;
  background-color: var(--color-Primary2);
}

.text-services-index p {
  line-height: 25px;
  overflow: hidden;
  font-size: 15px;
  height: 100px;
  color: var(--color-Primary3);
}

.sub-services-index {
  box-shadow: 0 2px 12px transparent;
  transition: all 0.3s linear;
  margin-bottom: 25px;
  margin-top: 80px;
}
.sub-services-index:hover {
  background-color: var(--color-Primary2);
  box-shadow: 0 5px 12px #0000003d;
  transform: translateY(-20px);
}
.sub-services-index:hover p {
  color: var(--color-white);
}

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

.sub-services-index:hover h2::after,
.sub-services-index:hover h2::before {
  animation: colorborder1 1s linear infinite;
}
.sub-services-index:hover h2::before {
  animation-delay: 0.3s;
}
@keyframes colorborder1 {
  0% {
    background-color: var(--color-black);
  }
  50% {
    background-color: var(--color-white);
  }
  100% {
    background-color: var(--color-black);
  }
}

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

.partners-index {
  padding: 40px 0;
  background-color: var(--color-black);
  background-image: url(../images//bg-5.png);
  background-size: contain;
}

.sub-partners-index {
  max-width: 120px;
  margin: auto;
}

.sub-partners-index img {
  width: auto !important;
}

.sub-partners-index {
  display: flex;
  align-items: center;
  height: 150px;
  justify-content: center;
}

.main-recruitment-index {
  background-image: url(../images/bg-3.jpg);
  width: 100%;
  background-size: cover;
  min-height: 550px;
  padding: 50px;
  position: relative;
  z-index: 1;
}
.main-recruitment-index::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #df8110;
  opacity: 0.95;
  top: 0;
  right: 0;
  z-index: -2;
}
.main-recruitment-index::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background-color: var(--color-white);
  top: 0;
  left: 0;
  z-index: -1;
}

.text-recruitment-index {
  color: var(--color-white);
}
.sub-recruitment-index > h2 {
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 35px;
  font-family: "font_medium";
  text-shadow: 0 0 5px #00000025;
}

.sub-recruitment-index ul li {
  display: flex;
  align-items: self-start;
  margin: 60px 0 0;
  gap: 10px;
}
.text-recruitment-index {
  width: calc(100% - 70px);
}
.text-recruitment-index h2 {
  text-shadow: 0 0 5px #00000025;
  /* color: #000; */
  font-size: 22px;
  font-family: "font_bold";
}
.text-recruitment-index p {
  text-shadow: 0 0 5px #00000025;
  line-height: 28px;
  color: var(--color-white);
}
.img-recruitment-index {
  width: 60px;
  height: 60px;
}

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

.form-recruitment {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 35px;
  z-index: 1;
  background-color: #f6f6f6;
}

.form-recruitment::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
  pointer-events: none;
  transform: translateY(-50%);
  width: calc(100% - 25px);
  z-index: -2;
  height: calc(100% - 25px);
  border: 1px solid var(--color-Primary2);
}
.form-recruitment::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 180px;
  height: 180px;
  background-image: url(../images/bg-7.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  z-index: -1;
}

.form-recruitment > h2 {
  font-size: 19px;
  color: var(--color-Primary3);
  margin-bottom: 25px;
}

.form-recruitment .input-form .form-control {
  background-color: var(--color-white);
  height: 50px;
  border-radius: 0;
  color: var(--color-Primary3) !important;

  border-color: transparent;
}
.form-recruitment .input-form .form-control::placeholder {
  color: var(--color-Primary3);
  font-size: 15px;
}

.sub-form-recruitment {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-form-recruitment > div {
  width: 50%;
}
.form-recruitment .input-form {
  margin: 5px 0;
}

.upload-flie input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: -444;
}

.upload-flie label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: space-between;
}

.upload-flie label i {
  color: var(--color-Primary2);
}

.arrow-select::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../images/arrow-down.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: 15px;
  left: 15px;
}

.input-form.arrow-select {
  position: relative;
}
.newsletter {
  min-height: 450px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: right;
  background-size: 100%;
  background-image: url(../images/bg-8.png);
}
.form-newsletter {
  width: 60%;
  text-align: center;
  padding-left: 5%;
  margin-right: auto;
}

.form-newsletter {
  text-align: start;
  color: #fff;
}

.form-newsletter h2 {
  margin-bottom: 10px;
}
.form-newsletter form {
  position: relative;
}
.form-newsletter button {
  position: absolute;
  left: 5px;
  height: 45px;
  top: 5px;
}

.form-newsletter .form-control {
  height: 55px;
}

.main-contactus {
  position: relative;
}
.form-contactus {
  padding: 90px 50px 90px;
  background-color: var(--color-Primary1);
}
.form-contactus .input-form .form-control {
  border-color: transparent;
  background-color: #f5fbff42 !important;
}
.form-contactus .input-form .form-control::placeholder {
  color: var(--color-white);
  transition: all 0.3s linear;
}

.form-contactus .input-form .form-control:focus {
  background-color: var(--color-white) !important;
}

.form-contactus .input-form .form-control:focus::placeholder {
  color: var(--color-Primary1);
}

.form-contactus button {
  background-color: var(--color-white);
  color: var(--color-Primary2);
  border: 1px solid transparent;
}

.form-contactus button:hover {
  background-color: var(--color-Primary2) !important;
  color: var(--color-white);
}

.form-contactus > h2 {
  background-color: var(--color-Primary1);
  position: absolute;
  right: 50px;
  z-index: 1;
  top: 35px;
  font-family: "font_medium";
  font-size: 25px;
  padding: 0 20px;
  color: var(--color-white);
}

.main-contactus-index {
  position: relative;
}

.main-contactus-index::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  position: absolute;
  width: calc(100% - 12px);
  left: 0;
  opacity: 0.8;
  right: 0;
  height: calc(100% - 103px);
  margin: auto;
  border: 2px solid var(--color-Primary2);
}

.conuter-index {
  background-size: cover;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  background-position: 0px -275px;
  z-index: 1;
  background-repeat: no-repeat;
}

.conuter-index::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-Primary2);
  opacity: 0.88;
  z-index: -1;
  right: 0;
  position: absolute;
}

.counter-box {
  width: calc(20% - 8px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.text-counter-number {
  font-size: 28px;
  font-family: "font_bold";
}
.counter-box p {
  color: var(--color-white);
  font-family: "font_medium";
  font-size: 22px;
}

.counter-box {
  border-left: 1px solid #fff;
}
.counter-box:last-of-type {
  border: none;
}
.main-conuter-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
}

.img-ask-about {
  display: flex;
  align-items: end;
  position: relative;
  padding-bottom: 50px;
}
.img-ask-about img {
  object-fit: cover;
  width: 60%;
}

.img-ask-about img:nth-of-type(1) {
  height: 400px;
  width: 65%;
}
.img-ask-about img:nth-of-type(2) {
  position: absolute;
  width: 60%;
  height: 230px;
  left: 0;
  bottom: 0;
}

.sub-asked-questions {
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 5px;
  position: relative;
  flex-wrap: wrap;
  margin: 0 0 15px 0;
}
.sub-asked-questions h2 {
  font-size: 18px;
  cursor: pointer;
  padding-left: 80px;
  user-select: none;
  width: 100%;
  color: var(--color-Primary1);
}
.sub-asked-questions p {
  display: none;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-Primary3);
  margin-top: 15px;
}
.puls-que {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--color-Primary2);
  border-radius: 50%;
  width: 40px;
  pointer-events: none;
  height: 40px;
}
.puls-que::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  top: 20px;
}

.puls-que::before {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  content: "";
  left: 0;
  right: 0;
  transform: rotate(90deg);
  margin: auto;
  top: 20px;
  transition: all 0.3s linear;
}
.sub-asked-questions.active {
  background-color: #f4faff;
}
.sub-asked-questions.active .puls-que::before {
  transform: rotate(0deg);
}

.services .sub-services-index {
  margin-top: 15px;
}
.img-services-details {
  width: 100%;
}

.text-services-details h2,
.text-services-details h3,
.text-services-details h4 {
  font-size: 22px;
  color: var(--color-Primary2);
  margin: 20px 0;
  font-family: "font_medium";
}
.text-services-details {
  margin: 20px;
}
.text-services-details p,
.text-services-details span {
  color: var(--color-Primary3);
  font-size: 18px;
}

.text-services-details li {
  padding: 0 25px 0 0;
  margin: 15px 0;
  list-style-type: none !important;
  font-size: 18px;
  color: var(--color-Primary3);
  position: relative;
}

.text-services-details li::after {
  content: "";
  position: absolute;
  width: 16px;
  background-image: url(../images/star.png);
  position: absolute;
  right: 0;

  top: 3px;
  height: 16px;
}

.order-services {
  text-align: center;
  margin: 50px auto;
  display: none;
  width: 80%;
}

.order-services.active {
  display: block;
}

.order-services h2 {
  width: 100%;
  text-align: right;
  margin-bottom: 15px;
}

.order-services .form-control {
  height: 55px;
  border-radius: 5px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
  border: 1px solid #8a8a8a;
}
button#btn-show.active {
  background: red;
  border-color: transparent;
}
button#btn-show.active:hover {
  color: red;
  border-color: red;
  background-color: transparent;
}

.sub-partners {
  width: 100%;
  height: 140px;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  padding: 13px;
  margin: 5px 0;
  text-align: center;
  transition: all 0.3s linear;
}
.sub-partners img {
  height: 100%;
  object-fit: contain;
  margin: auto;
}
.sub-partners:hover {
  border-color: var(--color-Primary2);
}

.text-recruitment .text-recruitment-index h2,
.text-recruitment .text-recruitment-index p {
  color: var(--color-Primary3);
  text-shadow: none;
}
.text-recruitment .sub-recruitment-index > h2 {
  color: var(--color-Primary2);
  text-shadow: none;
}

.img-recruitment {
  width: 100%;
  height: 415px;
}

.img-recruitment img {
  width: 100%;
  height: 100%;
}

.owl-theme .owl-dots .owl-dot span {
  width: 37px;
  height: 5px;
  margin: 5px 7px;
  border-radius: 3px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ffa02d;
}

.img-recruitment {
  height: 415px;
}
.img-recruitment img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.recruitment-page .form-recruitment {
  width: 70%;
  margin: 90px auto;
  height: auto;
  min-height: 550px;
}

.sub-info-contactus {
  background-color: transparent;
  min-height: 250px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  box-shadow: 0 2px 5px transparent;

  border-radius: 5px;
  transition: all 0.3s linear;
  border: 1px solid #bcbcbc;
}

.sub-info-contactus:hover {
  background-color: var(--color-white);
  box-shadow: 0 2px 5px #00000028;
  border-color: var(--color-Primary2);
}
.img-info-contactus {
  width: 70px;

  height: 70px;
  margin: auto;
}

.img-info-contactus img {
  width: 100%;
  object-fit: contain;
}

.text-info-contactus {
  width: 100%;
}
.text-info-contactus h2 {
  color: var(--color-Primary3);
  font-family: "font_medium";
}
.text-info-contactus p {
  color: var(--color-Primary1);
}

.info-contactus .row {
  row-gap: 15px;
}
