@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    transition: all 0.5s;
    font-family: "Montserrat", sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--gray-color);
    -webkit-border-radius: 0;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--blue-color);
}

:root {
    --black-color: #000;
    --blue-color: #121550;
    --light-green: #00B9C5;
    --dark-red: #de3145;
    --gray-color: #e6e5e3;
    --white-color: #fff;
    --yellow-color: #CAD019;
    --font-size48: 3rem;
    --fontsize60: 3.75rem;
    --fontsize18: 1.125rem;
    --fontsize42: 2.5rem;
    --fontsize36: 2.25rem;
    --fontsize24: 1.5rem;
}


.compensate-for-scrollbar {
    margin-right: 0 !important;
}

.fancybox-slide--image {
    padding: 0 !important;
}

:is(ul, li) {
    padding: 0;
    margin: 0;
    list-style: none;
}

a:hover {
    text-decoration: none;
    transition: 0.5s ease-out;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button:focus {
    border: 0;
    outline: none;
    box-shadow: none;
}

button {
    border: 0;
    outline: 0;
}

section {
    position: relative;
    padding: 5rem 0;
}

.owl-carousel .owl-item img {
    width: auto;
    margin: auto;
}

.btn.focus,
.btn:focus,
.btn {
    outline: 0;
    box-shadow: none;
    text-decoration: none;
}

.defult-btn {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--dark-red);
    color: var(--white-color);
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 30px;
    outline: 0;
    box-shadow: none;
    transition-duration: 0.3s;
    transition-property: transform;
}

.defult-btn:hover {
    transform: scale(1.1);
}

/* main-header */
header .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
}

#header .container-fluid {
    padding: 0 8%;
}

header.sticky .navbar-nav .nav-link {
    color: var(--white-color);
}

.navbar-brand {
    margin-right: 1.5rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 13px 16px;
}

.dropdown-toggle::after:hover {
    display: none !important;
}

header {
    position: relative;
    width: 100%;
    z-index: 3;
    background-color: transparent;
}

header .navbar-expand-lg .navbar-collapse {
    justify-content: space-around;
}

.header-button {
    height: 44px;
    padding: 0 3.7rem;
    color: var(--white-color);
    margin-left: 1.5rem;
}

.new-before {
    position: relative;
}

.new-before::after {
    content: "new";
    position: absolute;
    top: -3px;
    left: 0;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

header .navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: #fff;
    max-width: max-content;
    transition: 0.4s;
    padding: 0;
    border-radius: 0;
}

header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--black-color);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--dark-red);
    padding: 13px 20px;
    line-height: 20px;
}

header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--light-yellow) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--white-color);
}

.social-icon {
    display: flex;
    gap: 10px;
}

.social-icon i {
    color: #de3145;
    font-size: 20px;
}

/* Ensure the dropdown menu is hidden by default */
/* Show the dropdown menu when hovering over the nav item */

/* end main-header */
/* main banner */
.mainbanner {
    padding: 0;
}

.banner-content h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-red);
}

.banner-content h3 {
    font-weight: 400;
    color: var(--white-color);
}

.banner-content span {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white-color);
}

.banner-content p {
    font-size: 15px;
    font-weight: 400;
    margin: 1.5rem 0 1.6rem;
    color: var(--black-color);
}

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

.swiper-slide img {
    width: 100%;
}

/* end main baaner */

/* grey-sec-start */

.grey-sec {
    background-color: #E4E4E4;
}

.grey-sec .heading-wrapper {
    padding-bottom: 20px;
}

.heading-wrapper {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    color: var(--black-color);
}

.content-wrapper p {
    margin-bottom: 30px;
    color: var(--blue-color);
}

.examples {
    display: block;
    padding-bottom: 2rem;
}

/* our-services-start */
.our-services {
    background-color: #f5f5f5;
    position: relative;
    padding: 5rem 0 200px;
}

.our-services::before {
    content: '';
    background: url(../images/dot-pattern-1.png) no-repeat;
    position: absolute;
    width: 38%;
    height: 12%;
    top: 0;
    right: 0;
}

.our-services::after {
    content: '';
    background: url(../images/dot-pattern-1.png) no-repeat;
    background-position-x: left;
    position: absolute;
    width: 38%;
    height: 13%;
}

.our-services .content-wrapper span {
    color: var(--dark-red);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-services .content-wrapper h2 {
    padding-top: 10px;
    font-size: 40px;
    font-weight: 700;
}



.our-services .ser-box {
    background: url(../images/ser1.png) center / cover no-repeat;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.ser-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ser-box ul li h3 {
    color: var(--white-color);
    font-weight: 400;
}

.ser-box p {
    color: var(--white-color);
    margin: 32px 0;
}


.our-services .bg-box-1 {
    background: url(../images/logodis.png) center / cover no-repeat;
}

.our-services .bg-box-2 {
    background: url(../images/word3.png) center / cover no-repeat;
}

.our-services .bg-box-3 {
    background: url(../images/mobile-mockup.png) center / cover no-repeat;
}

.our-services .bg-box-4 {
    background: url(../images/video-01.jpg) center / cover no-repeat;
}

.our-services .bg-box-5 {
    background: url(../images/seo-on-page-services.jpg) center / cover no-repeat;
}

.our-services .bg-box-6 {
    background: url(../images/seo-link-building.jpg) center / cover no-repeat;
}

/* sites-link-start */

:is(.ui-web-sec, .sites-link) .heading-wrapper {
    text-transform: capitalize;
}

.sites-link .content-wrapper {
    padding-bottom: 30px;
}

.accordion-button {
    border: none;
    box-shadow: none;
    font-weight: 400;
    background: #f5f5f5;
    padding: 0;
    width: 95%;
    text-align: justify;
}

.accordion-header {
    position: relative;
    padding: 33px 12px;
    font-size: 25px;
    background: #f5f5f5;
    margin: 0;
}

.accordion-body .sub-item {
    cursor: pointer;
}

.accordion-body .sub-item:hover,
.accordion-header:hover,
.accordion-header:has(button:hover) {
    background-color: #E2E5F2;
}

.accordion-header:hover button {
    background-color: #E2E5F2;
}


.accordion-item {
    border: none;
    border-bottom: 1px solid var(--dark-red);
}

.accordion-body {
    font-size: 25px;
    background: #f5f5f5;
}

.sub-item {
    padding: 25px 12px;
    border-top: 1px solid var(--dark-red);
}
.sub-item a{color: var(--blue-color);}
.sites-content .para-1 {
    font-size: 26px;
    color: var(--blue-color);
    margin-bottom: 20px;
}

.sites-content .defult-btn {
    /* background: transparent; */
    border: 1px solid;
    text-transform: capitalize;
}

/* logo-sec-start */
.logo-sec {
    padding: 1rem 0;
}

.logo-sec h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: capitalize;
    color: #4a4a4a;
    text-align: center;
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2rem 0;
}

.logo-slider li img {
    width: 200px !important;
}

.logo-sec .owl-stage {
    display: flex;
    align-items: center;
}

/* testimonials-sec-start */

.testimonials-sec {
    background: var(--black-color);
}

.testimonials-sec .content-wrapper span {
    color: var(--dark-red);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials-sec .heading-wrapper {
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 700;
}

.testimonials-sec .content-wrapper p {
    color: #FFFFFF99;
}

.testimonials-sec .content-wrapper a {
    background-color: #9B9495;
    color: #fff;
    text-transform: capitalize;
}

.testi-text {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.testi-text h3 {
    font-size: 30px;
    font-weight: 700;
    padding: 10px 0;
}

.testi-text span {
    color: #CAD019;
    padding: 0 0 10px;
    display: block;
}

.clints {
    display: flex;
    align-items: center;
    gap: 30px;
}

.clints span {
    padding: 0;
    color: var(--dark-red);
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.countNum {
    background-color: var(--dark-red);
    padding: 12px 0;
    position: relative;
}

.countNum::after {
    content: '';
    position: absolute;
    background: url(../images/shape-counter.png) no-repeat;
    background-position-x: right;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 70px;
}

.countNum h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.countNum span {
    color: var(--blue-color);
    font-weight: 400;
    font-size: 16px;
}

ul.factSlider {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.factBox {
    display: flex;
    align-items: center;
}

.factBox p {
    margin-bottom: 0;
    margin-left: 10px;
    color: var(--white-color);
}

.simple-cta {
    background-color: #E4E4E4;
    text-align: center;
}

.simple-cta h3 {
    font-weight: 300;
}

.simple-cta h2 {
    color: var(--dark-red);
    font-weight: 300;
}

.simple-cta {
    position: relative;
}

.simple-cta svg {
    height: calc(55% + 20px);
    left: 50%;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(46% + 10px);


}

.simple-cta svg path {
    animation: moveRight 9s linear infinite;
}

.simple-cta path {
    stroke-width: 5px;
}

@keyframes e-animated {
    0% {
        stroke-dasharray: 0 1500;
        opacity: 1;
    }

    100% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(-50%);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }
        

    100% {
        transform: translateX(-50%);
    }
}

/* form-footer-start */
.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
}

.form-wraper .form-control {
    background-color: transparent;
    height: 60px;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 0;
    border-bottom: 1px solid #69727d;

}

.form-wraper .form-control:focus {
    box-shadow: 0 0 0 0.1rem rgb(178 190 202 / 25%);
}

.form-btn {
    text-align: end;
}

.form-btn button {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0px;
    color: #fff;
    background-color: #000;
    padding: 15px 45px;
}

/* main-footer */

.mainfooter {
    background: #141414;
    padding: 3rem 0 0;
    position: relative;
}

.mainfooter::before {
    content: '';
    background: url(../images/dot-pattern-1.png) no-repeat;
    position: absolute;
    width: 38%;
    height: 38%;
    top: 0;

}

.mainfooter::after {
    content: '';
    background: url(../images/dot-pattern-1.png) no-repeat;
    position: absolute;
    width: 38%;
    height: 38%;
    right: 0;
    bottom: 0;
}

.ftrlinks {
    position: relative;
    z-index: 1;
}

:is(.contct-detils :is(a, p)) {
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    color: var(--white-color);
}

.contct-detils {
    margin-top: 1.5rem;
}

.contct-detils span {
    font-family: "Poppins", Sans-serif;
    color: #7a7a7a;
    display: block;
    font-weight: 500;
}

.contct-detils li {
    margin-bottom: 10px;
}

.contct-detils li a {
    font-size: 14px;
}

.contct-detils li i {
    font-size: 15px;
    margin-right: 5px;
    color: var(--white-color);
}

.ftrlinks h5 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.ftrlinks li a {
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}
:is(.contct-detils,.ftrlinks) li a:hover{
    color: var(--dark-red);
}
.ftrlinks li {
    padding: 2px 0;
}

.social-media ul {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.social-media li a {
    font-size: var(--icon-size, 15px);
    line-height: var(--icon-size, 20px);
    width: 40px;
    height: 40px;
    background-color: var(--dark-red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin: 0 10px;
}

.social-media li a:first-child {
    margin-left: 0;
}

.social-media li a:hover {
    opacity: 0.9;
}

.copyright {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 20px;
}

.copyright p {
    margin: 0;
    color: var(--white-color);
    font-size: 13px;
}

.copyright a {
    color: var(--white-color);
}



/* end main-footer */



/********INNER-PAGES*******/

.inner-header .main-header-wrap {
    border: none;
}

.inner-banner {
    background-size: cover !important;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-content h2 {
    font-size: 39px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    line-height: 64px;
}

.banner-cont-pck h2 {
    font-size: 34px;
}

.banner-content h2 strong {
    font-weight: 500;
}

.banner-content h2 span {
    font-weight: 700;
    color: #000;
    background-color: #fff;
    padding: 0 5px;
}

.banner-content h2 span.red-hd {
    color: var(--dark-red);
}

.project-btn {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    padding: 12px 32px;
    border-radius: 3px;
    text-transform: uppercase;
}

.banner-btn {
    display: flex;
    align-items: center;
}

.banner-content p {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 35px;
}

.chat-btn {
    margin-left: 29px;
}

.banner-right {
    position: absolute;
    right: 0;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.banner-right img {
    width: unset !important;
    margin: 70px 0 0 0 !important;
}


.services-hd {
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

.services-content p {
    font-size: 14px;
    color: #000;
    margin-bottom: 48px;
}

.services-content ul {
    margin-bottom: 45px;
}

.services-content ul li {
    display: inline-block;
    font-size: 16px;
    color: #000;
    width: 40%;
}

.services-content ul li i {
    color: var(--dark-red);
    padding-right: 30px;
}

.red_started {
    color: var(--dark-red);
}

.red_started:hover {
    color: #000;
}


.get-started:before {
    position: absolute;
    content: "";
    background-color: #10b5b7;
    width: 43px;
    height: 1px;
    left: 0;
    top: 10px;
}

.projects {
    background-color: #000;
    padding: 48px 0;
    position: relative;
}

.projects:before {
    content: "";
    position: absolute;
    background-color: #000;
    width: 45%;
    height: 420px;
    top: -36px;
}

.project-left ul li {
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    display: flex;
    align-items: center;
    word-break: break-word;
}

.project-left ul li i {
    color: var(--dark-red);
    margin-right: 30px;
}

.projects-counter {
    display: flex;
    justify-content: space-between;
}

.counter-box {
    text-align: center;
}

.counter-box img {
    margin-bottom: 30px;
}

.counter-box h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;
    color: #999;
}

.inner-services-sec {
    padding-top: 75px;
    padding-bottom: 100px;
    background: #F5F5F5;
}

.services-tabs {
    display: block;
    border: none;
    margin: 0;
    bottom: inherit;
    margin-top: 5px;
}

.services-tabs li {
    border-bottom: 1px solid #000 !important;
    border: none;
    text-align: left;
    padding: 35px 0;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    text-indent: inherit;
    width: 100%;
    margin: 0;
    background-color: transparent;
    opacity: 1;
    height: 100%;
}

.services-tabs li.active {
    position: relative;
}

.services-tabs li.active:before {
    content: "";
    position: absolute;
    background-color: var(--dark-red);
    width: 3px;
    height: 67px;
    top: 19px;
    right: 0;
}

.services-tabs li span {
    font-weight: 400;
    font-size: 16px;
    margin-right: 50px;
}

.service-tab-content {
    padding: 0px;
}

.service-tab-content .carousel-item h4 {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
}

.service-tab-content .carousel-item p {
    font-size: 14px;
    color: #000;
    margin-bottom: 25px;
    line-height: 26px;
}

.service-tab-content .carousel-item ul li {
    display: inline-block;
    font-size: 12px;
    color: #000;
    width: 49.5%;
    font-weight: 400;
}

.service-tab-content .carousel-item ul li i {
    color: var(--dark-red);
    padding-right: 22px;
}

.services-tabs-control {
    position: absolute;
    top: inherit;
    bottom: 50px;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: left;
    width: initial;
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
}

.services-tabs-control:hover {
    color: var(--dark-red);
}

.services-tabs-control.carousel-control-next {
    left: 35px;
    right: inherit;
}

.services-tabs-control .carousel-control-prev-icon,
.services-tabs-control .carousel-control-next-icon {
    background-image: none;
    color: #000;
    font-size: 18px;
}


.inner-about-sec {
    padding: 97px 0px;
    background-color: #F5F1EC;
    position: relative;
    z-index: 1;
}

.inner-about-img-wrap {
    background-color: #E4E4E4;
    padding: 74px 45px 64px;
    margin-left: 18px;
    position: relative;
}

.inner-about-img-wrap:before {
    content: "";
    position: absolute;
    background-color: rgb(133, 0, 0);
    left: -17px;
    width: 40%;
    height: 100%;
    z-index: -1;
    top: 20px;
}

.inner-about-text-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-about-img-wrap h3 {
    color: #000;
    font-weight: bold;
    font-size: 30px;
    text-transform: capitalize;
    line-height: 40px;
}

.inner-about-img-wrap p {
    color: #999999;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
}

.inner-about-text-wrap h3 {
    font-weight: bold;
    color: #000;
    font-size: 38px;
    margin-bottom: 0px;
}

.inner-about-text-wrap p {
    color: #999999;
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
    padding-top: 35px;
}

.inner-core-sec {
    padding-bottom: 65px;
}

.core-heading p {
    font-weight: normal;
    font-size: 18px;
    color: #999999;
    text-align: center;
}

.core-box-wrap {
    padding-top: 37px;
}

.core-box {
    background-color: #E4E4E4;
    padding: 37px 33px;
    margin-bottom: 25px;
}

.core-box h3 {
    font-weight: bold;
    color: var(--blue-color);
    font-size: 22px;
    margin-bottom: 0px;
    padding: 25px 0px;
}

.core-box p {
    font-weight: normal;
    color: #999999;
    font-size: 14px;
    margin-bottom: 0px;
}

.inner-our-skill {
    background-color: #E4E4E4;
    padding: 63px 0px;
}

.inner-our-skill .heading-wrap p {
    font-size: 18px;
    color: #999999;
}

.our-skill-wrap {
    padding: 75px 0px 15px;
}

.skill-text-wrap p {
    color: #999999;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
}


.progress-bar {
    margin: 0px 0 0px;
    overflow: hidden;
}

.progress-title-holder {
    padding-bottom: 20px;
    position: relative;
    margin: 0 0;
    line-height: 23px;
    font-weight: 400;
    color: #2e2e2e;
}

.progress-title {
    z-index: 100;
    font-weight: bold;
    color: #000;
    font-size: 22px;
}

.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}

.progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    padding: 0 8px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    /* transform: translateX(-50%); */
    -ms-transform: translateX(-50%);
    /* -webkit-transform: translateX(-120%); */
}

.progress-number-wrapper,
.progress-number-mark {
    font-size: 22px;
    line-height: 24px;
    height: auto;
    letter-spacing: 0px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 30px;
}

.progress-content-outter {
    height: 12px;
    background-color: #999999;
    border-radius: 10px;
    margin-bottom: 35px;
}

.progress-content {
    height: 13px;
    background-color: #d1001d;
    width: 0%;
    border-radius: 10px;
}

.skill-progress-wrap .progress-bar {
    background-color: transparent;
    text-align: left;
    position: relative;
}

.bbb-logo {
    padding-top: 34px;
}

.inner-portfolio-box {
    transform: scale(1);
    transition: all .5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-box-wrap .inner-portfolio-box:hover {
    z-index: 2;
}

.portfolio-box-wrap .inner-portfolio-box:hover .hovereffects-det {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.hovereffects-det {
    background-image: -moz-linear-gradient(to left, #de3145, #f0566a);
    background-image: linear-gradient(to left, #de3145, #f0566a);
    background-image: -ms-linear-gradient(to left, #de3145, #f0566a);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: 5;
    transition: .6s;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    opacity: 0;
}

.btnstyles-nn {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnstyles-nn a {
    color: #fff;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    margin: 5px;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.btnstyles-nn a i {
    margin: 0 5px;
    font-size: 40px;
}

.offering {
    background: url(../images/inner-banner/about.jpg) no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.offering-content {
    text-align: center;
}

.offering-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.offering-content p {
    font-size: 20px;
    color: #ffffff;
    margin: 30px 0 50px;
}

.offering-content a {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 42px;
    border: 1px solid #fff;
    border-radius: 3px;
}

.offering-content li {
    display: inline-block;
    list-style-type: none;
    margin-right: 10px;
}


.process-detail {
    padding-top: 160px;
}

.process-box {
    border: 1px solid rgb(153, 153, 153);
    padding: 65px 0px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 227px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-box h2 {
    font-size: 130px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    margin-bottom: 0px;
    color: #1603030f;
    left: 50%;
    transform: translate(-50%, -50%)
}

.process-box:after {
    content: "";
    position: absolute;
}

#pointer {
    width: 1px;
    position: relative;
    transform: rotate(90deg);
    left: -19px;
    bottom: -67px;
}

#pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(255, 255, 255);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #000000;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.process-content {
    text-align: center;
    padding-top: 47px;
}

.process-content h3 {
    font-weight: 700;
    font-size: 22px;
    color: var(--dark-red);
}

.process-content p {
    font-size: 14px;
    color: #999;
}

.process {
    padding: 50px 0 90px;
}

.process-wrap.selected .process-box {
    background-image: -moz-linear-gradient(90deg, rgb(148, 0, 14) 0%, rgb(216, 0, 20) 100%);
    background-image: linear-gradient(to left, #DD3245, #e93d51af);
    background-image: -ms-linear-gradient(90deg, rgb(148, 0, 14) 0%, rgb(216, 0, 20) 100%);
    border: none;
}

.process-wrap.selected .process-box #pointer:after {
    border-left: 20px solid #00000057;
}

.process-wrap.selected .process-box #pointer:before {
    border-left: 20px solid #DD3245;
}

.process-wrap.selected .process-box img {
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(355deg) brightness(183%) contrast(101%);
}

.process-wrap {
    position: relative;
}

.process-wrap:before {
    content: "";
    position: absolute;
    height: 9px;
    width: 100%;
    background-color: #999999;
    left: 0;
    top: -90px;
}

.process-wrap.selected:before {
    background-color: var(--dark-red);
}

.process-wrap:last-child:before {
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
}

.process-wrap:first-child:before {
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
}

.testimonial {
    background-image: -moz-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
    padding: 80px 0;
}

.testimonial-headings h5 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-headings {
    padding-right: 30px;
    padding-top: 30px;
}

.testimonial-headings h3 {
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    margin-bottom: 35px;
}

.testimonial-headings p {
    font-size: 18px;
    color: #999;
    margin-bottom: 70px;
}

.testi-btn span {
    color: #10b3b6;
}

.testi-btn {
    background-color: #fff;
    text-transform: uppercase;
    height: 47px;
    width: 305px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
    border: none;
}

.testimonialSlider {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
}

.testimonialSlider li {
    padding: 0 15px;
    text-align: center;
}

.testimonialSlider li .quotedBy {
    background: #fff;
    padding: 28px;
    position: relative;
    text-align: left;
    height: 268px;
}

.client-name {
    display: flex;
    align-items: flex-end;
}

.testimonialSlider li .quotedBy:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 100%;
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.testimonialSlider li .quotedBy p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.testimonialSlider li .quotedBy h5 {
    font-size: 12px;
    color: #666;
    margin: 15px 0 0;
}

.testimonialSlider li .quotedBy h5 span {
    font-size: 18px;
    display: block;
    color: #10afb7;
    font-weight: 600;
}

.testimonialSlider li img {
    margin: 35px auto 0;
}

.slick-initialized .slick-slide {
    outline: 0;
}

.testimonialSlider .slick-arrow {
    position: absolute;
    top: calc(55% - 20px);
    padding: 0;
    width: auto;
    background: transparent;
}

.testimonialSlider .slick-arrow.slick-next {
    right: unset;
    left: calc(100% + 13px);
}

.testimonialSlider .slick-arrow.slick-prev {
    right: 100%;
    left: unset;
    transform: rotate(180deg);
}

.testimonialSlider .slick-arrow.slick-next:before {
    content: url(../images/arrow.png);
}

.testimonialSlider .slick-arrow.slick-prev:before {
    content: url(../images/arrow.png);
}



.btn-10 {
    position: relative;
    display: block;
    overflow: hidden;
}

.btn-10:before,
.btn-10:after,
.btn-10 span:before,
.btn-10 span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 80px;
    background-color: rgb(21, 24, 24);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}

.btn-10:after,
.btn-10 span:before {
    left: auto;
    right: 0;
}

.btn-10 span:before,
.btn-10 span:after {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.btn-10:hover {
    color: #ffffff;
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.btn-10:hover:before,
.btn-10:hover:after,
.btn-10:hover span:before,
.btn-10:hover span:after {
    width: 250px;
}

.btn-10:active {
    background-color: #6c0f0b;
}

.inner-portfolio-wrap {
    padding-top: 110px;
}

.banner-btn .btn-10:hover {
    color: #ffffff;
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.main-pricing .portfolio-heading {
    margin-bottom: 30px;
}



.form_wrap span i {
    position: absolute;
    top: 17px;
    left: 36px;
    font-size: 15px;
    color: #db1e5a
}

.entry-right input {
    border-radius: 5px;
    height: 51px;
    padding-left: 20px;
    border: 2px solid #e3e3e3;
    box-shadow: none;
    background: #fafafa;
    margin: 5px 0
}

.entry-right {
    background-color: #eff1ff;
    background-size: cover;
    background-position: 100% 0;
    padding: 0 4%;
    border-radius: 10px;
    box-shadow: inset 0 0 250px 0 rgba(0, 0, 0, .11)
}

form.offr-frm {
    height: 100%
}

.modal-dialog.modal-dialog-centered {
    max-width: 100% !important
}

.offr-frm .close {
    background-color: transparent;
    color: #f5f5f5;
    border-radius: 23px;
    width: 47px;
    height: 44px;
    position: absolute;
    right: 2px;
    z-index: 1;
    top: -70px;
    cursor: pointer;
    opacity: 1;
    border: 3px solid #f5f5f5;
}

#entry-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999990;
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    display: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.entry-box {
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 50px 0 #000;
    position: relative;
    pointer-events: auto;
    width: 837px !important;
    height: 597px;
    background: url(../images/popup_bgset.jpg);
    background-size: cover;
}

.entry-box h1 {
    text-shadow: 0 5px 10px rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 60px
}

.entry-box h1 span {
    color: #ffd800
}

.entry-box h1 {
    text-shadow: 0 5px 10px rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 70px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 79px;
}

.popup_top .text {
    position: relative;
    padding: 93px 0 0 46px
}

.popup_top .text h2 {
    font-size: 30px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 65px;
}

.entry-right .text h2 span {
    color: #eb0000
}

.text_dis_in {
    background-color: #101010;
    width: 85%;
    padding-left: 15px;
    padding-top: 23px;
    padding-bottom: 22px;
    position: relative;
}

.text_dis_in:before {
    width: 0;
    height: 0;
    border-bottom: 30px solid #101010;
    border-left: 30px solid transparent;
    position: absolute;
    content: "";
    top: -30px;
    right: 0;
}

.text_dis {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px
}

.text_dis_in h2 {
    font-size: 30px;
    color: #d3d7f2;
    margin: 0
}

.text_dis {
    display: flex;
    justify-content: flex-end
}

.text_dis_in h1 {
    color: #d1001d;
    font-size: 65px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

.entry-right .text:before {
    content: "";
    width: 6px;
    height: 50px;
    background: #1473e6;
    border-radius: 20%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden
}

.form-control.error {
    border-color: red !important
}

label.error {
    display: none !important
}

.entry-right .text strong {
    text-transform: uppercase
}

.entry-right .form-control:focus {
    border-color: #e2001b;
    box-shadow: 0 0 5px 0 #dee2e4;
    background-color: #fff;
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, .2)
}

.entry-right input {
    border-radius: 5px;
    height: 54px;
    padding-left: 0;
    border: 1px solid #dedede;
    box-shadow: none;
    background: #f5f5f5;
    border: 1px solid #959595;
    border-radius: 40px;
    border-left: 0;
    margin: 0 !important;
}

span.input-group-text.set_inp_gr {
    background-color: #f5f5f5;
    border: 1px solid #959595;
    border-radius: 40px;
    color: #d1001d;
    padding: 0 23px;
}

.entry-right input[type=email],
.leaving-box input[type=email] {
    background-color: #fff !important;
    color: #555 !important
}

.entry-right .intl-tel-input {
    width: 100%
}

.entry-right .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 0
}

.entery-submit {
    width: 100%;
    background-color: #d1001d !important;
    box-shadow: 0 9px 27px 0 rgba(0, 0, 0, .22);
    color: #f3f3f3;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border: none !important;
    border: 1px solid #05062b;
    height: 61px;
    cursor: pointer;
    margin-top: 6px;
    border-radius: 40px;
}

.text_topfr h2 {
    font-size: 31px;
    margin: 0;
    color: #d1001d;
    font-weight: 400;
    text-align: center;
    padding-bottom: 14px;
}

.text_topfr h4 {
    font-size: 36px;
    margin: 0;
    color: #0c0c0c;
    font-weight: 700;
    text-align: center;
    padding-bottom: 30px;
}

.entry-right a {
    height: 60px;
    line-height: 60px;
    display: block;
    width: 100%;
    background-color: #ffd800;
    border-radius: 50px;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: 600
}

.entry-right a i {
    margin-left: 6px
}

.popup_top p {
    color: #fff;
    font-size: 30px;
    margin: 0;
    padding-top: 4px
}

.entry-right label {
    margin: 0
}

.entry-right .form-group {
    margin-bottom: 10px
}

a#entry-box_close {
    position: absolute;
    right: 5px;
    background-color: #69c626;
    width: 40px;
    height: 40px;
    border-radius: 50pc;
    color: #fff;
    font-size: 29px;
    top: 10px;
    z-index: 9
}

.text_topfr {
    margin-top: 93px
}

.error,
.invalid {
    border-color: red !important
}


/* New form styling */
.form-left-art h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #292929;
    margin-bottom: 20px;
}

.form-left-art h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 54px;
    color: #10b5b6;
    margin-bottom: 40px;
}

.form-left-art sup {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    vertical-align: super;
    position: absolute;
    left: 49px;
    top: 27px;
}

.form-left-art h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 111px;
    margin-bottom: 0;
    background-color: #10b5b6;
    color: #fff;
    margin-left: -50px;
    position: relative;
    padding: 0 106px;
    line-height: 125px;
    max-width: 380px;
}


.popup-main-wrap {
    padding: 80px 36px;
    background-color: #000;
    border: 5px solid #16b6b8;
    border-radius: 15px;
}

.form-right-art h3 {
    font-weight: 400;
    font-size: 25px;
    color: #a1a1a1;
    margin-bottom: 0;
}

.form-right-art h2 {
    font-weight: 700;
    font-size: 41px;
    color: #fff;
}

.form-left-art {
    background-image: url(../images/popup-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 90px 20px 50px;
    border-radius: 15px;
    margin-left: -125px;
}

.sup2 {
    left: 310px !important;
    top: 46px !important;
}

.ftr-frm input,
.ftr-frm button {
    border-radius: 50rem !important;
    padding: 10px 31px !important;
    height: auto;
}

.ftr-frm button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    background-color: #10b5b6;
    color: #fff;
    border: 2px solid #fff;
    width: 100%;
}

.ftr-frm button:focus {
    outline: none;
}

.entry-box1 {
    max-width: 900px;
    margin: 0 auto;
    max-height: 580px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    overflow: unset !important;
    display: none;
}

.cross {
    position: absolute;
    color: #fff;
    right: -30px;
    top: -76px;
    padding: 10px 15px !important;
    background-color: #11b5b6 !important;
    border-radius: 50%;
    opacity: 1;
}


.form-left-art h4::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 125px;
    background-color: #10b5b6;
    clip-path: polygon(100% 47%, 0 0, 0 100%);
    top: 0;
    right: -44px;
}

.form-error {
    display: block;
}


/* banner step form */
.banner_step_form .tab {
    display: none;
}

.banner_step_form input[type="text"] {
    border-radius: 4px 0px 0 4px;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #00000040;
    border: 0;
    color: #fff;
    padding: 0 37px;
    border: 1px solid #e98f00;
}

.banner_step_form input[type="text"]::placeholder {
    color: #fff;
}

.form_btn_wrap {
    border-radius: 0 4px 4px 0px;
    background-color: #e98f00;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: 0;
    line-height: 14px;
    padding: 0 15px;
    height: 50px;
    width: auto;
}

.form_btn_wrap button {
    border: 0;
    background-color: transparent;
    width: auto;
    height: 100%;
    padding: 0 15px 0 15px;
    color: #fff;
}

.form_btn_wrap button:focus {
    outline: none;
}

.banner_step_form {
    display: flex;
    margin-bottom: 17px;
}

.banner_step_form input[type="text"].invalid {
    background-color: rgb(255 0 0 / 12%);
}

.banner_step_form {
    display: flex;
}

span.help-block.form-error {
    display: none;
}

/* banner step form */
.package-para p {
    display: none;
}

.seo_pkgs .package-para p {
    display: block;
}

.package-price .price_wrap p {
    font-size: 13px;
    padding: 0;
}


/* privacy-thankyou-css */

.main-privacy {
    padding: 60px 0 80px;
    background-color: #fff;
}

.main-privacy h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.main-privacy h4 {
    font-size: 26px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-privacy p,
.main-privacy li {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 22px;
}

input.error {
    border-color: black !important;
}

.thankyou_sec {
    padding: 0px;
    height: 75vh;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.main-thankyou {
    text-align: center;
}

.main-content__checkmark {
    font-size: 9.75rem !important;
    line-height: 1 !important;
    color: var(--dark-red);
}

.site-header__title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.start_live_chat {
    font-size: 20px;
    background-color: #16171a;
    padding: 15px 35px;
    display: inline-block;
    border-radius: 4px;
    margin: 20px 0 0;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    line-height: 16px;
}

.inner-new-header {
    /* background-color: #ffeded; */
    padding-bottom: 30px;
    position: absolute;
}






/* combo packages */

.combo-pack-head {
    background-color: #262626;
    padding: 10px 0;
}

.combo-pack-head h5 {
    font-size: 43px;
    font-weight: 700;
    margin: 0;
    padding: 12px 0 0px 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.combo-pack-info p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    color: #424343;
}

.combo-pack-info {
    padding: 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #000;
}

.comb-pack-desc-main-box {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    z-index: 9;
}

.combo-pack-box h6 {
    margin: 0;
    padding: 0 0 15px 0;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000000;
}

.combo-pack-box ul li {
    margin: 0;
    padding: 0 0 10px 30px;
    font-size: 14px;
    color: #000000;
    /* font-weight: 600; */
    position: relative;
}

.combo-pack-box {
    margin-bottom: 15px;
}

.combo-pack-box ul li::before {
    content: '';
    background-image: url('../images/combo-before-img.png');
    height: 23px;
    width: 26px;
    position: absolute;
    left: 0;
    top: 0px;
    background-size: 90%;
    background-repeat: no-repeat;
}

.combo-pack-price h6 {
    font-size: 50px !important;
    margin: 0;
    padding: 0;
    color: #10b6b7;
    font-weight: 800;
}

.combo-package-desc-price {
    text-align: center;
    padding: 30px 0px 0px 0px;
}

.btn-combo {
    background-color: #10b6b7;
    color: #000 !important;
    /* padding: 6px 20px; */
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    cursor: pointer;
    text-transform: capitalize;
    padding: 8px 30px;
    margin-top: 10px;
    display: inline-block;
}

.combo-package-chat-box .chat-btn {
    padding: 40px 0 5px 0;
}

.combo-package-chat-box .chat-btn a h4 {
    font-weight: 600;
    font-size: 20px;
    color: #505050;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.combo-package-chat-box .chat-btn a h4 span {
    font-weight: 700;
    font-size: 36px;
    color: #505050;
    display: block;
    text-transform: capitalize;
}

.btn-combo-view {
    background-color: #000;
    color: #fff !important;
    padding: 8px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 10px;
}

.btn-combo:hover {
    color: #fff !important;
}

.combo-pack-sec {
    background-color: #efefef;
}

.combo-pack-sec {
    background-color: #efefef !important;
}

.portfolio-box-wrap {
    border: 1px solid #ccc;
}

.disclaimer-para {
    font-size: 15px !important;
    color: #ddd !important;
    line-height: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 5;
    font-weight: 500;
}

.footer-form-address ul li a img {
    margin-right: 10px;
}

.menu-wrap .navbar-collapse ul li a img {
    margin-right: 2px;
    width: 30px;
}

.trustpilot-box {
    display: block;
}

.footer-widgets {
    display: flex;
}

.footer-services-menu {
    padding-bottom: 0px;
}

.footer-services-menu .last {
    padding-bottom: 0px !important;
}

.bark-box {
    margin-left: 10px;
}

.porttabsctm,
.marketing-page .none-class {
    display: none;
}

.marketing-page .portfolio-heading {
    border: 0;
}

.pacblock {
    display: flex;
}

.innertabs nav {
    justify-content: center;
}

.combo-pack-box ul {
    columns: 3 !important;
}

.heading-wrap {
    text-align: center;
    color: var(--blue-color);
}

.heading {
    color: #000;
    font-weight: bold;
    font-size: 38px;
    margin-bottom: 0;
}

.portfolio-section {
    padding: 70px 0px 100px;
}

.portfolio-heading .row {
    border-bottom: 1px solid #e6e5e3;
    padding-bottom: 2rem;
}

.portfolio-tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--dark-red) !important;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs {
    flex-wrap: nowrap;
}

.portfolio-tabs .nav-tabs {
    border-bottom: none;
}

.portfolio-tabs .nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #000;
    font-size: 13px;
    text-align: left !important;
    padding: 0;
    /* margin-bottom: 18px; */
}

.portfolio-wrap {
    padding-bottom: 80px;
    padding-right: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 43px;
}

.portfolio-wrap img {
    transition: 1s;
    z-index: 10;
    position: relative;
    display: block;
}

.portfolio-wrap:hover img {
    -ms-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    transition: 1s;
}

.portfolio-content {
    position: absolute;
    left: 0px;
    z-index: 20;
    margin-top: 20px;
    width: 100%;
}

.portfolio-content p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #fff;
}

.portfolio-content h3 a {
    color: #fff;
    font-weight: bold;
    font-size: 28px;
}

.margin-top {
    margin-top: 75px;
}

.portfolio-item .col-md-6:nth-child(2) .portfolio-wrap {
    margin-top: 95px;
}

.portfolio-item .col-md-6:nth-child(4) {
    margin-top: 75px;
}

.main-pricing {
    padding: 80px 0px;
}

.pricing-heading h3 {
    color: #ffffff;
    font-size: 38px;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 20px;
}


.package-box {
    background-color: #000000;
    padding: 37px 20px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.package-wrap {
    position: relative;
    margin: 25px 20px;
}

.pricing-slider .item .package-wrap {
    transition: all .3s ease-in-out;
}

.overlay-back {
    position: absolute;
    height: 100%;
    background-color: rgb(209, 0, 29);
    transform: rotate(0deg);
    width: 100%;
    display: block;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.package-wrap:hover .overlay-back {
    transform: rotate(-3deg);
}

.package-icon-heading {
    background-color: #fff;
    border-radius: 50px;
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.package-icon-heading:before {
    position: absolute;
    content: "";
}

.pricing-slider .item:nth-child(1) .package-icon-heading:before {
    background-image: url(../images/package-icon-1.png);
    width: 34px;
    height: 43px;
}

.pricing-slider .item:nth-child(2) .package-icon-heading:before {
    background-image: url(../images/package-icon-2.png);
    width: 37px;
    height: 37px;
}

.pricing-slider .item:nth-child(3) .package-icon-heading:before {
    background-image: url(../images/package-icon-3.png);
    width: 39px;
    height: 35px;
}

.package-text {
    background-color: #101010;
    padding: 10px 20px;
    margin: 12px 0px 20px;
}

.package-text h3 {
    color: #d1001d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 0px;
}

.package-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.package-price {
    /* border: 1px dotted #fff; */
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    margin-top: 17px;
}

.package-price h3 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0px;
}

.package-price h3 span {
    font-size: 24px;
    font-weight: 600;
}

.package-detail {
    padding: 35px 0px;
}

.package-detail ul li {
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    padding-bottom: 15px;
    text-align: center;
}

.purchase-btn {
    background-image: -moz-linear-gradient(-90deg, rgb(209, 0, 29) 0%, rgb(130, 12, 29) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(209, 0, 29) 0%, rgb(130, 12, 29) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(209, 0, 29) 0%, rgb(130, 12, 29) 100%);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
}

.purchase-btn:hover {
    color: #fff;
}

.purchase-btn i {
    padding-left: 8px;
}

.package-btn {
    display: flex;
}

.pricing-slider .owl-dots button:focus {
    outline: none;
}

.pricing-slider .owl-dots .owl-dot.active span,
.pricing-slider .owl-dots .owl-dot:hover span {
    background: #a3071d;
    border: none;
}


/* New styling packages */


.package-box {
    padding: 37px 20px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: -moz-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(13, 12, 12) 0%, rgb(30, 30, 30) 100%);
}

.package-wrap {
    position: relative;
    margin: 25px 20px;
}

.pricing-slider .item .package-wrap {
    transition: all .3s ease-in-out;
}

.overlay-back {
    position: absolute;
    height: 100%;
    background-image: linear-gradient(to left, #11b9b7, #0856af);
    transform: rotate(0deg);
    width: 100%;
    display: block;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.package-wrap:hover .overlay-back {
    transform: rotate(-3deg);
}

.package-icon-heading {
    background-color: #fff;
    border-radius: 50px;
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.package-icon-heading:before {
    position: absolute;
    content: "";
}

.package-text {
    background-color: #101010;
    padding: 10px 20px;
    margin: 12px 0px 20px;
}

.package-text h3 {
    color: #0ec0c3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 0px;
}

.package-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.package-price {
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    margin-top: 0px;
}

.package-price p {
    color: #999999;
    font-size: 16px;
    padding-left: 20px;
}

.package-price p span {
    text-decoration: line-through;
}

.package-price h3 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0px;
}

.package-price h3 span {
    font-size: 24px;
    font-weight: 600;
}

.package-para p {
    color: #8c8c8c;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}

.package-detail {
    padding: 35px 20px;
    background-color: #000;
    width: 100%;
    border: 1px solid #cccccc69;
    margin: 25px 0px;
}

.package-detail ul li {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    padding-bottom: 15px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.package-detail ul li.heading {
    font-weight: 700;
    padding-left: 0;
}

.package-detail ul li:before {
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    content: '';
    border-left: 5px solid #10b4b7;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    /* right: 55px; */
}

.package-detail ul li.heading:before {
    display: none;
}

.purchase-btn {
    background-image: -moz-linear-gradient(-90deg, rgb(209, 0, 29) 0%, rgb(130, 12, 29) 100%);
    background-image: linear-gradient(to left, #11b9b7, #0856af);
    background-image: -ms-linear-gradient(-90deg, rgb(209, 0, 29) 0%, rgb(130, 12, 29) 100%);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
    border: 1px solid #fff;
}

.purchase-btn:hover {
    color: #fff;
}

.purchase-btn i {
    padding-left: 8px;
}

.package-btn {
    display: flex;
}

.pricing-slider .owl-dots button:focus {
    outline: none;
}

.pricing-slider .owl-dots .owl-dot.active span,
.pricing-slider .owl-dots .owl-dot:hover span {
    background: #10b3b7;
    border: none;
}

.package-btn .purchase-btn {
    border: none;
}

.owl-theme .owl-dots .owl-dot span {
    border: 1px solid #4f4f4f;
    background: transparent;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    font-size: 0;
}

.inner-hero .heading-wrapper {
    font-size: 40px;
    font-weight: 400;
    color: #64657D;
}

.grey-smokey {
    padding: 1rem 0 0;
}

.background-overlay {
    background-image: url(../images/linebgoverlay.png);
    background-color: #F1F1F1;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.background-overlay {
    inset: 0;
    position: absolute;
}

.grey-smokey .heading-wrapper {
    font-size: 30px;
    font-weight: 200;
    text-transform: capitalize;
    line-height: 58px;
}

.icon-list-items li {
    padding: 10px 0;
    font-size: 14px;
}

.icon-list-items li i {
    margin-right: 10px;
}

.grey-smokey .defult-btn {
    margin-top: 100px;
    background-color: var(--dark-red);
}

.tool-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 1rem 0;
    margin: 0;
}

.tools-logos {
    background-color: #E4E9EE;
    padding: 16px 0;
}

.tools-logos ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.content-sec {
    background-color: #F5F5F5;
}

.para-1 {
    font-size: 14px;
    margin-bottom: 30px;
}

.content-sec .heading-wrapper {
    font-size: 35px;
    font-weight: 200;
    text-transform: capitalize;
    line-height: 58px;
}

.content-sec .content-wrapper span {
    font-size: 14px;
    padding-bottom: 3px;
    display: block;
    color: var(--blue-color);
}

.content-heading {
    font-size: 35px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 58px;
    color: var(--blue-color);
}

.content-sec ul {
    font-size: 14px;
}

:is(.seo-content, .content-sec) ul li i {
    font-size: 5px;
    margin-right: 8px;
}

.mobile-sec {
    background-color: #000;
    padding: 10px 0;
}

.research-sec {
    background-color: #F5F5F5;
    padding: 5rem 0 1rem;
}

.divider-separator {
    display: flex;
    align-items: center;
}

.divider-separator i {
    margin: 0 10px;
    font-size: 20px;
}

.divider-separator::before {
    position: relative;
    content: '';
    border-bottom: 1px solid #ACA7A7;
    width: 50%;
    display: inline-block;
}

.divider-separator::after {
    position: relative;
    content: '';
    border-bottom: 1px solid #ACA7A7;
    width: 50%;
    display: inline-block;
}

.research-sec .heading-wrapper {
    font-size: 35px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 58px;
    color: var(--blue-color);
    padding: 2rem 0 10px;
    margin: 0;
}

.Wireflows-box .para-2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 30px;
}

.test-report {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 30px 0 20px;
    font-size: 14px;
    text-align: center;
}

.venn-gym .heading-wrapper {
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 58px;
    color: var(--blue-color);
    padding: 2rem 0 10px;
    margin: 0;
}

.venn-gym .content-heading {
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 58px;
    color: var(--blue-color);
}

.pdfemb-errormsg {
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    background-color: #faa;
    border: 1px solid;
}

.rounded {
    border-radius: 20px !important;
}

.venn-gym ul li i {
    font-size: 5px;
    margin-right: 8px;
}

.ul-font-size li {
    font-size: 14px;
    padding: 5px 0;
}

.reports-pic img {
    border: 1px solid;
}

.seo-content .para-1 {
    font-size: 35px;
    font-weight: 500;
    color: #64657D;
}

.seo-content .para-2 {
    margin-bottom: 32px;
    color: #64657D;
}

.seo-content ul li {
    padding: 5px 0;
}

.hosting-sec {
    background-color: var(--gray-color);
}

.hosting-sec .heading-wrapper {
    font-size: 45px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    color: var(--blue-color);
}

.hosting-sec .para-1 {
    font-size: 16px;
    font-weight: 400;
    color: #64657D;
}

.price-table {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid;
    text-align: center;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.price-table small {
    color: #bfbfbf;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5.2px;
}

.price-table h4 {
    color: #000000;
    font-size: 34px;
    font-weight: 300;
    line-height: 43px;
}

.price-table h5 {
    color: #000000;
    font-size: 100px;
    font-weight: 900;
}

.price-table span {
    color: #343657;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 2.8em;
}

.price-table p {
    color: #64657D;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.8em;
    margin: 0;
}

.price-table p i {
    color: #64657D;
    margin-right: 5px;
}

.tech-enables {
    background-color: #F1F1F1;
}

.tech-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-slider li img {
    width: 60px;
    height: 60px;
    border-radius: 20px;
}

.tech-enables h2 {
    font-size: 16px;
    padding-bottom: 20px;
    text-align: center;
    color: var(--blue-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6.6px;
}

/* contact-page */

.main-footer-form {
    background-color: #F5F5F5;
}

.contact-form-control input {
    background-color: #fff;
    border: 1px solid #fff;
    height: 47px;
    margin-bottom: 29px;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
}

.contact-form-control textarea {
    background-color: #fff;
    border: 1px solid #fff;
    height: 122px;
    margin-bottom: 29px;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    width: 100%;
    padding-left: 15px;
    padding-top: 18px;
}

.footer-form-address {
    background-color: #E2E39D;
    height: 400px;
    border-radius: 5px;
    padding: 45px 20px 0px;
}

.footer-form-address ul {
    text-align: center;
}

.footer-form-address p {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 0;
}

.footer-form-address ul li a {
    color: #000;
}

.listwraper ul {
    justify-content: center;
    display: flex;
    gap: 0 80px;
    flex-wrap: wrap;
}

.icontext {
    text-align: center;
    margin-bottom: 4rem;
    width: 190px;
}

.ui-web-sec .heading-wrapper {
    font-size: 20px;
    margin-bottom: 32px;
}


/* model-popup */
.modal-open {
    overflow: hidden
}


.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    width: 100%;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 0
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.mcta-left {
    float: left;
    width: 100%;
    background-image: url('../images/modalbg.jpg');
    color: #fff;
    padding: 12px 20px 14px;
    background-position: 46% 90%;
}

.mcta-right {
    float: right;
    width: 100%;
    padding: 10px 20px 30px;
}

.mcta-left h3,
.mcta-left p {
    color: #fff;
}

.mcta-right input,
.mcta-right textarea {
    width: 100%;
    border: 1px solid #efefef;
    padding: 8px 10px;
    resize: none;
    font-size: 12px;
}

.mcta-right label {
    margin: 8px 0;
    color: #65686a;
}

.mcta-right textarea {
    height: 185px;
}

.mcta-right button {
    margin-top: 10px;
    border: 0;
    display: table;
    margin: 15px auto;
}

.mcta-right input[type="checkbox"] {
    width: unset;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

button.btn.btn-default.close-btn {
    background-color: transparent;
    width: unset;
    position: absolute;
    top: -1px;
    right: -20px;
    padding: 0;
    border: 0;
}

.mcta-right label.labeled {
    font-size: 12px;
    color: #65686a;
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 400;
}

.mcta-left h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.mcta-right input.banner-btn {
    background-color: var(--dark-red);
    color: #fff;
    border: 0;
    font-size: 18px;
}

.mcta-left h3 small {
    color: #fff;
}

.mcta-left h3 small {
    clear: both;
    display: block;
}

.modal-dialog.modal-cta,
.modal-dialog.modal-cta .modal-content {
    display: table;
}