@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Vidaloka&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-weight: 300;
    color: #555;

}

html,
body {
    font-family: "Poppins", serif;
    font-weight: 300px;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    background-color: #FFFCE5;
}

body {
    overflow-x: hidden !important;
}


body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #FFFCE5;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgb(99, 198, 255) 0%, rgb(255, 229, 82) 100%);
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(91, 195, 255) 0%, rrgb(255, 229, 85)100%);
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

.ac-row {
    align-items: center;
}

.theme-h2 {
    font-family: "Poppins", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(30deg, rgba(0, 0, 0, 1) 0%, rgba(80, 80, 80, 1) 57%, rgba(0, 0, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 40px;
    margin: 0px;
}

.theme-h3 {
    font-family: "Poppins", serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    line-height: 40px;
    margin: 0px;
}

.theme-h4 {
    font-family: "Poppins", serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0px;
}

.theme-h5 {
    font-family: "Poppins", serif;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0px;
}

.theme-p1 {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    margin: 0px;
    color: #000000;
}

.theme-p2 {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    margin: 0px;
}

.theme-p3 {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 37px;
    margin: 0px;
    color: #000000;
}

.bnr-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 45px;
}

.theme-btn1 {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 19px;
    line-height: normal;
    color: #000 !important;
    text-decoration: none;
    text-align: center;
    padding: 14px 40px 14px;
    background: #FF9853;
    border-radius: 30px !important;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.theme-btn1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(30deg, rgba(0, 0, 0, 1) 0%, rgba(80, 80, 80, 1) 57%, rgba(0, 0, 0, 1) 100%);
    color: #fff;
    transition: all 0.3s;
    border-radius: 30px;
    z-index: -1;
}

.theme-btn1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF9853;
    border-radius: 30px;
    z-index: -2;
}

.theme-btn1:hover {
    color: #ffffff !important;
}

.theme-btn1:hover:before {
    width: 100%;
}

.theme-btn1:hover:before {
    width: 100%;
    left: 0px;
}

.theme-btn2 {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 19px;
    line-height: normal;
    color: #000 !important;
    text-decoration: none;
    text-align: center;
    padding: 14px 40px 14px;
    background: transparent;
    border-radius: 30px !important;
    border: 1px solid #000;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.theme-btn2:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(30deg, rgba(0, 0, 0, 1) 0%, rgba(80, 80, 80, 1) 57%, rgba(0, 0, 0, 1) 100%);
    color: #fff;
    transition: all 0.3s;
    border-radius: 30px;
    z-index: -1;
}

.theme-btn2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 30px;
    z-index: -2;
}

.theme-btn2:hover {
    color: #ffffff !important;
}

.theme-btn2:hover:before {
    width: 100%;
}

.theme-btn2:hover:before {
    width: 100%;
    left: 0px;
}

.theme-btn3 {
    font-family: "Poppins", serif;
    font-size: 24px;
    font-weight: 600;
    color: #000 !important;
}

header {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    margin: 0px;
}

.navbar-brand img {
    width: 200px;
}

nav.main-navbar {
    background: #00000000 !important;
    padding: 37px 100px;
}

.navbar-items-wrap ul.navbar-nav {
    justify-content: center !important;
    margin: 0 auto;
}

.navbar-items-wrap ul.navbar-nav li.nav-item {
    padding: 4px 35px;
}

.navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    padding: 0px;
    color: #000;
}

.navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.active {
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    padding: 0px;
    color: #000;
}

/* main navbar dropdown */

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item {
    position: static;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu {
    display: block;
    transform: none !important;
    width: 87.5%;
    top: 114px !important;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s;
    border: none;
    border-radius: 0px;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    padding: 38px 34px;
    box-shadow: 0px 4px 8px 0px #8080805e;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item.dropdown:hover ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu li {
    list-style-type: none;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    padding-top: 20px;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu ul li {
    padding: 2px 0px;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu ul li a {
    padding: 12px 6px 12px 12px;
    color: #000 !important;
    line-height: 1.2;
    border-radius: 4px;
    transition: all 0.3s;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu ul li a:hover {
    background-image: linear-gradient(135deg, #faf6c6, #fdbcbe, #faf6c6, #fdbcbe, #faf6c6);
    background-size: 600%;
    background-position: 0 0;
    /* Animation */
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: serviceBgGradients;
}

@keyframes serviceBgGradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu li h4:before {
    content: "";
    height: 2px;
    width: 36px;
    background: #fb915c;
    position: absolute;
    left: 0;
    bottom: -7px;
    transition: all 0.9s;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu li h4 {
    position: relative;
}

nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu li:hover h4:before {
    width: 100%;
}

.navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle {
    position: relative;
}

.navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle:after {
    display: none;
}

.navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle:before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    right: -22px;
    position: absolute;
    top: 1px;
    font-size: 16px;
    transition: all 0.3s;
}

/* menu search bar */

.main-navbar-searchBar {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.main-navbar-searchBar .location-wrap {
    display: flex;
    justify-content: space-between;
    gap: 7px;
}

.main-navbar-searchBar .location-wrap img {
    width: 20px;
    height: 20px;
}

.main-navbar-searchBar .location-wrap h5 {
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0px;
}

.navbar-items-wrap form {
    position: relative;
}

.navbar-items-wrap form input {
    border-radius: 27px;
    border: 1px solid #C2C2C2;
    margin: 0px !important;
    width: 428px;
    height: 51px;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    outline: none !important;
}

.navbar-items-wrap form button {
    border-radius: 100px;
    border: none;
    background: #f2f2f2;
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 38px;
    width: 38px;
}

.navbar-items-wrap form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}

.navbar-items-wrap form button ion-icon {
    font-size: 20px !important;
    color: #000;
    position: absolute;
    top: -1px;
    bottom: 0;
    right: -3px;
    left: 0;
    margin: auto;
}

.navbar-items-wrap form button:hover {
    background: #fff5c2 !important;
}

/* Main Banner */
/*.main-banner {*/
/*    background: url(../images/bnn.png);*/
/*background: url(../images/Group\ 3194.png);*/
/*    height: 900px;*/
/*    background-size: 100% 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: relative;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    z-index: 9;*/
/*    padding-top: 80px;*/
/*}*/

.main-banner {
    background: url(../images/bnn.png);
    height: 900px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 9;
    padding-top: 80px;
}

/*.main-banner:before {*/
/*    content: "";*/
/*    height: 690px;*/
/*    width: 740px;*/
/*    background: url(../images/Group\ 1521.png);*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: 100% 100%;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    left: 0;*/
/*    margin: auto;*/
/*    top: 0;*/
/*    bottom: 40px;*/
/*    z-index: -9;*/
/*}*/

.hero-heading {
    font-family: "Poppins", serif;
    font-size: 60px;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 36.4px;
    margin: 0;
    background: linear-gradient(30deg, rgba(0, 0, 0, 1) 0%, rgba(80, 80, 80, 1) 57%, rgba(0, 0, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.looking-options-wrap {
    padding-top: 55px;
}

.looking-options-wrap .dropdown1 button.btn {
    font-family: "Poppins", serif;
    background: #fff;
    border-radius: 40px;
    width: 100%;
    text-align: left;
    padding: 20px 40px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    border: 1px solid #C2C2C2;
    position: relative;
}

.looking-options-wrap .dropdown1 button.btn::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    right: 45px;
    position: absolute;
    top: 19px;
    font-size: 16px;
    transition: all 0.3s;
}

.looking-options-wrap .dropdown1 {
    margin: 0 15%;
}

.looking-options-wrap .dropdown1 .dropdown-toggle1::after {
    right: 35px !important;
    position: absolute;
    top: 30px;
}

.dropdown-menu1 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;

}

.dropdown-menu1.show {
    display: block;
    opacity: 1;
}

ul.dropdown-menu1.show {
    width: 100%;
    list-style: none;
    padding: 50px 24px;
    border: none;
    box-shadow: 0px 12px 11px 0px #80808024;
    border-radius: 12px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 12px auto 0px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

ul.dropdown-menu1.show li ul {
    list-style: none;
    padding: 20px 0px 0px;
}

ul.dropdown-menu1.show li h4 {
    font-size: 20px;
}

ul.dropdown-menu1.show li ul li a {
    padding: 2px 0px;
}

ul.dropdown-menu1.show li ul li {
    padding: 4px 0px;
}

ul.dropdown-menu1.show li ul li a:hover {
    background: transparent !important;
}

.dropdown1 {
    position: relative;
}

.services-list-wrap {
    background: #fff;
    border-radius: 25px;
    padding: 0px 50px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    border: 0px solid #C2C2C2;
    margin-top: 30px;
    overflow: hidden;
    position: absolute;
    right: 0;
    left: 0;
    margin: 30px 12% 0;
}

.services-list-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.services-list-wrap.active {
    max-height: 500px !important;
    padding: 40px 50px;
    border: 1px solid #C2C2C2;
    opacity: 1;
}

.services-list-wrap .service-boxes h4 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    padding-bottom: 31px;
}

.services-list-wrap .service-boxes ul li {
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
}

.services-list-wrap .service-boxes ul li a {
    color: #000 !important;
    text-decoration: none;
}

.services-list-wrap .service-boxes ul {
    margin: 0px;
    padding-left: 20px;
}

.services-list-wrap .service-boxes ul li::marker {
    color: #8E39C4;
}

.services-list-wrap .service-boxes ul li:not(:last-child) {
    padding-bottom: 17px;
}

.services-categories-wrap>img {
    width: 120px !important;
}

/* Home section 1 */

section.home-sec1 {
    padding-top: 100px;
    padding-bottom: 180px;
}

section.home-sec1 .head-wrap {
    text-align: center;
}

.how-work-r1 {
    padding-top: 87px;
}

section.home-sec1 .content-wrap h3 {
    padding-bottom: 22px;
}

section.home-sec1 .content-wrap p {
    padding-bottom: 40px;
}

section.home-sec1 .img-wrap img {
    width: 96%;
}

/* Home section 2 */

section.home-sec2 {
    padding: 92px 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.home-sec2 {
    background-image: linear-gradient(135deg, #faf6c6, #fdbcbe, #faf6c6, #fdbcbe, #faf6c6);
    background-size: 600%;
    background-position: 0 0;
    /* Animation */
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: serviceBgGradients;
}

@keyframes serviceBgGradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

section.home-sec2 .head-wrap {
    padding-bottom: 46.8px;
}

.services-categories-wrap {
    background: #F5F5F5;
    padding: 33px;
    border-radius: 30px;
    border: 1.5px solid #000;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 0.8s;
}

.services-categories-wrap:before {
    content: "";
    height: 0%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    border-radius: 30px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    z-index: -9;
    opacity: 0%;
    transition: all 0.8s;

}

.services-categories-wrap:hover:before {
    height: 100%;
    opacity: 100%;
}

.services-categories-wrap:hover:before {
    background-image: linear-gradient(35deg, rgba(255, 245, 193, 1) 30%, rgba(166, 213, 239, 1) 0%, rgba(255, 245, 193, 1) 70%, rgba(166, 213, 239, 1) 100%, rgba(255, 245, 193, 1) 70%);
    background-size: 800%;
    background-position: 0 0;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: serviceBoxBgGradients;
}

@keyframes serviceBoxBgGradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.services-categories-wrap h4 {
    font-family: "Poppins", serif;
    font-size: 25px;
    font-weight: 500;
    color: #000;
    line-height: 36px;
    margin: 0px;
    padding-bottom: 27px;
}

.services-categories-wrap p {
    margin-bottom: 40px;
    color: #000;
}

section.home-sec2 .btn-wrap {
    text-align: center;
    padding-top: 86px;
}

/* home section 3 */

section.home-sec3 {
    padding-top: 219.8px;
    padding-bottom: 150px;
}

section.home-sec3 .head-wrap {
    padding-bottom: 20.3px;
}

.blog-wrap {
    padding: 33px;
    background: #fff;
    border-radius: 28px;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 0.8s;
    margin-bottom: 50px;
}

.blog-wrap:before {
    content: "";
    height: 0%;
    width: 100%;
    background: #FFB17D;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    position: absolute;
    opacity: 0%;
    z-index: -9;
    transition: all 0.8s;
}

.blog-wrap:hover:before {
    height: 100%;
    opacity: 100%;
}

.blog-content {
    padding: 30px 31px 7px 23px;
}

.blog-wrap .blog-content .blog-date span,
.blog-wrap .blog-content .blog-subject span {
    font-family: "Poppins", serif;
    font-size: 20px;
    color: #000;
    line-height: 1.2;
    font-weight: 600;
    padding-bottom: 10px;
}

.blog-wrap img {
    width: 100%;
}

section.home-sec3 .btn-wrap {
    text-align: center;
    padding-top: 60px;
}

/* home section 4 */

section.home-sec4 .head-wrap {
    text-align: center;
    padding-bottom: 50px;
}

.main-testi-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 34px;
    padding: 38px 37px;
    border-radius: 38px;
    border: 2px solid #000000;
}

.main-testi-wrapper .content-wrap {
    display: flex;
    flex-direction: column;
}

.content-wrap .qt-icon {
    text-align: left;
}

.content-wrap .qt-icon img {
    width: 51.4px;
}

.main-testi-wrapper .content-wrap p {
    padding: 36px 0px;
}

.content-wrap .user-data p {
    padding: 0px;
}

.content-wrap .user-data h6 {
    font-family: "Poppins", serif;
    font-size: 25px;
    color: #000;
    font-weight: 600;
}

.main-testi-wrapper .img-wrap img {
    width: 260px;
    height: 361px;
}

.testimonials-slider .owl-item.center .main-testi-wrapper {
    background: #FFB17D;
    opacity: 100%;
}

.testimonials-slider .owl-item .main-testi-wrapper {
    opacity: 33%;
}

section.home-sec4 {
    padding-top: 20px;
    padding-bottom: 180px;
}

.testimonials-slider.owl-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 57px;
}

.testimonials-slider.owl-carousel .owl-dots button.owl-dot {
    background: #572300;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin: 3px;
}

.testimonials-slider.owl-carousel .owl-dots button.owl-dot.active {
    width: 39px;
    height: 10px;
}

/* footer */

footer {
    background: url(../images/Group\ 3119.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 160.8px;
}

.footer-hero {
    text-align: center;
}

.footer-hero .btn-wrap {
    padding-top: 42px;
}


.tf-signUp-sec {
    padding-top: 175px;
}

.tf-signUp-sec form {
    position: relative;
}

.tf-signUp-sec form input {
    font-family: "Poppins", serif;
    width: 100%;
    height: 68px;
    border-radius: 34px;
    border: none;
    padding: 10px 0px 10px 40px;
    position: relative;
}

.tf-signUp-sec form input::placeholder {
    font-family: "Poppins", serif;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.tf-signUp-sec form button {
    font-family: "Poppins", serif;
    background: #000 !important;
    color: #fff;
    border: none;
    border-radius: 34px;
    width: 170px;
    height: 54px;
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 19px;
    font-weight: 600;
}

.tf-signUp-sec .ft-signUp-text p {
    font-family: "Poppins", serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0px;
    padding: 0px;
    text-transform: capitalize;
    text-align: end;
}

.ft-links-wrapper {
    padding-top: 65px;
    padding-bottom: 103px;
}

.ft-logo-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-top: 61px;
}

.ft-logo-wrap ul li {
    background: #FF9853;
    border-radius: 100px;
    margin-right: 10px;
    height: 58px;
    width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 19px;
    padding-top: 5px;
    transition: all 0.3s;
}


.ft-logo-wrap ul li a ion-icon {
    color: #000;
}

.ft-logo-wrap ul li a svg.svg-inline--fa.fa-facebook-f path {
    fill: #000 !important;
}

.ft-logo-wrap ul li:hover {
    background: #000;
}

.ft-logo-wrap ul li:hover a ion-icon {
    color: #fff;
}

.ft-logo-wrap ul li:hover a svg.svg-inline--fa.fa-facebook-f path {
    fill: #ffffff !important;
}

.ft-logo-wrap>a img {
    width: 180px;
}


.ft-links-tabs h4 {
    font-family: "Poppins", serif;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    padding-bottom: 47px;
    margin: 0px;
}

.ft-links-tabs ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.ft-links-tabs ul li:not(:last-child) {
    padding-bottom: 30px;
}

.ft-links-tabs ul li a.nav-link {
    font-size: 20px !important;
    font-weight: 400;
    color: #000 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    transition: all 0.4s !important;
    padding: 0px !important;
    display: unset !important;
}

.ft-links-tabs ul li a.nav-link:hover {
    padding-left: 8px !important;
}

.ft-links-tabs p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 40px;
    margin: 0px;
}


.ft-links-wrapper .col-lg-3:nth-child(2) {
    border-left: 1px solid hsl(0deg 0% 0% / 34%);
    padding: 0px 63px;
}

.ft-links-wrapper .col-lg-3:nth-child(3) {
    border-left: 1px solid hsl(0deg 0% 0% / 34%);
    padding: 0px 63px;
}

.ft-links-wrapper .col-lg-3:last-child {
    border-left: 1px solid hsl(0deg 0% 0% / 34%);
    padding-left: 63px;
}

.ft-copy-right-wrap p {
    font-family: "Poppins", serif;
    font-size: 18px;
    text-align: center;
    color: #000;
    font-weight: 500;
    margin: 0px;
    padding: 28px 0px;
}

.ft-copy-right-wrap {
    border-top: 1px solid #000;
}

.policy-links-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}

.policy-links-wrapper ul li {
    padding-left: 19px;
}

.policy-links-wrapper ul li a {
    color: #000 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}


section.home-sec1 .head-wrap p {
    padding-right: 11%;
    padding-left: 11%;
}

.main-bnr-wrapper p {
    padding-right: 10%;
    padding-left: 10%;
    text-align: center;
}

section.home-sec4 .head-wrap p {
    padding-right: 34%;
    padding-left: 34%;
    text-align: center;
}

/* header affects */

.services-list-wrap:before {
    content: "";
    height: 221.14px;
    width: 221.14px;
    position: absolute;
    background: url(../images/Mask\ Group\ 945.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    left: -155px;
    top: -165px;
}

.services-list-wrap:before {
    -webkit-animation: zoomInOut1 4s infinite alternate;
    animation: zoomInOut1 4s infinite alternate;
}

@keyframes zoomInOut1 {
    0% {
        transform: translateY(30px);
    }

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

.services-list-wrap:after {
    content: "";
    height: 221.14px;
    width: 221.14px;
    position: absolute;
    background: url(../images/Mask\ Group\ 9213.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    right: -100px;
    bottom: -100px;
}

.services-list-wrap:after {
    -webkit-animation: zoomInOut2 2.5s infinite alternate;
    animation: zoomInOut2 2.5s infinite alternate;
}

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

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

.ring {
    position: absolute;
    height: 221.14px;
    width: 221.14px;
    background: url(../images/Mask\ Group\ 9342.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    right: -116px;
    bottom: -116px;
    z-index: 9;
}

.ring {
    -webkit-animation: zoomInOut3 2.5s infinite alternate;
    animation: zoomInOut3 2.5s infinite alternate;
}

@keyframes zoomInOut3 {
    0% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(-30px);
    }
}

/*.ellipse1 {*/
/*    height: 12.74px;*/
/*    width: 12.74px;*/
/*    background: url(../images/Path\ 6908.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    left: 6%;*/
/*    top: 20%;*/
/*}*/

/*.ellipse2 {*/
/*    height: 41.89px;*/
/*    width: 41.89px;*/
/*    background: url(../images/Path\ 6907.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    left: 12%;*/
/*    top: 31%;*/
/*}*/

/*.ellipse3 {*/
/*    height: 20.93px;*/
/*    width: 20.93px;*/
/*    background: url(../images/Ellipse\ 803.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    left: 7%;*/
/*    bottom: 35%;*/
/*}*/

/*.ellipse4 {*/
/*    height: 14.86px;*/
/*    width: 14.86px;*/
/*    background: url(../images/Ellipse\ 802.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    left: 20%;*/
/*    bottom: 34%;*/
/*}*/

/*.ellipse5 {*/
/*    height: 43.5px;*/
/*    width: 43.5px;*/
/*    background: url(../images/Path\ 6906.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    right: 6%;*/
/*    top: 17%;*/
/*}*/

/*.ellipse6 {*/
/*    height: 25.87px;*/
/*    width: 25.87px;*/
/*    background: url(../images/Path\ 6909.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    right: 17%;*/
/*    top: 50%;*/
/*}*/

/*.ellipse7 {*/
/*    height: 35.08px;*/
/*    width: 35.08px;*/
/*    background: url(../images/Ellipse\ 804.png);*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    right: 18%;*/
/*    bottom: 34%;*/
/*}*/

/*.ellipse2,*/
/*.ellipse5 {*/
/*    -webkit-animation: mover1 2s infinite alternate;*/
/*    animation: mover1 2s infinite alternate;*/
/*}*/

/*@keyframes mover1 {*/
/*    0% {*/
/*        transform: translateY(0);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-20px);*/
/*    }*/
/*}*/

/*.ellipse7 {*/
/*    -webkit-animation: mover2 1s infinite alternate;*/
/*    animation: mover2 1s infinite alternate;*/
/*}*/

/*@keyframes mover2 {*/
/*    0% {*/
/*        transform: translateY(0);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-15px);*/
/*    }*/
/*}*/

/*.ellipse3 {*/
/*    -webkit-animation: mover3 1.5s infinite alternate;*/
/*    animation: mover3 1.5s infinite alternate;*/
/*}*/

/*@keyframes mover3 {*/
/*    0% {*/
/*        transform: translateY(0);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-18px);*/
/*    }*/
/*}*/

/*.ellipse4 {*/
/*    -webkit-animation: mover4 1.2s infinite alternate;*/
/*    animation: mover4 1.2s infinite alternate;*/
/*}*/

/*@keyframes mover4 {*/
/*    0% {*/
/*        transform: translateY(0);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-18px);*/
/*    }*/
/*}*/


/*.ellipse1,*/
/*.ellipse6 {*/
/*    animation: roundInfi 5s linear infinite;*/
/*    -webkit-animation: roundInfi 5s linear infinite;*/
/*}*/

/*@keyframes roundInfi {*/
/*    0% {*/
/*        transform: rotate(0deg);*/
/*    }*/

/*    100% {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

/* Blogs Inner Pages */

section.blogs-sec {
    padding-top: 150px;
    padding-bottom: 120px;
}

section.blogs-sec .head-wrap {
    padding-bottom: 40px;
}

.blogs-sec .blog-wrap {
    padding: 20px;
}

/* Blogs Single Inner Pages */

section.single-blog {
    padding-top: 120px;
    padding-bottom: 120px;
}

section.single-blog .img-wrap img {
    width: 100%;
}

.single-blog h2 {
    padding-bottom: 20px;
}

/* Faqs Inner Pages */

section.faqs-sec1 {
    padding-top: 150px;
}

section.faqs-sec1 .head-wrap {
    padding-bottom: 40px;
}

.faqs .accordion-header,
.form-faqs .accordion-header {
    border: none;
}

.faqs .accordion-header .accordion-button,
.form-faqs .accordion-header .accordion-button {
    background: #fb915c;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    padding: 26px 20px;
    outline: none;
    border-radius: 4px;
}

.faqs .accordion-item,
.form-faqs .accordion-item {
    margin-bottom: 25px;
    border: 1px solid #f78a63;
    border-radius: 4px;
    transition: all 0.2s;
}

.faqs .accordion-header .accordion-button:focus,
.form-faqs .accordion-header .accordion-button:focus {
    outline: none;
    border: none;
    display: none;
}

.faqs .accordion-header .accordion-button:not(.collapsed),
.form-faqs .accordion-header .accordion-button:not(.collapsed) {
    background: #fff !important;
    box-shadow: none;
    padding-bottom: 0px;
}

.faqs .accordion-body,
.form-faqs .accordion-body {
    padding: 20px 20px 28px 20px;
}

.faqs .accordion-item:hover,
.form-faqs .accordion-item:hover {
    box-shadow: 6px 6px 0px 0px #fb915c;
}

.faqs .accordion-header .accordion-button:hover,
.form-faqs .accordion-header .accordion-button:hover {
    background: transparent !important;
}

.faqs .accordion-item.active,
.form-faqs .accordion-item.active {
    box-shadow: 6px 6px 0px 0px #fb915c;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0%) sepia(6%) saturate(26%) hue-rotate(224deg) brightness(97%) contrast(107%);
}

/* Service All Categories page */

.service-categories-sec1 .head-wrap {
    padding-bottom: 40px;
}

.service-categories-sec1 {
    padding-top: 150px;
    padding-bottom: 110px;
}

.service-categories-sec1 .services-categories-wrap {
    margin-bottom: 40px;
    text-align: center;
    border-radius: 0px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 2px solid #fb915c;
}

.service-categories-sec1 .services-categories-wrap:hover {
    box-shadow: 8px 8px 0px 0px #fb915c;
}

.service-categories-sec1 .services-categories-wrap:before {
    border-radius: 0px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Services all categories single Pages */

.serviceInner-category-sec1 .head-wrap {
    padding-bottom: 40px;
}

.serviceInner-category-sec1 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.allServ-items-wrap {
    border: 2px solid #fb915c;
    padding: 24px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 6px;
    box-shadow: 4px 4px 0px 0px #fb915c;
    background: #fff;
    min-height: 270px;
    margin-bottom: 50px;
}

.allServ-items-wrap .theme-btn1 {
    padding: 8px 30px;
    font-size: 16px;
}

.allServ-items-wrap h2 {
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
}

.allServ-items-wrap p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
}

/* Service Inner Pages */

.theme-breadcrumb {
    background-image: linear-gradient(135deg, #faf6c6, #fdbcbe, #faf6c6, #fdbcbe, #faf6c6);
    background-size: 600%;
    background-position: 0 0;
    margin-top: 143px;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: servicebreadcrumb;
    min-height: 412px;
}

.bread-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    height: 100%;
    padding-right: 20%;
}

.bread-content h2 {
    padding-bottom: 20px;
}

.bread-content p {
    padding-bottom: 30px;
}
.bread-content p:last-child {
    padding: 0;
}
.bread-content .btn-wrap {
    padding-top: 10px;
}
.aboutUs-sec1 .theme-p2 strong {
    display: block;
    margin: 20px 0 -26px 0;
}
@keyframes servicebreadcrumb {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.bread-img {
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}

.bread-img img {
    width: 100%;
    object-fit: cover;
    min-height: 412px;
}

.web-design-sec-1,
.services-sec1,
.aboutUs-sec1 {
    padding: 150px 0px 0px;
}

.web-design-sec-1 .content-wrap p:not(:last-child),
.services-sec1 .content-wrap p:not(:last-child),
.aboutUs-sec1 .content-wrap p:not(:last-child) {
    padding-bottom: 20px;
}

.web-design-sec-1 .content-wrap h2,
.services-sec1 .content-wrap h2,
.aboutUs-sec1 .content-wrap h2 {
    padding-bottom: 20px;
}

.web-design-sec-1 .head-wrap,
.services-sec1 .head-wrap,
.aboutUs-sec1 .head-wrap {
    padding-bottom: 70px;
}

/*--- Tearm & Condition page / Privacy Page ---*/

.Privacy-Policy-sec {
    padding-top: 150px;
    padding-bottom: 150px;
}

.Privacy-Policy-sec .head-wrap {
    padding-bottom: 40px;
}

.Privacy-Policy-sec h4 {
    padding-bottom: 24px;
    padding-top: 14px;
}

/* Resources page */

.resources-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.resources-wrapper .img-wrapper img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.resources-wrapper .content-wrapper {
    background: #fee7c0;
    padding: 30px 20px;
    margin-left: -38px;
}

.resources-sec1 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.resources-sec1 .head-wrap {
    padding-bottom: 50px;
}

.resources-wrapper .content-wrapper h4 {
    padding-bottom: 10px;
}

.resources-wrapper .content-wrapper p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 4px;
}

/* step form */

section.step-from-body {
    /* position: absolute; */
    width: 100%;
    z-index: 9999;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    /* position: fixed; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: rgb(12 17 29 / 12%); */
    /* backdrop-filter: blur(2px); */
}

.step-form-wrapper {
    display: flex;
    /* width: 44%; */
    width: 100%;
    min-height: 500px;
    padding: 50px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 12px;
    background: #fee7c0;
    box-shadow: 0px 6px 14px 0px rgba(187, 185, 185, 0.07);
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    transition: all 0.8s;
}

section.form-sec1 {
    padding-top: 300px;
    padding-bottom: 150px;
}

.step-form-wrapper .theme-btn2 {
    padding: 8px 40px 13px;
    font-size: 16px;
}

.step-form-wrapper .theme-btn1 {
    padding: 12px 40px 12px;
    font-size: 16px;
    width: 100%;
}
.step-form-wrapper .field-group .input__item input {
    padding: 0px 20px;
    border: none;
    outline: none;
    background: transparent !important;
    width: 78%;
}

/* .step-from-body {
    display: none !important;
}

.step-from-body.active {
    display: flex !important;
} */

.step-form-wrapper .form-head {
    position: relative;
    width: 100%;
}

.close-stepForm-btn {
    font-size: 24px;
    color: #000;
    position: absolute;
    right: -70px;
    top: -22px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.step-form-wrapper h1 {
    font-family: "Poppins", serif;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    color: #000;
    padding-bottom: 30px;
    margin: 0px;
}

.step-form-wrapper h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: #000;
    padding-bottom: 10px;
    margin: 0px;
}

.step-form-wrapper .field-group {
    background: rgb(255, 255, 255);
    margin: 14px 0px;
    padding: 16px 14px;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px #afafaf47;
    border: 1px solid rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s !important;
}

.step-form-wrapper .field-group:hover {
    border: 1px solid #2fc09e;
    box-shadow: 0px 2px 6px 0px #afafafc7;
}

.step-form-wrapper label {
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1px;
    padding-left: 10px;
    cursor: pointer;
}

.stepForm-btn-wrap .inner-wrap button#nextBtn {
    width: 100%;
}

.stepForm-btn-wrap .inner-wrap button#prevBtn {
    width: 10%;
}

.stepForm-btn-wrap .inner-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.form-prv-btn {
    border-radius: 10px;
    background: #fb915c;
    padding: 22px 0px;
    position: relative;
    transition: all 0.3s;
}

.form-prv-btn ion-icon {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.form-prv-btn:hover {
    background: #000;
}

.form-prv-btn:hover ion-icon {
    color: #fff;
}

.step-form-wrapper .field-group.invalid {
    border: 1px solid red;
}

.error-message {
    color: red;
    display: none;
}

/* progress bar */

.progress-bar-wrapper {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    margin: 20px 0;
    position: relative;
    height: 24px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #2fc09e;
    border-radius: 5px;
}

.progress-text {
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-weight: 400;
    color: #000;
    font-size: 12px;
}

.progress-text:before {
    content: "Progress ";
}

.webDesignTab {
    display: none;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.webDesignTab.active {
    display: block;
    opacity: 1;
}

.field-group {
    margin-bottom: 15px;
}

.stepForm-btn-wrap {
    margin-top: 20px;
}

/* radio style on */

.radio.style-on {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio.style-on input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio.style-on input:checked~.radio__checkmark {
    background-color: rgb(251 145 92);
}

.radio.style-on input:checked~.radio__checkmark:after {
    transform: scale(1);
}

/* .radio.style-on input:checked ~ .radio__body {
    font-weight: bold;
  } */
.radio.style-on:hover input~.radio__checkmark {
    background-color: #eee;
}

.radio.style-on:hover input:checked~.radio__checkmark {
    background-color: #eee;
}

.radio.style-on .radio__checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    transition: background-color 0.25s ease;
    border-radius: 11px;
}

.radio.style-on .radio__checkmark:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    display: block;
    background-color: rgb(251 145 92);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.25s ease;
    border: 2px solid #fff;
    margin: auto;
}

.radio.style-on .radio__body {
    color: #333;
    line-height: 1.4;
    font-size: 16px;
    transition: font-weight 0.25s ease;
}

/* steps */

#regForm {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffffff;
    border: 1px solid red;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

button {
    background-color: #572300;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {}

/* Make circles that indicate the steps of the form: */
.step {
    height: 40px;
    width: 40px;
    margin: 0 2px;
    background-color: #fb915c;
    border: none;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.step.active {
    opacity: 1;
    background-color: #000000;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #328e2b;
    opacity: 1;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 85%;
    margin: 20px auto 40px;
}

.steps-wrapper:before {
    content: "";
    height: 4px;
    width: 98%;
    position: absolute;
    background: rgb(255, 255, 255);
    z-index: -9;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/* thank you page */

.thank-you-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.thank-you-sec1 {
    padding-top: 250px;
    padding-bottom: 200px;
}

.thank-you-wrapper h1 ion-icon {
    font-size: 100px;
    color: #fb915c;
}

.thank-you-wrapper h2.theme-h2 {
    padding-bottom: 16px;
}

/* form feature section */

.form-feature-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.form-feature-wrap .img-wrap img {
    width: 128px;
}

.form-feature-wrap .img-wrap {
    text-align: center;
}

.form-feature-sec {
    padding-bottom: 100px;
}

.form-feature-sec .head-wrap {
    padding-bottom: 40px;
}

.form-feature-sec .head-wrap h2 {
    font-size: 50px;
    line-height: 1.5;
}

.form-faqs-sec {
    padding-bottom: 150px;
}

#close_menu {
    display: none;
}
.theme-p2 strong {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}   
.content-wrap ul li {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 32px;
    margin: 0px;
}

/*----- Desktop Standard Responsive -----*/


@media only screen and (max-width: 1600px) {
    .navbar-items-wrap form input {
        width: 220px;
    }

    nav.main-navbar {
        padding: 43px 15px;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item {
        padding: 4px 18px;
    }

    .main-navbar-searchBar {
        gap: 20px;
    }

    section.home-sec2 {
        padding: 92px 0px;
    }

    section.home-sec4 .head-wrap p {
        padding-right: 28%;
        padding-left: 28%;
    }

    .testimonials-slider .owl-item .main-testi-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .testimonials-slider .owl-item .main-testi-wrapper .img-wrap img {
        text-align: center !important;
        margin: 0 auto;
    }

    .services-list-wrap {
        margin: 30px 2% 0;
    }

    nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item ul.dropdown-menu {
        width: 96%;
    }

    .content-wrap .qt-icon {
        text-align: center;
    }

    .content-wrap .qt-icon img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1366px) {
    .hero-heading {
        font-size: 82px;
    }

    .theme-h2 {
        font-size: 60px;
    }

    .theme-h3 {
        font-size: 42px;
        line-height: 62px;
    }

    .theme-p1 {
        font-size: 19px;
        line-height: 32px;
    }

    section.home-sec1 .content-wrap p {
        padding-bottom: 30px;
    }

    .theme-btn1 {
        font-size: 18px;
        padding: 12px 40px 16px;
    }

    .theme-btn2 {
        font-size: 18px;
        padding: 12px 40px 16px;
    }

    .services-categories-wrap h4 {
        font-size: 23px;
        line-height: 34px;
    }

    .theme-btn3 {
        font-size: 22px;
    }

    .main-testi-wrapper .img-wrap img {
        width: 250px;
        height: 290px;
    }

    .content-wrap .qt-icon img {
        width: 37.4px;
    }

    .theme-p3 {
        font-size: 20px;
        line-height: 32px;
    }

    .content-wrap .user-data h6 {
        font-size: 23px;
    }

    .tf-signUp-sec form button {
        font-size: 17px;
    }

    .tf-signUp-sec .ft-signUp-text p {
        font-size: 22px;
    }

    .ft-links-tabs h4 {
        padding-bottom: 43px;
        font-size: 22px;
    }

    .ft-links-tabs ul li:not(:last-child) {
        padding-bottom: 24px;
    }

    .ft-links-tabs p {
        font-size: 18px;
        line-height: 36px;
    }

    section.home-sec1 {
        padding-top: 80px;
        padding-bottom: 160px;
    }

    section.home-sec2 {
        padding: 80px 0px 100px;
    }

    section.home-sec2 .btn-wrap {
        padding-top: 50px;
    }

    section.home-sec3 {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    section.home-sec4 {
        padding-bottom: 140px;
    }

    .tf-signUp-sec {
        padding-top: 150px;
    }

    .navbar-brand img {
        width: 180px;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link {
        font-size: 18px;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle:before {
        font-size: 14px;
        right: -18px;
    }

    .ft-logo-wrap ul li {
        height: 50px;
        width: 50px;
        font-size: 17px;
        padding-top: 3px;
    }

    .bread-content h2 {
        padding-bottom: 16px;
    }

    .bread-content p {
        padding-bottom: 20px;
    }

    section.home-sec3 .btn-wrap {
        padding-top: 40px;
    }

    .resources-sec1 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .resources-wrapper .content-wrapper h4 {
        font-size: 20px;
    }

    section.blogs-sec {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .web-design-sec-1,
    .services-sec1,
    .aboutUs-sec1 {
        padding: 110px 0px 0px;
    }

    .theme-h2 {
        padding-bottom: 30px;
    }

    .web-design-sec-1 .head-wrap,
    .services-sec1 .head-wrap,
    .aboutUs-sec1 .head-wrap {
        padding-bottom: 55px;
    }

    .service-categories-sec1 {
        padding-top: 120px;
        padding-bottom: 110px;
    }

    .serviceInner-category-sec1 {
        padding-top: 120px;
        padding-bottom: 110px;
    }

    .form-feature-sec .head-wrap h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100% !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

}

/*----- Mobile Standard Responsive -----*/

@media only screen and (max-width: 1199px) {

    .navbar-items-wrap {
        position: fixed;
        left: -1px;
        top: 0;
        height: 100%;
        padding: 40px 40px;
        background: #fff;
        z-index: 9999;
        transform: translateX(-100%);
        transition: 0.5s all ease-in-out;
        width: 500px;
        display: block !important;
        border-right: 6px solid #000;
        overflow-y: scroll;
    }

    .navbar-items-wrap.show {
        transform: translateX(0%);
        left: 0px;
    }

    #close_menu {
        position: absolute;
        right: 8px;
        top: 12px;
        background: #000000;
        padding: 4px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #close_menu ion-icon {
        color: #fff;
        font-size: 22px;
    }

    .navbar-items-wrap .header-brand {
        display: block;
        padding: 0px 0px 30px;
    }

    nav.main-navbar .navbar-items-wrap ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
        display: none;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle:before {
        display: none;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item {
        padding: 8px 4px;
    }

    .main-navbar-searchBar {
        flex-direction: column;
        justify-content: left;
        text-align: left;
        align-items: flex-start;
        margin-top: 22px;
        gap: 36px;
    }

    .navbar-items-wrap form input {
        width: 100%;
    }

    .navbar-items-wrap .main-navbar-searchBar form {
        width: 100%;
    }

    .navbar-light .navbar-toggler {
        background: #fb915c !important;
        border: none;
        color: #000 !important;
        padding: 4px 8px;
        outline: none !important;

        &:hover {
            background-color: #fb915c !important;
            opacity: 100%;
        }
    }

    .navbar-toggler:focus {
        text-decoration: none !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    .navbar-light .navbar-toggler-icon {
        font-size: 18px;
        outline: none !important;
    }
}

@media only screen and (max-width: 1024px) {

    .services-list-wrap .service-boxes ul li {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-heading {
        font-size: 70px;
    }

    .theme-btn1 {
        font-size: 16px;
        padding: 10px 40px 10px;
    }

    .theme-btn2 {
        font-size: 16px;
        padding: 10px 40px 10px;
    }

    .looking-options-wrap .dropdown1 button.btn {
        padding: 16px 38px;
        font-size: 17px;
    }

    .theme-h2 {
        font-size: 52px;
    }

    .theme-p1 {
        font-size: 17px;
        line-height: 26px;
    }

    .theme-h3 {
        font-size: 30px;
        line-height: 42px;
    }

    .bread-content {
        padding-right: 6%;
    }

    section.home-sec1 .content-wrap h3 {
        padding-bottom: 16px;
    }

    section.home-sec1 {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .services-categories-wrap {
        padding: 24px;
    }

    .theme-p2 {
        font-size: 17px;
        line-height: 28px;
    }

    .services-categories-wrap>img {
        width: 96px !important;
    }

    .services-categories-wrap h4 {
        font-size: 20px;
        line-height: 30px;
    }

    section.home-sec2 .btn-wrap {
        padding-top: 30px;
    }

    .theme-btn3 {
        font-size: 20px;
    }

    section.home-sec3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .blog-wrap {
        padding: 20px;
        margin-bottom: 34px;
    }

    .main-testi-wrapper .img-wrap img {
        width: 225px;
        height: 250px;
    }

    .content-wrap .qt-icon img {
        width: 30.4px;
    }

    .main-testi-wrapper .content-wrap p {
        padding: 26px 0px;
    }

    .theme-p3 {
        font-size: 19px;
        line-height: 28px;
    }

    .main-testi-wrapper .content-wrap p {
        padding: 16px 0px;
    }

    .content-wrap .user-data h6 {
        font-size: 21px;
        margin-bottom: 0px;
    }

    .main-testi-wrapper {
        padding: 30px 24px;
    }

    footer {
        padding-top: 120px;
    }

    .tf-signUp-sec form button {
        font-size: 16px;
    }

    .tf-signUp-sec form input {
        height: 58px;
    }

    .tf-signUp-sec form button {
        height: 48px;
    }

    .ft-logo-wrap>a img {
        width: 160px;
    }

    .ft-logo-wrap ul li {
        height: 44px;
        width: 44px;
        font-size: 16px;
        padding-top: 3px;
    }

    .tf-signUp-sec .ft-signUp-text p {
        font-size: 20px;
    }

    .ft-links-tabs h4 {
        padding-bottom: 38px;
        font-size: 20px;
    }

    .ft-links-tabs ul li a.nav-link {
        font-size: 18px !important;
    }

    .ft-links-tabs ul li:not(:last-child) {
        padding-bottom: 20px;
    }

    .ft-links-wrapper .col-lg-3:last-child {
        padding-left: 40px;
    }

    .ft-links-wrapper .col-lg-3:nth-child(3) {
        padding: 0px 40px;
    }

    .ft-links-wrapper .col-lg-3:nth-child(2) {
        padding: 0px 40px;
    }

    .tf-signUp-sec {
        padding-top: 120px;
    }

    .how-work-r1 {
        padding-top: 68px;
    }

    section.home-sec4 {
        padding-bottom: 120px;
    }

    .services-list-wrap.active {
        max-height: 548px !important;
        padding: 28px 38px;
        gap: 17px;
    }

    .allServ-items-wrap h2 {
        font-size: 21px;
    }

    .ft-links-tabs p {
        font-size: 17px;
        line-height: 28px;
    }

    .blog-content {
        padding: 20px 0px 7px 0px;
    }

    .Privacy-Policy-sec {
        padding-top: 100px;
        padding-bottom: 110px;
    }

    .form-feature-sec .head-wrap h2 {
        font-size: 32px;
    }

    .form-feature-wrap .img-wrap img {
        width: 100px;
    }

    section.form-sec1 {
        padding-top: 250px;
        padding-bottom: 130px;
    }
}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 960px) {}

@media only screen and (max-width: 768px) {
    .services-list-wrap.active {
        gap: 6px;
    }

    .hero-heading {
        font-size: 60px;
    }

    .theme-h2 {
        font-size: 48px;
    }

    section.home-sec1 .content-wrap h3 {
        padding-bottom: 12px;
    }

    .theme-h3 {
        font-size: 28px;
        line-height: 38px;
    }

    section.home-sec1 .content-wrap p {
        padding-bottom: 20px;
    }

    .theme-p1 {
        font-size: 16px;
        line-height: 24px;
    }

    .theme-btn3 {
        font-size: 19px;
    }

    .blog-wrap .blog-content .blog-date span,
    .blog-wrap .blog-content .blog-subject span {
        font-size: 18px;
    }

    .tf-signUp-sec form button {
        width: 138px;
    }

    .ft-logo-wrap ul li {
        margin-right: 4px;
    }

    .main-banner:before {
        height: 425px;
        width: 444px;
    }

    .navbar-items-wrap {
        width: 430px;
    }

    .navbar-light .navbar-toggler-icon {
        font-size: 15px;
    }

    section.form-sec1 {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {

    .service-box1.service-boxes {
        text-align: center;
    }

    .service-boxes ul {
        list-style: none;
    }

    .services-list-wrap.active {
        flex-direction: column;
        text-align: center;
    }

    .services-list-wrap .service-boxes h4 {
        padding-bottom: 17px;
        padding-top: 17px;
    }

    .services-list-wrap.active {
        max-height: unset !important;
    }

    .how-work-r1 {
        text-align: center;
    }

    section.home-sec1 .img-wrap {
        margin-bottom: 20px;
    }

    section.home-sec4 .head-wrap p {
        padding-right: 15%;
        padding-left: 15%;
    }

    .tf-signUp-sec .ft-signUp-text p {
        text-align: center;
        margin-top: 12px;
    }

    .ft-logo-wrap {
        text-align: center;
    }

    .ft-logo-wrap ul {
        justify-content: center;
        margin-top: 30px;
    }

    .ft-links-tabs {
        text-align: center;
        padding-top: 42px;
    }

    .ft-links-wrapper .col-lg-3:nth-child(2) {
        border: none;
    }

    .ft-links-wrapper .col-lg-3:nth-child(3) {
        border: none;
    }

    .ft-links-wrapper .col-lg-3:last-child {
        border: none;
        padding-left: 15px;
    }

    .ft-links-wrapper {
        padding-bottom: 80px;
    }

    .policy-links-wrapper ul {
        justify-content: center;
    }

    .how-work-r2 {
        flex-direction: column-reverse;
    }

    .ft-links-tabs h4 {
        padding-bottom: 18px;
    }

    .ft-links-tabs ul li:not(:last-child) {
        padding-bottom: 12px;
    }

    .blog-content {
        padding: 24px 20px 7px 17px;
        text-align: center;
    }

    .services-categories-wrap {
        text-align: center;
    }

    .services-categories-wrap img {
        margin: 0 auto;
    }

    .bread-content {
        text-align: center;
        padding: 47px 2% 47px;
    }

    .bread-content h2 {
        text-align: center;
        width: 100%;
    }

    .bread-img {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .bread-content .btn-wrap {
        margin: 0 auto;
    }

    .aboutUs-sec1 .content-wrap {
        text-align: center;
    }

    .aboutUs-sec1 .ac-row.abt-cnt-r2 {
        flex-direction: column-reverse;
        padding-top: 50px;
    }

    .single-blog .content-wrap {
        text-align: center;
        padding-bottom: 40px;
    }

    .services-sec1 .content-wrap {
        text-align: center;
        padding-bottom: 20px;
    }

    .Privacy-Policy-sec {
        text-align: center;
    }

    .Privacy-Policy-sec ul li {
        list-style: none;
    }

    .Privacy-Policy-sec .head-wrap {
        padding-bottom: 12px;
    }

    .web-design-sec-1 .head-wrap,
    .services-sec1 .head-wrap,
    .aboutUs-sec1 .head-wrap {
        padding-bottom: 10px;
    }

    .resources-wrapper {
        flex-direction: column;
    }

    .resources-wrapper .content-wrapper {
        margin-left: 0;
        text-align: center;
    }

    .resources-sec1 .head-wrap {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 667px) {}

@media only screen and (max-width: 568px) {
    .hero-heading {
        font-size: 50px;
    }

    .theme-h2 {
        font-size: 42px;
    }

    .theme-h3 {
        font-size: 26px;
        line-height: 36px;
    }

    section.home-sec2 .head-wrap {
        padding-bottom: 24.8px;
    }

    .main-banner:before {
        height: 230px;
        width: 230px;
    }

    .navbar-items-wrap {
        width: 350px;
        border-right: 4px solid #000;
    }

    .navbar-items-wrap ul.navbar-nav li.nav-item {
        padding: 2px 4px;
    }

    .form-feature-sec .head-wrap h2 {
        font-size: 28px;
    }

    section.faqs-sec1 {
        padding-top: 100px;
    }

    section.faqs-sec1 .head-wrap {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 480px) {
    nav.main-navbar {
        padding: 26px 15px;
    }

    .navbar-brand img {
        width: 166px;
    }

    .theme-h2 {
        font-size: 38px;
    }

    .hero-heading {
        font-size: 42px;
    }

    .bnr-btn-wrap {
        flex-direction: column;
    }

    .looking-options-wrap {
        padding-top: 35px;
    }

    .looking-options-wrap .dropdown1 {
        margin: 0 0%;
    }

    section.home-sec1 .head-wrap p {
        padding-right: 2%;
        padding-left: 2%;
    }

    .tf-signUp-sec .ft-signUp-text p {
        font-size: 18px;
    }

    .tf-signUp-sec form button {
        width: 120px;
        height: 42px;
    }

    .tf-signUp-sec form button {
        font-size: 14px;
    }

    .tf-signUp-sec form input {
        height: 50px;
    }

    .tf-signUp-sec form input::placeholder {
        font-size: 16px;
    }

    .step-form-wrapper {
        padding: 50px 16px;
    }

    .step-form-wrapper h1 {
        font-size: 24px;
    }

    .step-form-wrapper h5 {
        font-size: 22px;
        padding-bottom: 6px;
    }

    .form-feature-wrap h4 {
        font-size: 20px;
    }

    .form-feature-wrap .img-wrap img {
        width: 82px;
    }

    .form-feature-wrap {
        padding-bottom: 42px;
    }

    .thank-you-wrapper {
        gap: 10px;
    }

    .thank-you-wrapper h1 ion-icon {
        font-size: 80px;
    }

    .single-blog h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 425px) {
    .navbar-items-wrap {
        width: 100%;
        border-right: none;
    }
}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 320px) {}



.step-form-wrapper .field-group.messagebox .input__item {
    display: flex;
    align-items: flex-start;
}
.step-form-wrapper .field-group.messagebox .input__item textarea {
    width: 100%;
    height: 130px;
    margin-left: 20px;
    border: none;
    resize: none;
    outline: none;
}



.stepForm-btn-wrap .inner-wrap .subbtn {
    display: none;
}

.stepForm-btn-wrap.lastactive .inner-wrap .subbtn {
    display: block;
}
.stepForm-btn-wrap.lastactive .inner-wrap  button#nextBtn {
    display: none;
}