.banner-part {
    padding: 145px 0px 100px;
    background: url(../images/pattern/wave.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1
}

.banner-part::before {
    position: absolute;
    content: "";
    z-index: -1;
    opacity: 0.9;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--gradient)
}

.banner-content h4 {
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
    text-transform: capitalize
}

.banner-content h1 {
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -2px;
    text-transform: capitalize
}

.banner-content table {
    width: 85%;
    margin-bottom: 40px
}

.banner-content table tr td {
    color: var(--chalk);
    padding-left: 22px;
    line-height: 40px;
    position: relative;
    text-transform: capitalize
}

.banner-content table tr td::before {
    position: absolute;
    content: "\f192";
    top: 50%;
    left: 0px;
    font-size: 14px;
    line-height: 14px;
    color: var(--primary-light);
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    transform: translateY(-50%)
}

.banner-content .btn {
    font-size: 16px;
    padding: 16px 32px
}

.banner-image img {
    width: 100%;
    animation: miron 5s linear infinite
}

@keyframes miron {
    0% {
        transform: translateY(20px)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(20px)
    }
}

@media (max-width: 575px) {
    .banner-part {
        padding: 125px 0px 270px
    }

    .banner-content h4 {
        font-size: 18px
    }

    .banner-content tr {
        display: flex;
        flex-direction: column
    }
}

@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 45px
    }

    .banner-content table {
        width: 100%
    }
}

@media (max-width: 991px) {
    .banner-image {
        display: none
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-content h1 {
        font-size: 45px
    }

    .banner-content table {
        width: 100%
    }
}

.domain-content {
    padding: 30px;
    margin-top: -140px;
    background: var(--white);
    box-shadow: var(--primary-bshadow);
    position: relative;
    z-index: 1
}

.domain-nav {
    margin-bottom: 25px;
    justify-content: center
}

.domain-nav li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--border)
}

.domain-nav li:last-child {
    margin: 0px;
    padding: 0px;
    border: none
}

.domain-form {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 10px solid var(--white);
    box-shadow: var(--primary-bshadow)
}

.domain-form input {
    width: 100%;
    height: 60px;
    padding-left: 20px
}

.domain-form .nice-select {
    font-size: 24px;
    font-weight: 500;
    padding: 0px 18px 0px 30px;
    border-left: 1px solid var(--border)
}

.domain-form .nice-select .list {
    height: 160px;
    overflow: inherit;
    overflow-y: scroll
}

.domain-form .nice-select::after {
    font-size: 14px
}

.domain-form button {
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 50px;
    margin-left: 30px;
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.domain-form button:hover {
    background: var(--primary-deep)
}

.domain-form button i {
    margin-right: 8px
}

.domain-suggest {
    display: flex;
    align-items: center;
    justify-content: center
}

.domain-suggest li {
    padding: 0px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--border)
}

.domain-suggest li img {
    margin-bottom: 5px
}

.domain-suggest li:last-child {
    border: none
}

.footer-widget.new-contact  ul li a::before{
    text-decoration: none;
    list-style-type: none;
    display: none;
}

.footer-widget.new-contact  ul li {
    display: flex;
    align-items: center;

}


@media (max-width: 767px) {
    .domain-content {
        padding: 30px 15px
    }

    .domain-nav {
        flex-wrap: nowrap
    }

    .domain-nav li {
        margin-right: 25px;
        padding-right: 25px
    }

    .domain-form {
        border: none;
        box-shadow: none;
        flex-direction: column;
        margin-bottom: 30px
    }

    .domain-form input {
        padding: 0px 20px;
        margin-bottom: 15px;
        box-shadow: var(--primary-bshadow)
    }

    .domain-form .nice-select {
        padding: 0px 18px 0px 0px;
        margin-bottom: 15px;
        border: none
    }

    .domain-form button {
        margin-left: 0px
    }

    .domain-suggest li {
        width: 100%;
        padding: 0px;
        border: none
    }

    .domain-suggest li img {
        height: 11px
    }

    .domain-suggest li strong {
        font-size: 12px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .domain-content {
        padding: 50px
    }

    .domain-suggest li {
        padding: 0px 30px
    }
}

.feature-part {
    padding: 115px 0px 65px;
    background: var(--primary-chalk)
}

@media (max-width: 575px) {
    .feature-part {
        padding: 60px 0px 5px
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .feature-part {
        padding: 80px 0px 25px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-part {
        padding: 100px 0px 45px
    }
}





.banner-content p {
    color: var(--white);
    margin-bottom: 45px;
    margin-right: 50px;
}



.contact-form {
    padding: 30px 30px;
    margin: 0px 2.5px 30px;
    background: var(--white);
}

.contact-map {
    padding: 30px;
    margin: 0px 2.5px 30px;
    background: var(--white);
}
.contact-form h4 {
    margin-bottom: 25px;
}
.new-work .blog-card {
    margin-bottom: 40px;
}
.new-work .blog-media{
    margin-bottom: 15px;
}
.blog-media {
    margin-bottom: 10px;
}

/* .banner-image img {
    display: flex;
    margin: auto;
} */
nav.nav-sidebar.active .nav-header {
    background-color: #46166d;
}

.navbar-link {
    padding: 15px 20px;
}

.section-ptb-90{
    padding: 90px 0;
}
.section-pt-90{
    padding-top: 90px;
}
.banner-content h4 {
    margin-bottom: 10px;
}
/* lg desk */
@media (min-width:1400px) and (max-width: 2000px){
    .header-widget-group {
        display: none;
    }
    .banner-image img{
        margin-left: 30px;
    }
}

/* desk */
@media (min-width: 1200px) {
    .banner-image img {
        width: 80%;
        animation: miron 5s linear infinite
    }
    .header-logo img {
        width: auto;
        height: 90px;
        padding: 8px 0;
    }

    .header-widget-group {
        display: none;
    }
    .banner-image img{
        margin-left: 30px;
    }
}

/* ipad pro */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-logo img {
        height: 85px;
        padding: 8px 0;
    }
    .service-card h4 {
        font-size: 19px;
    }
    .nav-header a img {
        width: auto;
        height: 70px;
    }
    .navbar-link {
        padding: 20px 20px;
        font-weight: bold;
        font-size: 18px;
    }
}
/* ipad */
@media (min-width: 767px) and (max-width: 991px) {
    .header-logo img {
        height: 85px;
        padding-bottom: 8px;
    }
    .footer-action.mt-4{
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 30px;
    }
    .nav-header a img {
        width: auto;
        height: 70px;
    }
    .navbar-link {
        padding: 20px 20px;
        font-weight: bold;
        font-size: 18px;
    }
       header.header-part.active .header-logo img{
        padding-top: 8px;
    }
}
/* mobile */
@media (max-width: 766px) {
    .section-ptb-90{
        padding: 60px 0;
    }
    .header-logo img {
        height: 70px;
        padding-bottom: 8px;
    }
    header.header-part.active{
        padding-top: 8px;
    }
    .nav-header a img {
        width: auto;
        height: 60px;
    }
    .new-work .blog-card {
        width: 100%;
    }
    .banner-part {
        padding: 125px 0px 125px;
    }
    .footer-widget.new-contact  ul li {
        word-break: break-all;
    }
    .navbar-link {
        font-weight: bold;
        font-size: 18px;
    }
    .blog-btn {
        margin-top: 20px;
    }
    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-action {
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}
/* fold */
@media (min-width: 250px) and (max-width: 320px) {
    .new-work .blog-card {
        width: 100%;
    }
    .banner-part {
        padding: 125px 0px 125px;
    }
    .footer-widget.new-contact  ul li {
        word-break: break-all;
    }
}
