.header {
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
.header::after {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  width: 180px;
  height: 180px;
  top: 20%;
  right: -60px;
  z-index: -1;
  background-image: url(../images/bg-.png);
  background-size: contain;
}
.top-par {
  background-color: var(--color-Primary3);
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 20px;
  justify-content: space-between;
}

.logo {
  max-width: 170px;
  max-height: 90px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.element ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.element ul li a {
  color: var(--color-black);
  font-size: 18px;
  font-family: "font_medium";
  transition: all 0.3s linear;
}

.element ul li a:hover {
  color: var(--color-Primary1);
}

.ctm-btn {
  border-radius: 8px;
  background: radial-gradient(
    49.03% 61.11% at 50% 49.31%,
    #ff8383 0%,
    #ff4040 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 55px;
  display: inline-block;
  padding: 11px 30px;
  font-size: 18px;
  min-width: 160px;
  border: none;
  transition: all 0.3s linear;
  color: var(--color-white);
  z-index: 1;
}

.ctm-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all 0.3s linear;

  z-index: -1;
  right: 0;
  opacity: 0;
  background-color: var(--color-black);
}
.ctm-btn:hover:after {
  opacity: 1;
}
.ctm-btn:hover {
  color: var(--color-white);
}

.text-sub-header h4 {
  color: var(--color-Primary1);
  font-family: "font_medium";
  font-size: 19px;
}
.text-sub-header h1 {
  margin: 15px 0;
  line-height: 50px;
}

.text-sub-header p {
  margin-bottom: 50px;
}
