body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.container {
    max-width: 1170px;
}

:root {
    --heading-color: #27273d;
    --black: #000;
    --white: #fff;
    --primary-color: #ffdd2c;
}

p {
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* webpage css start */

.custom-cont {
    max-width: 1520px;
}

header {
    padding: 12px 0px;
}

header .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Poppins';
}

header .nav-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
}

header .navbar-nav .nav-item.active .nav-link:after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 30px;
    height: 6px;
    bottom: 0;
    left: 0;
    border-radius: 5px;
}

header .navbar-nav .nav-item.active {
    position: relative;
}

header .form-inline {
    margin-left: 30px;
}

.themebtn {
    background: var(--primary-color);
    width: 125px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat';
    border-radius: 5px;
    transition: 0.5s;
}

.themebtn:hover {
    background: var(--black);
    color: var(--white);
}


/* .bann-sec {
    background: var(--white);
    position: relative;
    background-position: left;
    min-height: 890px;
    padding-top: 180px;
    padding-bottom: 170px;
} */


/* .bann-sec::before {
    content: '';
    width: 85%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: url(/images/banner.jpg) no-repeat;
    z-index: 0;
} */

.weblemon-ban .row {
    justify-content: space-between;
}

.banner-mn h5 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Proxima-Nova-Font';
    color: var(--black);
}

.banner-mn h2 {
    font-size: 95px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
    font-weight: 800;
}

.banner-mn h2 span {
    animation: 1s blink linear infinite;
    display: inline-block;
}

@keyframes blink {
    0% {
        background: var(--primary-color);
    }
    50% {
        background: white;
    }
    100% {
        background: var(--primary-color);
    }
}

.banner-mn ul {
    padding-bottom: 20px;
}

.banner-mn ul li {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Proxima-Nova-Font';
}

.banner-mn ul li i {
    margin-right: 20px;
}

.banner-mn .btn-bann {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-mn .btn-bann a {
    width: 250px;
    height: 70px;
    text-transform: capitalize;
    font-size: 18px;
}

.form-mn {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 25px 25px 0px rgba(255, 241, 0, 0.15);
    padding: 50px 40px;
    border-top-right-radius: 50px;
}

.form-mn:before {
    content: '';
    position: absolute;
    background: url(/images/form-sd-1-1.png) no-repeat;
    right: 15px;
    height: 130px;
    width: 115px;
    top: 0;
}

.form-mn h2 {
    font-size: 40px;
    color: var(--black);
    font-weight: 700;
    font-family: 'Montserrat';
    position: relative;
    line-height: 48px;
    margin-bottom: 20px;
}

.form-mn p {
    color: var(--black);
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
}

.lemon-form input {
    height: 60px;
    border: 1px solid var(--black);
}

.lemon-form input::placeholder {
    color: black;
    font-family: 'Poppins';
    font-size: 14px;
}

.lemon-form textarea {
    border: 1px solid var(--black);
}

.lemon-form textarea::placeholder {
    color: black;
    font-family: 'Poppins';
    font-size: 14px;
}

.lemon-form label {
    color: black;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    height: 60px;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 7px;
    border: 1px solid;
    font-weight: 600;
    transition: 0.5s;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: black;
}

.scroll {
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    z-index: 1;
    gap: 0.5rem;
    line-height: 1;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll span {
    border: 4px solid var(--white);
    display: inline-block;
    padding: 30px 17px;
    background: var(--primary-color);
    border-radius: 40px;
}

.scroll span i,
.scroll span img {
    color: black;
    font-size: 37px;
    -webkit-animation: upDown 2s infinite;
}

@-webkit-keyframes upDown {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.package-sec {
    padding: 100px 0px 80px;
    background: url(/images/ever-bg.png) no-repeat;
    background-size: contain;
    background-position: bottom;
    overflow: hidden;
}

.package-sec .nav-tabs {
    justify-content: center;
    gap: 20px;
    border: none;
}

.package-sec .nav-tabs .nav-item {
    position: relative;
}

.package-sec .nav-tabs .nav-item .nav-link {
    border: none;
    color: black;
    font-size: 25px;
    font-family: 'Montserrat';
    font-weight: 700;
}

.package-sec .nav-tabs .nav-item .nav-link.active:after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 100px;
    height: 6px;
    bottom: 10px;
    left: 16px;
    border-radius: 5px;
}

.packages-mn {
    position: relative;
    border: 1px solid var(--black);
    padding: 60px 20px 40px;
    transition: 0.5s;
    background: white;
    overflow: hidden;
    margin: 15px;

}

.packages-mn:before {
    content: '';
    position: absolute;
    background: url(/images/packge-sd.png) no-repeat;
    width: 130px;
    height: 120px;
    right: -12px;
    top: 0px;
    /* opacity: 0; */
    transition: all 0.3s ease-in-out;
}

.packages-mn a {
    width: 100%;
    margin-top: 0px;
    font-size: 18px;
    margin-bottom: 20px;
    height: 50px;
    background: white;
    /* background: var(--primary-color); */
    /* color: var(--black); */
    color: var(--heading-color);
    border: 1px solid var(--black);
}

.packages-mn .themebtn i {
    font-size: 20px;
    display: block;
    margin-left: 30px;
}


/* .packages-mn .themebtn:hover {
    color: white;
} */


/* .packages-mn .themebtn:hover i {
    opacity: 1;
    color: white;
    transform: translateX(10px);
} */

.packages-mn h4 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    max-width: 73%;
    /* color: var(--white); */
}

.packages-mn p {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins';
    position: relative;
    /* color: var(--white); */
}

.packages-mn ul li {
    padding-bottom: 10px;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    /* color: var(--white); */
}

.packages-mn ul li i {
    background: var(--primary-color);
    display: inline-block;
    padding: 5px 5px;
    border-radius: 50%;
    margin-right: 6px;
    font-size: 14px;
    flex: 0 0 20px;
}

.packages-mn:hover {
    background: var(--black);
}

.packages-mn:hover:before {
    opacity: 1;
    transform: translateY(0px);
    top: 0;
}

.packages-mn:hover h4 {
    color: var(--white);
}

.packages-mn:hover p {
    color: var(--white);
}

.packages-mn:hover a {
    background: var(--primary-color);
    color: var(--black);
}

.package-sec .tab-pane {
    padding-top: 20px;
}

.packages-mn:hover ul li {
    color: var(--white);

    
}

.packages-mn:hover ul li i {
    color: var(--black);
}

.package-sec .main-head {
    padding-top: 80px;
}

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

.main-head h2 {
    font-size: 60px;
    font-family: 'Montserrat';
    font-weight: 700;
}

.ever-mn {
    text-align: center;
    transition: 0.5s;
    position: relative;
    width: 250px;
    height: 230px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 0px 30px;
}

.ever-mn span {
    font-size: 100px;
    font-weight: 700;
    /* position: relative; */
    /* left: 30px; */
    /* top: -85px; */
    font-family: 'Montserrat';
    /* opacity: 0; */
    /* transform: translate(-30px, 10px); */
    display: inline-block;
    margin-top: -70px;
    line-height: 118px;
}

.ever-mn p {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
    /* background: var(--primary-color); */
    /* border-radius: 50%; */
    /* padding: 50px 30px; */
    /* width: 250px; */
    /* margin-top: 10px; */
    /* height: 230px; */
}

.ever-mn:hover span {
    opacity: 1;
}


/* .ever-mn:hover p {
    background: var(--primary-color);
    border-radius: 50%;
    width: 230px;
    height: 230px;
} */

.main-head p {
    font-size: 20px;
    font-weight: 400;
    color: black;
    font-family: 'Poppins';
    width: 80%;
    margin: auto;
    line-height: 37px;
}

.content h4 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat';
    padding: 5px 0px;
}

.content p {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    width: 80%;
    margin: auto;
}

.lead-sec {
    padding: 80px 0px;
}

.lead-sec .main-head {
    padding-bottom: 40px;
}

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

.develop-sec {
    background: #f5f5fa;
    padding: 80px 0px 80px;
    overflow: hidden;
}

.develop-sec .main-head {
    padding-bottom: 40px;
}

.develop-img {
    /* margin-bottom: -150px; */
}

.roll-sec {
    padding: 250px 0px 100px;
}

.role-sd figcaption span {
    background: var(--primary-color);
    display: inline-flex;
    width: 250px;
    height: 230px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.role-sd figcaption span a {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: black;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    align-items: center;
    justify-content: center;
    line-height: 30px;
}

.role-sd figcaption span a b {
    font-size: 56px;
    font-weight: 700;
    line-height: 10px;
}

.role-sd {
    position: relative;
}

.role-sd figcaption {
    text-align: end;
    position: absolute;
    right: -50px;
    bottom: -70px;
}

.roll-txt h4 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

.roll-inn h6 {
    font-size: 20px;
    font-weight: 800;
}

.roll-inn p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Poppins';
}

.roll-inn {
    padding-bottom: 10px;
}

.test-sec {
    background: var( --primary-color);
    padding: 100px 0px 70px;
}

.test-mn p {
    color: black;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins';
}

.test-mn span {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.test-mn {
    margin: 20px;
}

.test-slider .slick-dots {
    bottom: -60px;
}

.test-slider .slick-dots li button {
    background: #cac211;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.test-slider .slick-dots li button:before {
    display: none;
}

.test-slider .slick-dots .slick-active button {
    background: black;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.faq-sec {
    padding: 80px 0px;
}

.accordionStyle .card .card-header button.btn.btn-link.collapsed {
    /* background-color: #ECF6FD; */
    color: black;
    padding-left: 1rem;
}

.accordionStyle .card .card-header button.btn.btn-link {
    padding-left: 1rem;
    color: black;
}

.accordionStyle .card .card-header button.btn.btn-link.collapsed i {
    color: black;
}

.faqs-sec .accordionStyle .card .card-header {
    padding: 0;
    border-radius: 4px 4px 0 0;
    border: 0;
    /* background-color: #ECF6FD; */
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-radius: 13px;
}

.faqs-sec .accordionStyle .card {
    border: none;
}

.accordionStyle .card .card-header button .far {
    position: absolute;
    top: 0;
    right: 0px;
    color: #000;
    font-size: 30px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.accordionStyle .card {
    border: 1px solid #cecece;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-right: none;
}

.accordionStyle .card .card-header {
    padding: 0;
    /* border-radius: 4px 4px 0 0; */
    border: 0;
    background: transparent;
    border-top: 2px solid var(--primary-color);
}

.accordionStyle .card .card-header button {
    display: block;
    padding: 40px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat';
    width: 96%;
    text-align: left;
    position: relative;
    display: flex;
    line-height: 30px;
    justify-content: space-between;
}

.accordionStyle .card .card-header button .fas {
    position: absolute;
    top: 0;
    right: 20px;
    color: #424242;
    font-size: 1.0625rem;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordionStyle .card .card-body {
    border-radius: 0 0 4px 4px;
    padding: 0 0 20px;
    position: relative;
    top: 0;
}

.accordionStyle .card .card-body p {
    font-weight: 500;
    font-size: 14px;
    color: black;
    width: 100%;
    font-family: 'Poppins';
    line-height: 30px;
    padding-left: 2rem;
    width: 90%;
}

.accordionStyle .card .card-header button[aria-expanded='true'] i:before {
    content: '\f106';
}

.accordionStyle .card .card-header button[aria-expanded='true'] i {
    background: var(--primary-color);
    /* color: white; */
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.accordionStyle .card .card-header button[aria-expanded='true'] span {
    color: #000000;
}

.accordionStyle .card .card-header button span {
    padding-right: 13px;
}

.faq {
    padding-top: 50px;
}

footer .lst-foot li a {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

footer {
    padding: 50px 0px;
    background-color: var(--heading-color);
    /* text-align: center; */
    color: #fff;
    padding-bottom: 50px;
}

footer .lst-foot li a:hover {
    color: var(--primary-color);
}

footer .lst-foot li a i {
    margin-right: 10px;
    flex: 0 0 20px;
}

.faq .card {
    border: none;
}

.faq .last-mn {
    border-bottom: 2px solid var(--primary-color) !important;
}


/* update banner css start */

.weblemon-ban {
    background: #fced47;
    min-height: 1100px;
    display: flex;
    align-items: center;
}

.weblemon-txt {}


/* .weblemon-txt h2 {
    font-family: "NHaasGroteskDSPro-75Bd";
    font-size: 125px;
} */

.weblemon-txt h2 span {
    font-family: "NHaasGroteskDSPro-75Bd";
    color: #dd120d;
}

.weblemon-txt a {
    border: 1px solid black;
    width: 250px;
    height: 70px;
}

.weblemon-txt a i {
    margin-left: 40px;
}


/* update banner css end */


/* font-family: 'Proxima-Nova-Font'; */


/* font-family: ' Proxima-Nova-Bold'; */


/* webpage css end */


/* update banner css start */

.weblemon-ban {
    /* background: #fced47; */
    /* background: url(/images/update-banner.jpg) no-repeat; */
    background: url(/images/banner-mn.jpg) no-repeat;
    background-size: cover;
    min-height: 760px;
    background-position: top;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 50px;
    padding-top: 100px;
}

.weblemon-txt {
    padding-top: 0px;
}

.weblemon-txt h2 {
    font-size: 58px;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.weblemon-txt h2 span {
    font-family: "NHaasGroteskDSPro-75Bd";
    color: #dd120d;
}

.weblemon-txt a {
    border: 1px solid black;
    width: 250px;
    height: 70px;
    background: black;
    color: white;
}

.weblemon-txt a i {
    margin-left: 40px;
}

.weblemon-txt a:hover {
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.girl-sec {
    position: absolute;
    bottom: -160px;
}


/* footer .lst-foot li:nth-child(1) a:before {
    content: '';
    position: absolute;
    background: #fff100;
    width: 5px;
    height: 30px;
    right: -35px;
    bottom: 15px;
} */

footer .lst-foot li {
    position: relative;
    padding: 0px 0px 25px;
}


/* .girl-sec img {
    animation: ling-scale infinite 2s linear;
}

@keyframes ling-scale {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.98);
    }
} */

.side-btn {
    position: fixed;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    z-index: 111;
    font-size: 18px;
    font-weight: 800;
    width: 245px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-family: 'Montserrat';
    box-shadow: 0px 10px 37.5px 12.5px rgb(33 0 100 / 25%);
    transform: rotate(-90deg);
}

body.modal-open {
    padding-right: 0px!important;
}

.side-btn.open_model {}

.side-btn span {}


/* popup css start */

.popup_form {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
}

.popup_form .close_popup {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: center;
}

.popup_form .close_popup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--black);
    background: var(--primary-color);
    line-height: 1;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50px;
}

.small,
small {
    font-size: .875em;
}

.popup_form .title {
    color: #000;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

.popup_form .c_field {
    background: 0 0;
    border: 2px solid #a6a8af;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 12px;
    border-radius: 5px;
    color: #000;
    font-size: 13px;
}

.popup_form .btn_green {
    padding: 10px;
    font-size: 15px;
    width: 150px;
    height: auto;
    letter-spacing: .8px;
    background: var(--primary-color);
    border: 1px solid transparent;
    color: black;
}

.popup_form .btn_green:hover,
.popup_form .close_popup:hover {
    color: #fff;
    background: #000;
}

.popup_form .form-check label {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    letter-spacing: .3px;
}

.popup_form .form-check {
    margin-bottom: 16px;
}

.popup_form .btn_green:hover {
    color: black;
    border: 1px solid;
}

.popup_form .btn_green:hover {
    color: white;
}


/* popup css end */


/* update banner css end */


/* font-family: 'Proxima-Nova-Font'; */


/* font-family: ' Proxima-Nova-Bold'; */


/* webpage css end */


/* website page css start */

.website-banner {
    /* background: url(/images/website/web-banner.jpg) no-repeat; */
    background: url(/images/website/web-bann2.png) no-repeat;
    background-size: cover;
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.web-txt {}

.web-sides {
    position: absolute;
    right: -30px;
    bottom: 0px;
    max-width: 50%;
}

.web-sides img {
    -webkit-animation: upDown 2s infinite;
    max-height: 800px;
}

@-webkit-keyframes upDown {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.web-txt h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    font-family: 'Montserrat';
}

.web-txt h1 {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #27273d;
    line-height: 72px;
}

.web-txt h1 span {
    color: #27273d;
}

.web-txt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Poppins';
    /* padding-top: 15px; */
    line-height: inherit;
}

.web-txt a {
    width: 300px;
    height: 70px;
    background: var(--black);
    color: var(--white);
    margin-top: 30px;
}

.web-txt a:hover {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.web-txt a i {
    margin-left: 30px;
}

.web-sec2 {
    padding: 0px 0px 100px;
    background: none;
}

.call-web {
    background: url(/images/website/cta-banner.jpg) no-repeat;
    background-size: cover;
    min-height: 550px;
    /* background-position: bottom; */
    padding: 50px 0px 0px;
}

.cta-txt {
    /* padding: 100px 0px; */
}

.cta-txt h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 75px;
}

.cta-txt h2 span {
    color: var(--primary-color);
    text-transform: uppercase;
}

.cta-txt p {
    color: var(--white);
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 10px 0px;
}

.cta-txt h6 {
    font-size: 28px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 20px 0px;
}

.cta-txt a {
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Montserrat';
}

.dev-web {
    background: none;
    /* z-index: 11; */
}

.dev-web .develop-img {
    margin: 0;
}

.procedure-sec {
    padding: 100px 0px 110px;
}

.procedure-sec .row {
    justify-content: space-between;
    align-items: center;
}

.procedure-sec .nav-pills .nav-link {
    border-bottom: 1px solid #bfbfbf;
    font-size: 22px;
    color: var(--black);
    font-family: 'Montserrat';
    padding: 20px 10px;
    border-radius: 0px;
    font-weight: 700;
}

.procedure-sec .nav-pills .nav-link.active {
    background: var(--primary-color);
    border-radius: 10px;
    border-bottom: none;
}

.proc-txt h4 {
    font-size: 18px;
    font-weight: 500;
    width: 85%;
    padding-bottom: 20px;
    line-height: 35px;
}

.proc-txt {
    padding-top: 60px;
}

.packages-mn span {
    position: absolute;
    right: 5px;
    top: 0;
    font-family: 'Montserrat';
    display: block;
    font-size: 30px;
    font-weight: bold;
    /* opacity: 0; */
    transition: 0.2s;
}

.packages-mn span b {
    font-size: 30px;
    position: relative;
    top: -15px;
}

.packages-mn:hover span {
    opacity: 1;
}


/* website page css end */


/* digital marketing page css start */

.digital-marketing {
    /* background: url(/images/marketing/market-banner.jpg) no-repeat; */
    background: url(/images/marketing/market-bann1.jpg) no-repeat;
    background-size: cover;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.cta-digital {
    background: url(/images/marketing/cta-banner.jpg) no-repeat;
    background-size: cover;
    min-height: 500px;
    background-position: center;
    padding: 100px 0px 50px;
}

.marketing-bg {
    position: absolute;
    right: 80px;
    bottom: 0;
    max-width: 50%;
}

.marketing-bg img {
    -webkit-animation: upDown 2s infinite;
    max-height: 700px;
}

@-webkit-keyframes upDown {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.digital-txt {}

.digital-txt h2 {
    font-size: 60px;
    color: var(--white);
    font-weight: 700;
}

.digital-txt h2 span {
    color: var(--primary-color);
    text-transform: uppercase;
}

.digital-txt p {
    color: var(--white);
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    /* margin: 10px 0px; */
}

.digital-txt h6 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 20px 0px;
}

.digital-txt a {
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Montserrat';
}

.digital-process {
    padding: 100px 0px;
}

.process-txt {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #82a3d6;
    padding: 80px 40px 60px;
    min-height: 420px;
}

.process-txt h4 {
    color: #010000;
    font-size: 24px;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 20px;
    font-weight: 700;
}

.process-txt p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    padding-top: 15px;
}

.process-txt:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transition: 0.5s all;
}

.digital-process .main-head {
    padding-bottom: 40px;
}


/* digital marketing page css end */


/* social media css start */

.social-banner {
    background: #ffdd2c;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.web-txt p b {
    font-size: 36px;
}

.social-sd {
    position: absolute;
    right: 60px;
    top: 80px;
    max-width: 50%;
}

.social-sd img {
    max-height: 800px;
    -webkit-animation: upDown 2s infinite;
}

@-webkit-keyframes upDown {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.cta-social {
    background: url(/images/media/cta-social.jpg) no-repeat;
    background-size: cover;
    min-height: 500px;
    padding: 100px 0px 50px;
    background-position: center;
}

.social-txt h2 {
    font-size: 60px;
    color: var(--white);
    font-weight: 700;
}

.social-txt h2 span {
    color: var(--primary-color);
    text-transform: uppercase;
}

.social-txt p {
    color: var(--white);
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 10px 0px;
}

.social-txt h6 {
    font-size: 28px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 20px 0px;
}

.social-txt a {
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Montserrat';
}

.work-social {
    padding: 100px 0px;
}

.socialwork-txt {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #000;
    padding: 40px 40px 30px;
    min-height: 300px;
    margin-bottom: 20px;
}

.socialwork-txt h4 {
    color: #010000;
    font-size: 22px;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 10px;
    font-weight: 700;
}

.socialwork-txt p {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins';
    padding-top: 15px;
}

.socialwork-txt:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transition: 0.5s all;
}

.work-social .main-head {
    padding-bottom: 50px;
}


/* social media css end */


/* SSL css start */

.ssl-banner {
    background: url(/images/ssl/banner-ssl.jpg) no-repeat;
    background-size: cover;
}

.ssl-banner .web-sides {
    right: 230px;
}

.ssl-request {
    padding: 100px 0px;
}

.ssl-request .row {
    justify-content: space-between;
}

.ssl-request .nav-pills {}

.ssl-request .nav-pills .nav-link {
    font-size: 48px;
    font-family: 'Proxima-Nova-Font';
    color: #d4d4e3;
    background: transparent;
    line-height: 1.0;
    font-weight: 900;
    padding: 25px 0px;
    position: relative;
}

.ssl-request .nav-pills .nav-link.active {
    color: var(--black);
}

.ssl-request .nav-pills .nav-link:nth-child(1).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 45%;
    top: 50%;
    transform: translate(-45%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-request .nav-pills .nav-link:nth-child(2).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 45%;
    top: 50%;
    transform: translate(-45%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-request .nav-pills .nav-link:nth-child(3).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 45%;
    top: 50%;
    transform: translate(-45%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-request .nav-pills .nav-link:nth-child(4).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 35%;
    top: 50%;
    transform: translate(-35%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-request .nav-pills .nav-link:nth-child(5).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 30%;
    top: 50%;
    transform: translate(-30%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-request .nav-pills .nav-link:nth-child(6).active:before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 90px;
    height: 80px;
    left: 25%;
    top: 50%;
    transform: translate(-25%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.ssl-txt h2 {
    font-size: 72px;
    font-weight: 900;
    color: var(--black);
}

.ssl-txt p {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Proxima-Nova-Font';
    padding: 10px 0px;
}

.ssl-txt p span {}

.ssl-txt ul li {
    font-size: 18px;
    font-weight: 600;
    color: black;
    list-style: disc;
}

.ssl-txt ul {
    padding-top: 30px;
}

.ssl-help {
    padding: 100px 0px 120px;
    background: #f5f5fa;
}

.ssl-help .row {
    justify-content: space-between;
    align-items: center;
}

.secure-mn h4 {
    font-size: 50px;
    font-family: 'Montserrat';
    color: var(--black);
    line-height: 58px;
    padding-bottom: 15px;
    font-weight: 700;
}

.secure-mn p {
    color: var(--black);
    font-size: 16px;
    font-family: 'Poppins';
    padding-bottom: 15px;
    font-weight: 500;
}

.ssl-help .main-head {
    padding-bottom: 30px;
}

.secure-mn a {
    width: 300px;
    height: 70px;
    font-size: 18px;
}

.secure-mn a i {
    margin-left: 40px;
}

.rank-mn {
    padding: 40px 30px;
    transition: 0.5s;
    min-height: 290px;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.rank-mn span {
    font-size: 60px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Montserrat';
    line-height: 1;
}

.rank-mn h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.rank-mn:hover {
    background: var(--primary-color);
}

.rank-mn span {
    display: block;
}

.rank-mn span b {
    margin: -15px;
    padding: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.rank-mn:hover b {
    color: var(--black);
}

.cta-ssl {
    background: url(/images/ssl/cta-bann3-1.jpg) no-repeat;
    background-position: center;
    padding-top: 100px;
}


/* SSL css end */


/* domain css start */

.domain-banner {
    background: var(--primary-color);
}

.domain-banner .web-sides {
    position: absolute;
    right: 0px;
    bottom: -50px;
    max-width: 50%;
}

.search {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

.search input {
    height: 80px;
    width: 570px;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
    background: transparent;
    border: 2px solid black;
    padding: 0px 30px;
}

.search .searchButton {
    height: 80px;
    background: black;
    color: white;
    font-size: 35px;
    width: 100px;
    border: 1px solid black;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    margin-left: -20px;
}

.search .searchButton i {}

.search input::placeholder {
    color: black;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.domain-price {
    padding: 100px 0px;
}

.price-mn {
    padding: 40px 40px;
    border-radius: 10px;
    background-color: rgba(245, 245, 245, 0);
    border: 1px solid var(--black);
    transition: 0.5s;
    margin-bottom: 30px;
}

.price-mn h4 {
    font-size: 60px;
    color: var(--black);
}

.price-mn h4 b {
    color: var(--primary-color);
}

.price-mn p {
    font-size: 18px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
}

.price-mn span {
    font-size: 18px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
}

.price-mn h6 {
    font-size: 60px;
    color: var(--black);
}

.price-mn h6 small {
    font-size: 18px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
}

.price-mn a {
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 5px;
    height: 60px;
    font-size: 18px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.price-mn:hover h4 {
    color: var(--white);
}

.price-mn:hover {
    background: var(--black);
}

.price-mn:hover p {
    color: var(--white);
}

.price-mn:hover span {
    color: var(--white);
}

.price-mn:hover h6 {
    color: var(--white);
}

.price-mn:hover h6 small {
    color: var(--white);
}

.price-mn:hover a {
    background: var(--primary-color);
}

.online-success {
    padding: 100px 0px;
    background: #f5f5fa;
    position: relative;
}

.online-mn img {
    border-radius: 50%;
    width: 680px;
    height: 630px;
}

.online-mn {
    position: relative;
    z-index: 1;
}

.online-mn:after {
    content: '';
    background: var(--primary-color);
    position: absolute;
    width: 673px;
    height: 625px;
    left: 50px;
    top: 10px;
    border-radius: 50%;
    z-index: -1;
}

.online-success .row {
    align-items: center;
}

.online-txt {}

.online-txt h2 {
    font-size: 60px;
    color: var(--black);
    font-weight: 700;
    line-height: 1;
}

.online-txt p {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins';
    padding-top: 30px;
    line-height: 35px;
}

.online-txt a {
    width: 300px;
    height: 65px;
    background: var(--black);
    color: var(--white);
    margin-top: 50px;
}

.online-txt a i {
    margin-left: 40px;
}

.online-txt a:hover {
    background: var(--primary-color);
    color: var(--black);
}

.online-success .main-head {
    padding-bottom: 30px;
}

.cta-domain {
    /* background: url(/images/domain/domain-cta.jpg) no-repeat; */
    min-height: 500px;
    background-position: center;
}

.get-sec {
    background: var(--primary-color);
    padding: 100px 0px;
}

.get-mn h4 {
    font-size: 30px;
    color: var(--black);
    font-weight: 700;
    padding-top: 20px;
    font-family: 'Montserrat';
}

.get-mn p {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins';
    padding-top: 10px;
    line-height: 32px;
}

.get-sec .main-head {
    padding-bottom: 30px;
}

.search:before {
    content: '';
    position: absolute;
    width: 85%;
    left: 0;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(10px) brightness(159%);
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
}

.domain-mob {
    opacity: 0;
}


/* domain css end */


/* webhosting css start */

.webhost-banner {
    background: #ffdd2c;
}

.webhost-sd {
    right: 0px;
}

.perform-sec {
    padding: 100px 0px 0px;
}

.perform-sec .main-head p {
    width: 70%;
    font-size: 20px;
}

.perform-mn {
    text-align: center;
    padding: 30px;
    transition: 0.5s;
    border-radius: 25px;
    border: 1px solid transparent;
    min-height: 420px;
}

.perform-mn h4 {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Montserrat';
    padding-top: 40px;
}

.perform-mn p {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat';
    padding-top: 20px;
    line-height: 30px;
}

.perform-sec .main-head {
    padding-bottom: 40px;
}

.perform-mn:hover {
    border-radius: 25px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 50px 50px 0px rgba(79, 91, 162, 0.1);
    border: 1px solid var(--primary-color);
}

.perform-mn .host1,
.perform-mn .host2,
.perform-mn .host3 {
    display: none;
}

.perform-mn:hover .host1,
.perform-mn:hover .host2,
.perform-mn:hover .host3 {
    display: unset;
}

.perform-mn:hover .host-first {
    display: none;
}

.webhost-package {
    padding: 100px 0px 100px;
    background: none;
}

.cta-webhost {
    background: #191821;
    padding: 50px 0px;
    position: relative;
    min-height: 490px;
    /* overflow: hidden; */
}

.platform-sec {
    padding: 140px 0px 100px;
}

.platform-sec .row {
    justify-content: space-between;
}

.platform-mn {}

.platform-mn h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}

.platform-inn {
    padding-top: 10px;
}

.platform-inn h4 {
    font-size: 22px;
    font-weight: 600;
    /* padding-bottom: 10px; */
    display: flex;
    align-items: start;
}

.platform-inn p {
    font-size: 18px;
    padding-bottom: 10px;
    line-height: 32px;
    padding-left: 50px;
    font-weight: 400;
}

.callnow {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
}


/* webhosting css end */


/* email marketing css start */

.mailmarket-bann {
    background: url(/images/email/email-banner.jpg) no-repeat;
}

.email-sd {
    right: 200px;
    bottom: -20px;
}

.fruit-sec {
    padding: 100px 0px;
}

.fruit-sec .main-head {
    padding-bottom: 40px;
}

.fruit-mn {
    text-align: center;
}

.fruit-mn h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-top: 15px;
    width: 85%;
    margin: auto;
}

.offer-sec {
    position: relative;
    padding: 70px 0px;
}

.offer-sec .container {
    /* padding-top: 100px; */
}

.offer-sec .row {
    justify-content: space-between;
    align-items: center;
}

.offer-mn {}

.offer-mn h4 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
}

.offer-mn p {
    font-size: 15px;
    font-family: 'Poppins';
    color: var(--black);
    padding-top: 10px;
    font-weight: 500;
    line-height: 30px;
}

.offer-sec .main-head {
    padding-bottom: 60px;
}

.offer-mn p:after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 100px;
    height: 7px;
    left: 14px;
    bottom: -10px;
}

.offer-sec .container:before {
    content: '';
    background: #F5F5F9;
    height: 500px;
    width: 1170px;
    position: absolute;
    z-index: -1;
    top: 0;
}

.cta-email {
    /* background: #1c2c32; */
    background: url(/images/email/worst-banner.png) no-repeat;
    padding: 90px 0px 0px;
    position: relative;
    background-size: cover;
    min-height: 400px;
}

.cta-email .cta-txt h2 span {
    text-transform: none;
}

.email-ct-inner {
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
}

.getemail {
    position: absolute;
    top: -40px;
    left: 0;
}

.worthemail {
    position: absolute;
    top: -40px;
    right: 0;
}


/* email marketing css end */


/* top bar css start */

.topbar {
    background: #27273d;
    /* padding: 10px 0px; */
}

.topbar ul {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
    /* gap: 30px; */
    padding: 10px 0px;
    /* padding-right: 20px; */
}

.topbar ul li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins';
    transition: 0.5s;
}

.topbar ul li a:hover {
    color: var(--primary-color);
}


/* top bar css end */


/* update ssl work css start */

.ssl-work {
    padding: 100px 0px;
}

.ssl-work .main-head {
    padding-bottom: 40px;
}

.works-txt {}

.works-txt h4 {
    font-size: 48px;
    color: var(--black);
    font-family: 'Proxima-Nova-Font';
}

.works-txt p {
    /* font-family: 'Proxima-Nova-Basic-Font'; */
    font-family: 'Proxima-Nova-Font';
    font-size: 18px;
    color: var(--black);
    padding-top: 30px;
}

.workroad .number-work {
    background: var(--primary-color);
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    font-family: 'Proxima-Nova-Font';
    border-radius: 50%;
    margin: auto;
}

.workroad {
    text-align: center;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    display: block;
}

.line1 {
    width: 5px;
    height: 60px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.line2 {
    width: 5px;
    height: 140px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.workTwo,
.workFour,
.workSix {
    text-align: end;
}

.ssl-img1,
.ssl-img3,
.ssl-img5 {
    text-align: end;
}

.ssl-img1,
.ssl-img3,
.ssl-img5,
.ssl-img2,
.ssl-img4,
.ssl-img6 {
    margin: 0;
}

.ssl-banner .web-sides img {
    -webkit-animation: upDown 2s infinite;
    max-height: 600px;
}

.trust-mn h2 {
    font-size: 42px;
    color: black;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 700;
}

.partner-sec {
    padding: 100px 0px 20px;
}

.trust-mn {
    display: flex;
    justify-content: space-between;
}

.trust-mn ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-mn ul li img {
    filter: grayscale(1);
    transition: 0.5s;
}

.trust-mn ul li img:hover {
    filter: unset;
}

.weblemon-txt ul {
    list-style: none;
    width: 85%;
    padding-left: 0px;
    margin-bottom: 10px;
}

.weblemon-txt ul li {
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: start;
}

.form-mn h2 span {
    background: var(--primary-color);
}

.price-sec h4 {
    font-size: 40px;
    font-family: 'Montserrat';
    color: var(--black);
    font-weight: 700;
    line-height: 38px;
}

.price-sec {
    display: flex;
    align-items: center;
    margin: 20px 0px;
}

.price-sec span {
    font-size: 90px;
    font-family: 'Montserrat';
    line-height: 1;
    color: #ea0f01;
    font-weight: 800;
}

.rate-pr p {
    font-size: 40px;
    color: #071f8a;
    font-family: 'Montserrat';
    text-align: end;
    text-decoration: line-through;
    font-weight: 700;
}

.webhost-package .packages-mn {
    min-height: 100%;
}

.webhost-package .packages-mn span b,
.seo-package .packages-mn span b,
.social-pack .packages-mn span b,
.home-pack .packages-mn span b {
    font-size: 20px;
    position: relative;
    top: -15px;
    display: block;
    color: #c1243d;
    text-align: right;
    font-weight: 800;
}

.packages-mn span b {
    top: -8px;
}

.web-sec2 .packages-mn {
    min-height: 100%;
}

.seo-package .row {
    justify-content: center;
}

.social-pack .row {
    justify-content: center;
}

.develop-sec .nav-pills {
    justify-content: center;
    gap: 40px;
    border: none;
    padding-bottom: 20px;
}

.develop-sec .nav-pills .nav-item .nav-link {
    border: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-family: 'Montserrat';
    font-weight: 700;
}

.develop-sec .nav-pills .nav-item .nav-link.active {
    background: transparent;
}

.develop-sec .nav-pills .nav-item .nav-link.active:after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    height: 6px;
    bottom: 10px;
    left: 10px;
    border-radius: 5px;
}

.develop-sec .nav-pills .nav-item {
    position: relative;
}

.home-pack .packages-mn {
    min-height: 570px;
}

.develop-slider .slick-prev.slick-arrow i {
    font-size: 4rem;
    color: black;
}

.develop-slider .slick-next.slick-arrow i {
    font-size: 4rem;
    color: black;
}

.develop-slider .slick-next:before,
.develop-slider .slick-prev:before {
    display: none;
}

.develop-slider .slick-next {
    right: 4rem;
}

.develop-slider .slick-prev {
    left: 4rem;
}

.sm-slider .slick-prev.slick-arrow i {
    font-size: 4rem;
    color: black;
}

.sm-slider .slick-next.slick-arrow i {
    font-size: 4rem;
    color: black;
}

.sm-slider .slick-next:before,
.sm-slider .slick-prev:before {
    display: none;
}

.sm-slider .slick-next {
    right: -4rem;
}

.sm-slider .slick-prev {
    left: -5rem;
}

.develop-img img {
    border-radius: 30px;
    margin: auto;
}

.Ssl-Sec .packages-mn span b {
    font-size: 18px;
    position: relative;
    top: -15px;
    display: block;
    text-align: right;
    font-weight: 800;
    color: #c1243d;
}

.Ssl-Sec .row {
    justify-content: center;
}

.devv-mn img {
    border-radius: 10px;
}

.devv-mn h4 {
    font-size: 30px;
    font-family: 'MONTSERRAT';
    padding-top: 30px;
    font-weight: 700;
}

.devv-mn p {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 32px;
}

.devv-mn p span {
    font-family: 'Poppins';
    font-weight: 600;
}

.Email-sec .packages-mn span b {
    font-size: 30px;
    position: relative;
    top: -5px;
    display: unset;
}

footer h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
}

footer p {
    color: white;
    font-size: 14px;
    font-family: 'Poppins';
    padding-top: 40px;
    font-weight: 400;
}

footer .links li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    font-family: 'poppins';
    display: block;
    padding-bottom: 15px;
}

footer .links li a:hover {
    color: var(--primary-color);
}

footer .logo-foot img {
    width: 220px;
}

footer .socialIo {
    display: flex;
    align-items: center;
    justify-content: left;
    /* gap: 40px; */
    padding: 0px 0px 10px;
}

footer .socialIo li a {
    color: black;
    background: var(--primary-color);
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

footer .socialIo li {
    padding: 0px 30px 0px 0px;
}

footer .socialIo li .fb {
    background: #3b5998;
    color: white;
}

footer .socialIo li .twitr {
    background: #00acee;
    color: white;
}

footer .socialIo li .insta {
    background: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
    border-color: #d6249f;
    color: white;
}

footer .socialIo .linkedin {
    background: #0e76a8;
    color: white;
}

footer .socialIo li a:hover {
    background: var(--primary-color);
    color: black;
}

.combo-packages .main-head {
    padding-top: 0;
    padding-bottom: 50px;
}

.combo-packages .packages-mn span b {
    font-size: 30px;
    position: relative;
    top: -15px;
    display: block;
    text-align: right;
}

.combo-packages .row:nth-child(3) .nav-tabs,
.combo-packages .row:nth-child(4) .nav-tabs,
.combo-packages .row:nth-child(5) .nav-tabs {
    padding-top: 50px;
}

.combo-packages .row:nth-child(6),
.combo-packages .row:nth-child(7) {
    padding-top: 100px;
}

.combo-ban {
    background: var(--primary-color);
    /* background: #f9d439; */
}

.combo-ban .web-txt h1 span {
    color: #fd5900;
}

.combo-ban .web-sides {
    position: absolute;
    right: 130px;
    bottom: -40px;
    max-width: 50%;
}

.package-sec .nav-tabs .nav-item .nav-link i.fa-brands.fa-wordpress {
    color: #21759b;
}

.package-sec .nav-tabs .nav-item .nav-link i.fa-brands.fa-shopify {
    color: #96bf48;
}

.package-sec .nav-tabs .nav-item .nav-link .fa-brands.fa-magento {
    color: #f46f25;
}

.package-sec .nav-tabs .nav-item .nav-link .fa-brands.fa-php {
    color: #8993be;
}

.home-pack .row {
    justify-content: center;
}

.home-pack .secondrow {
    /* justify-content: center; */
    margin-top: 70px;
}

.contact_form input,
.contact_form textarea {
    font-size: 16px;
    color: #333;
    width: 100%;
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    border-radius: 5px;
    line-height: 25px;
}

.contact_form button {
    width: 200px;
    border: 1px solid var(--primary-color);
}

.contact_form button:hover {
    border-color: black;
}

.contact_form textarea {
    height: 180px;
}

.head-sec h3 {
    font-size: 48px;
    font-weight: 700;
}

.head-sec p {
    font-size: 20px;
    line-height: 1.6;
}

.web-sec2 .row {
    justify-content: center;
}

.show-mn {
    padding-bottom: 30px;
}

.show-mn img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    max-width: 100%;
}

.combo-packages .packages-mn h4 {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    max-width: 73%;
}

.combo-packages .packages-mn h5 {
    font-size: 24px;
    padding-top: 0px;
    font-weight: 600;
}

.packages-mn:hover h5 {
    color: var(--white);
}

.combo-packages .packages-mn ul {
    height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}

.combo-packages .packages-mn {
    min-height: 700px;
    margin-bottom: 40px;
}


/* width */

.packages-mn ul::-webkit-scrollbar {
    width: 10px;
}


/* Track */

.packages-mn ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}


/* Handle */

.packages-mn ul::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.packages-mn ul {
    height: 330px;
    overflow: scroll;
    overflow-x: hidden;
}

.webhost-package .packages-mn ul {
    overflow: hidden;
}

.sm-img {
    display: flex;
    align-items: center;
}

.web-sec2 .main-head {
    padding: 0px 0px 40px;
}

a .home-pack .main-head {
    padding-bottom: 40px;
}

.home-pack .pack-heads {
    padding-bottom: 20px;
    padding-top: 0px;
}

.home-pack .nav-pills {
    justify-content: center;
    gap: 10px;
}

.home-pack .nav-pills .nav-item .nav-link {
    color: black;
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 700;
    background: #eee;
    border-radius: 5px;
}

.home-pack .nav-pills .nav-item .nav-link.active {
    background: var(--primary-color);
}

.comments-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.like-bar {
    display: flex;
    align-items: center;
}

.like-bar p {
    padding: 0 7px;
    margin: 0;
}

.bar-mn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 80px;
}

.comments-bar p {
    margin: 0;
    font-size: 13px;
}

.comments-bar p:last-child {
    padding-left: 15px;
}

.media-slider .slick-slide {
    /* padding: 10px; */
    /* text-align: center; */
    margin-right: 5px;
    margin-left: 5px;
}

.media-slider {
    margin: 10px -5px;
}


/* .social-slider .slick-track {
    display: flex;
    justify-content: center;
} */

.tab-content>.tab-pane {
    display: block;
    height: 0px;
    overflow: hidden;
}

.tab-content>.active {
    height: auto;
}


/* update ssl work css end */


/* update seo css section  start */

.develop-img .seo-cont {
    position: relative;
}

.develop-img .seo-cont figcaption {
    position: absolute;
    bottom: 40px;
    left: 190px;
}

.develop-img .seo-cont figcaption h4 {
    font-size: 48px;
    font-weight: 600;
    color: white;
}

.develop-img .seo-cont figcaption p {
    font-size: 18px;
    color: white;
    font-weight: 500;
}


/* update seo css section end */


/* font-family: 'Proxima-Nova-Font'; */


/* font-family: ' Proxima-Nova-Bold'; */

section.terms-privacy-content {
    padding: 100px 0px;
}

section.terms-privacy-content p {
    margin-bottom: 20px;
}

section.terms-privacy-content ul {
    padding-left: 15px;
}

section.terms-privacy-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: black;
}

section.terms-privacy-content .sub-heading {
    margin-top: 30px;
}

section.terms-privacy-content a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline!important;
}

.rate-pr {
    margin-left: 30px;
}

header .form-inline .themebtn {
    width: 150px;
    font-size: 15px;
}

.package-sec .nav-tabs .nav-item .nav-link i {
    margin-right: 10px;
}

.weblemon-txt ul li i {
    background: #c1243d;
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 6px;
    font-size: 12px;
    color: white;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.online-txt>p:nth-child(3) {
    padding-top: 0px;
    margin: 0;
}

.digital-marketing .web-txt h1 {
    font-size: 50px;
    line-height: 60px;
}

.show_loader:after {
    content: "";
    background: url(/images/loader.gif);
    width: 18px;
    display: inline-block;
    height: 18px;
    background-size: cover;
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -4px;
}

.domain-search button .book-now {
    display: none;
}

.domain-search input.invalid {
    border: 2px solid red;
}

.domain-search button.book-now-active {
    background: #fe0053!important;
}

.domain-search button.book-now-active .check-a {
    display: none;
}

.domain-search button.book-now-active .book-now {
    display: block;
}

.domain-loader {
    position: absolute;
    right: 0px;
    width: 50px;
    height: 50px;
    right: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 16px;
    transition: 0.2s;
}

.domain-mob {
    position: relative;
}

.domain-search .txt-find-site {
    flex: 1;
    padding-right: 80px;
}

.domain-loader img {
    width: 100%;
    position: absolute;
}

.domain-loader i {
    position: absolute;
    font-size: 25px;
}

.domain-loader i.fa-times {
    color: red;
}

.domain-loader i.fa-check {
    color: green;
}

.domain-loader i,
.domain-loader img {
    display: none;
}

.domain-loader.s-d-loader img,
.domain-loader.c-d-loader i.fa-check,
.domain-loader.nf-d-loader i.fa-times {
    display: block;
}

.domain-search-wrapper {
    width: 100%;
}

.domain-status {
    background: white;
    transition: 0.5s;
    display: none;
}

.domain-status-head {
    font-size: 14px;
    font-weight: 600;
    color: white;
    padding: 5px 10px;
    background: #09757a;
}

.domain-status-body {
    padding: 20px;
    font-size: 24px;
}

.domain-status-footer {
    padding: 10px;
    text-align: right;
    border-top: 1px solid #e9e9e9;
}

.notava-domain {
    display: block;
}

.notava-domain .domain-status-head {
    background: #db4343;
}

.notava-domain .domain-status-footer {
    display: none;
}

.domain-status.ava-domain .domain-status-head {
    background: #00a92c;
}

.domain-status.ava-domain .domain-status-footer {
    display: block;
}

.domain-status-name b {
    font-weight: 500;
    color: #03a717;
}

.domain-status-name span {
    font-weight: 800;
}

.notava-domain .domain-status-name b {
    color: red;
}

.ava-domain {
    display: block;
}

.domain-loader img {
    animation: revert;
}

.slick-track {
    margin: 0px;
}

section.package-sec.web-sec2.combo-packages {
    padding-top: 70px;
}

@media(max-width:991px) {
    .domain-status-body {
        font-size: 20px;
    }
}

@media(max-width:575px) {
    .domain-loader {
        right: 5px;
        top: 10px;
        height: 31px;
        width: 25px;
    }
    .domain-loader i {
        font-size: 16px;
    }
    .domain-search .txt-find-site {
        min-height: 50px;
    }
}

label.error {
    display: none!important;
}

input.error {
    border: 2px solid red!important;
}
.topbar .bar-info li {
    padding: 5px 20px;
    position: relative;
}
.bar-info li:nth-child(1):after {
    content: '';
    position: absolute;
    background: #ffdd2c;
    height: 15px;
    width: 2px;
    right: 0;
    top: 10px;
}


/* ranked css start */
.ranked-sec {
    background: url(/images/test-bg.png) no-repeat;
    background-size: cover;
    /* min-height: 800px; */
    background-position: top;
    padding: 70px 0px;
}
.rank-inner {
    text-align: center;
}
.rank-inner h4 {
    font-size: 45px;
    font-family: 'NHaas-95';
    font-weight: 800;
    line-height: 60px;
    padding-top: 20px;
}

.rank-inner p {
    color: var(--heading-color);
    font-size: 18px;
    font-family: 'Proxima-Nova-Basic-Font';
    color: #27273d;
    padding: 20px 0px;
    line-height: 25px;
    font-weight: 500;
}
.client-say h6 {
    font-size: 30px;
    font-family: 'NHaas-95';
    padding-bottom: 10px;
}

.client-say ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.stars .checked {
    color: #ffdd2c;
    font-size: 20px;
}

.stars small {
    font-size: 24px;
    color: var(--heading-color);
    font-family: 'NHaasGrotesk';
    font-weight: 900;
    margin-left: 10px;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quote-top {
    text-align: right;
    padding-bottom: 10px;
}
.test-inner {
    padding: 60px 30px 40px;
    border: 1px solid rgb(39, 39, 61);
    border-radius: 10px;
    min-height: 300px;
    margin-bottom: 30px;
}

.test-inner p {
    font-size: 16px;
    font-family: 'NHaas-65';
    color: var(--heading-color);
    font-weight: 400;
}

.test-inner span {
    color: var(--heading-color);
    font-size: 16px;
    font-family: 'NHaasGrotesk';
    font-weight: 600;
    display: block;
    margin-top: 20px;
}
.ranked-sec .row {
    align-items: center;
}
/* ranked css end */
/* faq css start */
/* faq section css start */

.faq-sec {
    padding: 100px 0px;
    background: url(/images/faq-bg.jpg) no-repeat;
    background-size: cover;
}

.accordionStyle .card .card-header button.btn.btn-link.collapsed {
    /* background-color: #ECF6FD; */
    color: var(--heading-color);
    padding-left: 1rem;
}

.accordionStyle .card .card-header button.btn.btn-link {
    padding-left: 1rem;
    color: var(--heading-color);
}

.accordionStyle .card .card-header button.btn.btn-link.collapsed i {
    color: var(--heading-color);
    font-size: 30px;
}

.faqs-sec .accordionStyle .card .card-header {
    padding: 0;
    border-radius: 4px 4px 0 0;
    border: 0;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-radius: 13px;
}

.faqs-sec .accordionStyle .card {
    border: none;
}


.accordionStyle .card .card-header button .far {
    position: absolute;
    top: 0;
    right: 0px;
    color: #000;
    font-size: 30px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.accordionStyle .card {
    border: 1px solid #cecece;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-right: none;
}

.accordionStyle .card .card-header {
    padding: 0;
    border: 0;
    background: transparent;
    border-top: 1px solid var(--heading-color);
    border-radius: 0;
}

.accordionStyle .card .card-header button {
    display: block;
    padding: 40px 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'NHaasGrotesk';
    width: 96%;
    text-align: left;
    position: relative;
    display: flex;
    line-height: 30px;
    justify-content: space-between;
}

.accordionStyle .card .card-header button .fas {
    position: absolute;
    top: 0;
    right: 20px;
    color: #424242;
    font-size: 1.0625rem;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordionStyle .card .card-body {
    border-radius: 0 0 4px 4px;
    padding: 0 0 20px;
    position: relative;
    top: 0;
}

.accordionStyle .card .card-body p {
    font-weight: 400;
    font-size: 16px;
    color: var(--heading-color);
    width: 100%;
    font-family: 'NHaas-65';
    line-height: 30px;
    padding-left: 20px;
    width: 90%;
}

.accordionStyle .card .card-header button[aria-expanded='true'] i:before {
    content: '\f106';
}

.accordionStyle .card .card-header button[aria-expanded='true'] i {
    background: var(--primary-color);
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 30px;
}

.accordionStyle .card .card-header button[aria-expanded='true'] span {
    color: #000000;
}

.accordionStyle .card .card-header button span {
    padding-right: 13px;
}

.faq {
    padding-top: 80px;
}

.faq .last-mn {
    border-bottom: 1px solid #000000 !important;
}
/* faq section css start */