.wrap__banner {
    position: relative;
}

.banner__content {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30%;
    left: 0;
}

.banner__content .banner__headder {
    padding-bottom: 10px;
    font-size: 2rem;
    color: var(--color-white);
}

.banner__content ul {
    display: flex;
    justify-content: center;
}

.banner__content ul li{
    color: #e8e8e8;
}

.banner__content ul li a {
    color: var(--color-theme-1);
}

.banner__content ul li:first-child {
    color: var(--color-white);
}

.banner__content ul li:first-child::after {
    content: ">";
    padding: 0 15px;

}

.bg__img {
    width: 100%;
    height: 100%;
}

.bg__img-1 {
    background-image: url(../img/bg/home-1.jpg);
    background-position: center;
}

.home__bg-2 {
    
    background-color: rgba(0, 0, 0, 0.838);
  /* filter: blur(8px);
  -webkit-filter: blur(8px); */
  position: relative;
}

.home__bg-2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  z-index: -1;
  background-image: url(../img/bg/home-bg-2.jpg);
  /*background-position: center center;
  */background-repeat: no-repeat;
  /*background-size: cover;
  */filter: blur(5px);
  -webkit-filter: blur(5px);
}

/* tab__2 */
.tab__slider-1 {
    /* background-image: url(../img/home/02.jpg); */
    /* width: 100%; */
    /* height: 500px; */
}

.tab__slider-content {
    position: relative;
}

.tab__slider-content article {
    /* width: 769px; */
    /* padding: 4rem; */
    /* background-image: linear-gradient(180deg, rgba(255,170,74, 0.8) 0%, rgba(230,97,63, 0.8) 100%); */
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.tab__slider-content article p, .tab__slider-content article h2 {
    color: var(--color-white);
}

.tab__slider-content .artice__header p {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.tab__slider-content .artice__header h2 {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.tab__slider-content .article__body p {
    font-size: 1rem;
    font-family: var(--font-secondary);

}

.tab__2-btns ul li {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 2.8rem;
    cursor: pointer;
}

.tab__2-btns ul li:hover{
    color: var(--color-theme-1);
    transition: ease-in-out 500ms;
    -webkit-transition: ease-in-out 500ms;
    -moz-transition: ease-in-out 500ms;
    -ms-transition: ease-in-out 500ms;
    -o-transition: ease-in-out 500ms;
}

/* form styling */
.form__input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0.3rem 0.3rem;
    border-bottom: 1px solid var(--color-white);
    width: 100%;
}

.form__input::placeholder {
    color: var(--color-white);
}

/* partner */
.partner__img {
    width: 130px;
}

/* home gallery grid */
.grid__block-wrap {
    position: relative;
}

.grid__block-content {
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.33); */
    /* background-color: rgb(7, 7, 7);   */
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0px;
    z-index: 9;
}

/* testimonials */
.testimonial__content {
    padding: 40px;
}

.testimonial__content p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 2.3rem;
    color: var(--color-white);
}

/* our process */
.wrap__process {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.process__block {
    width: 100%;
}

/* .process__block:nth-child(odd) {
    background-color: yellow;
}

.process__block:nth-child(even) {
    background-color: red;
} */

/* .box__1 {
    border-bottom: 1px solid var(--color-theme-1);
} */

.box__1, .box__2 {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.box-2 {
    width: 100%;
    /* margin: 20px 0; */
    /* background-color: #fff; */
}

.process__box {
    margin: auto;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-theme-1);
}

.process__number {
    font-size: 60px;
    font-weight: 600;
    position: relative;
}

.process__block-1 .process__number, .process__block-3 .process__number {
    padding-top: 20px;

}

.process__block-2 .process__number, .process__block-4 .process__number {
    padding-bottom: 20px;
    
}

.process__number::after {
    content: '';
    width: 2px;
    height: 80px;
    background-color: var(--color-theme-1);
    display: inline-block;
    position: absolute;
    left: 90px;
    bottom: -41px;
}

.process__block-1 .process__number::after, .process__block-3 .process__number::after {
    bottom: -42px;
}

.process__block-2 .process__number::after, .process__block-4 .process__number::after {
    top: -28px;
}

.border__bottom {
    border-bottom: 2px solid var(--color-theme-1);
}