/* :: HEADER :: */
header {
  background-image: url(../../images/backgournds/domain-bg.png);
  background-size: 50%;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
}
[dir="rtl"] header {
  background-position: center left;
}
@media only screen and (max-width: 1199.98px) {
  header {
    padding: 80px 0 60px;
  }
}
@media only screen and (max-width: 991.98px) {
  header {
    padding: 60px 0;
    background-image: unset;
  }
}

/* title-1 */
header .title-1 {
  display: inline-flex;
  font-size: clamp(2.027rem,calc(.6366rem + 2.1vw),2.247rem);
  font-family: var(--primary-font);
  color: var(--darkBlue);
  line-height: 1.2;
}

/* form-label */
header .search-form .form-label {
  position: relative;
  width: 560px;
  background-color: #fff;
  border-radius: 4px;
  padding: 1px 1px 1px 0;
}
@media only screen and (max-width: 991.98px) {
  header .search-form .form-label {
    background-color: unset;
    padding: unset;
  }
}
@media only screen and (max-width: 767.98px) {
  header .search-form .form-label {
    width: 100%;
  }
}

/* input-icon */
header .search-form .input-icon {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
[dir="rtl"] header .search-form .input-icon {
  left: unset;
  right: 14px;
}

/* form-input */
header .search-form .form-input {
  width: 100%;
  height: 54px;
  padding: 0 20px 0 44px;
  font-size: 15px;
  font-weight: 600;
}
[dir="rtl"] header .search-form .form-input {
  padding: 0 44px 0 20px;
}
header .search-form .form-input::placeholder {
  font-weight: 400;
  color: var(--darkBlue);
  opacity: .7;
}

/* submit-btn */
header .search-form .submit-btn {
  font-size: 15px;
  font-weight: 400;
  height: 54px;
  padding: 0 36px;
  letter-spacing: .8px;
}

/* para-1 */
header .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
}
header .para-1 a {
  display: inline-flex;
  margin-left: 8px;
  font-weight: 500;
  color: var(--darkGray);
  text-decoration: underline;
}
header .para-1 a:hover {
  color: var(--primary);
}

/* box */
header .boxes {
  gap: 15px 15px;
}
header .box {
  padding: 0 20px;
  height: 47px;
  width: 90px;
  background-color: #feebec;
  color: var(--darkBlue);
  font-size: 14px;
  font-family: var(--primary-font);
  font-weight: bold;
  border-radius: 4px;
}
header .box-2 {
  background-color: #f7ecff;
}
header .box-3 {
  background-color: #ecf0ff;
}
header .box-4 {
  background-color: #d7f9f3;
}
header .box-5 {
  background-color: #fff2cc;
}
/* ----------------------------------- */

/* :: SE-I :: */

/* box */
.se-i .box {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: -4px 4px 0 var(--primary-shadow);
  padding: 40px 30px;
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.se-i .box:hover {
  box-shadow: 0 0 0 var(--primary-shadow);
}

/* box-title */
.se-i .box-title .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 10px;
  /* box-shadow: -2px 2px 0 #B0C3FF; */
}
.se-i .box-title .title {
  font-size: 32px;
  font-family: var(--primary-font);
  color: var(--darkBlue);
  font-weight: bold;
  /* text-shadow: -2px 2px 0 #B0C3FF; */
}

/* box-text */
.se-i .box-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--lightBlue);
}

/* price */
.se-i .price .currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--darkBlue);
}
.se-i .price .num {
  font-family: var(--primary-font);
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
}
.se-i .price .duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--darkBlue);
}
/* ----------------------------------- */