.top-par {
  background-color: var(--color-white);
  padding: 10px 0;
  display: flex;
  align-items: center;
  height: 120px;
  box-shadow: 0px 9px 12px rgba(117, 117, 117, 0.1);
}
.element ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.element ul li a {
  font-size: 17px;
  transition: all 0.3s linear;
}

.element ul li a:hover {
  color: var(--bg-2);
}
.ctm-btn {
  height: 45px;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  min-width: 140px;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s linear;
  color: var(--color-white);
  background-color: var(--color-main);
}
.language {
  position: relative;
}
.dropdowm-language {
  position: absolute;
  width: 190px;
  top: calc(100% + 20px);
  padding: 0 0px;
  background-color: var(--color-white);
  border-radius: 10px;
  border: 1px solid #7070701e;
  z-index: 5;
  left: 0;
  display: none;
  overflow: hidden;
  box-shadow: 0 2px 5px #00000041;
}

.dropdowm-language ul {
  display: block;
}

.dropdowm-language ul li:last-of-type a {
  border-bottom: none;
}

.language1 {
  position: relative;
}

.dropdowm-language ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  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;
}


.ctm-btn:hover {
  background-color: var(--color-title);
  color: var(--color-white);
}
.btns-top-par {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.logo {
  max-width: 160px;
}

.header::after {
  content: "";
  background-image: url(/assets/images/bg.png);
  width: 46%;
  height: 120%;
  min-height: 781px;
  position: absolute;
  left: 0;
  top: 120px;
  z-index: -2;
  background-repeat: no-repeat;
  background-size: contain;
}

.header::before {
  content: "";
  background-image: url(/assets/images/bg2.png);
  width: 3960px;
  top: 120px;
  left: 0;
  position: absolute;
  z-index: -1;
  background-repeat: repeat;
  background-size: contain;
  display: block;
  background-position: 0;
  animation: bg 190s linear infinite;
  height: 120%;
}

@keyframes bg {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}

.text-sub-header h1 {
  color: var(--color-title);
}

.text-sub-header p {
  margin: 40px 0;
  font-size: 22px;
}
.img-sub-header {
  position: relative;
  height: 700px;
}
.img-sub-header {
  display: flex;
  gap: 10px;
}
.app-download a {
  display: inline-block;
  width: 30%;
}

.img-sub-header img {
  width: 67%;
  top: 0%;
  position: absolute;
  object-fit: contain;
  top: 50px;
}

.img-sub-header img:nth-of-type(1) {
  right: 0;
  object-position: right;
  top: 77px;
  animation: phone 3s linear infinite;
}
.img-sub-header img:last-of-type {
  left: 0;
  animation: phone2 3s linear infinite;
}

@keyframes phone {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes phone2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px);
  }
}
