.top-par {
  background-color: var(--color-white);
  box-shadow: 0 3px 5px #0000001a;
}
.top-par .main-container {
  display: flex;
  align-items: center;
  height: 110px;
  justify-content: space-between;
}

.logo {
  padding: 15px 0;
  width: 120px;
  height: 110px;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.element ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.element ul li {
  z-index: 1;
  position: relative;
  height: 110px;
}
.element ul li::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  left: 0;
  background-color: var(--color-Primary2);
  color: var(--color-white);
  z-index: -1;
  transition: all 0.2s linear;
  transform: translateY(-100%);
}
.element ul li a {
  height: 110px;
  transition: all 0.2s linear;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--color-Primary3);
  padding: 10px;
  font-size: 19px;
}

.element ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--color-white);
  bottom: 10px;
  right: 0;
  transition: all 0.3s linear;
  transition-delay: 0.2s;
  opacity: 0;
  transform: translateX(100%);
}
.element ul li a::before {
  content: "";
  position: absolute;
  top: 24%;
  right: 10%;
  background-size: 10%;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/stars.png);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.element ul li:hover::after {
  transform: translateY(0);
}
.element ul li:hover a {
  color: var(--color-white);
}

.element ul li:hover a::after {
  transform: translatex(0);
  opacity: 1;
}

.profile-header,
.language {
  background-color: var(--color-Primary2);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 7px 20px;
  width: auto;
  gap: 5px;
  transition: all 0.3s linear;
  border: 1px solid var(--color-Primary2);
}

.profile-header:hover,
.language:hover {
  color: var(--color-Primary2);
  background-color: transparent;
}

.btns-top-par {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-dots-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.owl-dots-custom button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
  padding: 0;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.owl-dots-custom {
  left: 0;
  right: 0;
  margin: auto;
  bottom: 12%;

  z-index: 2;
  position: absolute;
}
.owl-dots-custom button.active {
  border-color: var(--color-Primary2);
}
.owl-dots-custom button img {
  width: 92%;
  border-radius: 50%;
  height: 92%;
  object-fit: cover;
}

.sub-slider-header {
  position: relative;
  width: 100%;
  height: 640px;
}

.sub-header {
  position: relative;
  height: 640px;
}
.sub-slider-header > img {
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
}

.img-slider-header > img {
  width: 100%;
  position: absolute;
  width: 100%;
  transform: scale(1.5);
  z-index: -1;
  transition: all 2s linear;

  right: 0;
  object-fit: cover;
  height: 100%;
}

.img-slider-header {
  width: 100%;
  z-index: 1;
  height: 640px;
  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: 100% 100%;
  justify-content: top;
  mask-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: auto;
  position: relative;
  -webkit-mask-position: top;
  mask-position: top;
}

.img-slider-header::after {
  content: "";
  background-color: #000;
  opacity: 0.5;
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  z-index: -1;
}

.text-slider-header {
  color: var(--color-white);
  padding-bottom: 80px;
}

.text-slider-header h2 {
  font-size: 35px;
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  font-family: "font_bold";
}

.text-slider-header p {
  color: var(--color-white);
  width: 50%;
  margin: 20px auto;
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  font-size: 20px;
  line-height: 35px;
}

.owl-item.active .text-slider-header h2,
.owl-item.active .text-slider-header p {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.6s;
}

.owl-item.active .text-slider-header p {
  animation-delay: 1s;
}

.owl-item.active .text-slider-header a {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1.4s;
}

.owl-item.active .img-slider-header > img {
  transform: scale(1);
}

.title-start h2,
.title-center h2 {
  font-size: 26px;
  font-family: "font_medium";
}

.header-pages .img-slider-header {
  height: 440px;
}
.header-pages .sub-slider-header {
  height: 440px;
}
.header-pages .sub-header {
  height: 440px;
}

.header-pages.active .img-slider-header > img {
  transform: scale(1);
}

.header-pages .img-slider-header::after {
  opacity: 0.6;
}
.breadcrumb-header {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.breadcrumb-header img {
  max-width: 50px;
}

.breadcrumb-header a {
  color: var(--color-white);
  font-size: 22px;
}
.breadcrumb-header a:hover {
  color: var(--color-Primary2);
}

.title-pages {
  text-align: center;
}

.breadcrumb-header {
  font-size: 22px;
  margin: 25px 0;
  color: var(--color-Primary2);
}
