.header {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: bottom right;
  z-index: 1;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  justify-content: center;
  height: 100%;
  padding-top: 180px;
}

.header::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--color-Primary1);
  opacity: 0.84;
  z-index: -1;
}
.main-top-par {
  position: absolute;
  top: 0;
  width: 100%;
}
.top-par {
  height: 105px;
  display: flex;
  align-items: center;

  background-color: var(--color-white);
}
.top-par .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 225px;
  max-height: 81px;
}

.ctm-btn {
  display: inline-block;
  height: 50px;
  white-space: normal;
  background-color: var(--color-Primary2);
  color: var(--color-white);
  padding: 11px 25px;
  min-width: 180px;
  text-align: center;
  border: none;
  font-family: "font_medium";
  border-radius: 5px;
}
.ctm-btn i {
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
  line-height: 0;
}
.ctm-btn:hover {
  color: var(--color-white);
  background-color: var(--color-Primary1);
}

.nav-header {
  display: flex;
  align-items: center;
  height: 70px;
  backdrop-filter: blur(5px);
  background-color: #c2e3ff33;
}
.nav-header .main-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.element > ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.element > ul > li > a {
  color: var(--color-white);
  display: flex;
  gap: 10px;
  position: relative;
  transition: all 0.25s linear;
  align-items: center;
  height: 70px;

  font-size: 17px;
  font-family: "font_medium";
}

.element > ul > li > a::after {
  content: "";
  width: 100%;
  background-color: var(--color-Primary2);
  position: absolute;

  bottom: 0;
  transform: scaleX(0);
  left: 0;
  right: 0;
  transition: all 0.25s cubic-bezier(0.58, -0.14, 0.79, 1.51);
  margin: auto;
  height: 3px;
}
.element > ul > li > a:hover::after {
  transform: scaleX(1);
}

.element > ul > li > a:hover {
  color: var(--color-Primary2);
}

.dropdowm-language {
  background-color: var(--color-white);
  position: absolute;
  top: 100%;
}

.dropdowm-language {
  position: absolute;
  width: 150px;
  top: 100%;
  padding: 0 0px;
  display: none;
  background-color: var(--color-white);
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.dropdowm-language ul {
  display: block;
}

.dropdowm-language ul li:last-of-type a {
  border-bottom: none;
}

.dropdowm-language ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  font-family: "font_medium";
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
}

.dropdowm-language ul li a img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdowm-language ul li a:hover {
  background-color: #dfeffc;

  color: var(--color-Primary1);
}

.social-media-header ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media-header ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  color: var(--color-Primary2);
  border: 1px solid var(--color-white);
  justify-content: center;
}

.social-media-header ul li a:hover {
  color: var(--color-white);
}
.social-media-header ul li:nth-of-type(1) a:hover {
  background-color: #00a884;
  border-color: #00a884;
}
.social-media-header ul li:nth-of-type(2) a:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}

.social-media-header ul li:nth-of-type(3) a:hover {
  background: #d6249f;
  border-color: #d6249f;
}
.social-media-header ul li:nth-of-type(4) a:hover {
  background-color: #0a66c2;
  border-color: #0a66c2;
}
.input-search {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 5px;
}
.input-search input {
  background-color: var(--color-white);
  border: 1px solid var(--color-Primary2);
}
.input-search input:focus ~ button {
  background-color: #d6931f;
}
.input-search input:focus {
  border: 1px solid var(--color-Primary2);
}
.sub-header {
  width: 100%;
}
.sub-header form {
  width: 60%;
  margin: auto;
  display: block;
}
.sub-header form h2 {
  font-size: 27px;
  line-height: 45px;
  text-align: center;
  color: var(--color-white);
  font-family: "font_bold";
}

.btn-searh {
  background-color: var(--color-Primary2);
  height: 100%;
  transition: all 0.3s linear;
  top: 0;
  left: 0px;
  border: none;
  font-size: 19px;
  color: var(--color-white);
  position: absolute;
  padding: 11px 20px;
}
.btn-searh:hover {
  background-color: var(--color-Primary2) !important;
}

.header-pages {
  min-height: auto;
  background-color: var(--color-Primary1);
}

.header-pages::after {
  display: none;
}

.title-page {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 350px;
}

.sub-title-page h1 {
  text-align: center;
  color: var(--color-white);
}

.breadcrumb-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  font-size: 20px;
  color: var(--color-white);
}

.breadcrumb-header a {
  color: var(--color-white);
  font-size: 20px;
}
.breadcrumb-header a:hover {
  color: var(--color-Primary2);
}

.bg-title-right {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  right: 0;
}

.bg-title-left {
  position: absolute;
  bottom: 0;
  width: 30%;
  height: 100%;
  left: 0;
}
.bg-title-left object {
  width: 100%;
  user-select: none;
  height: 100%;
}
.bg-title-right object {
  transform: scale(-1);
  width: 100%;
  user-select: none;
  height: 100%;
}

.order-service {
  padding: 50px;
}

.close {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 34px;
}
.arrow-select {
  position: relative;
}
.arrow-select select {
  color: var(--color-Primary1) !important;
  -webkit-appearance: none;
  appearance: none;
}

.arrow-select::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/arrow-d.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: 20px;
  left: 20px;
}

.owl-dots button span {
  transition: all 0.3s linear !important;
  background-color: #c4e4ff !important;
  margin: 3px !important;
}
.owl-dots button.active span {
  background-color: var(--color-Primary2) !important;
  width: 35px !important;
}

.loader {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent var(--color-Primary2)
    var(--color-Primary2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 32px;
  height: 32px;
  border-color: #fff #fff transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.loading {
  width: 100%;
  height: 100vh;
  background-color: var(--mainColor);
  position: fixed;
  transition: all .3s linear;
  top: 0;
  right: 0;
  z-index: 9999999999;
  background-color: var(--color-Primary1);
  display: flex ;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-loader  {
  max-width: 350px;
  max-height: auto;
  margin-bottom: 30px;
}