#support,
#one-click-btn,
.support-btn {
    border: 3px solid #557DC4;
    border-left: 3px solid #557DC4;
    padding: 5px !important;
    border-radius: 5px;
    background: linear-gradient(to right, #6858A6, #557DC4);
    color: #fff !important;
    width: 100px;
    text-align: center;
}

.support-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.1);
}

.support-card:hover {
    box-shadow: none;
    cursor: help;
}

.right-nav {
    margin-left: auto;
}

.nav-icon {
    display: none;
}

.right-nav-sm {
    display: none;
}

section {
    /* padding-top: 100px; */
    overflow: hidden !important;
}

#home {
    background: linear-gradient(to left, #6858A6, #557DC4);
    color: #fff;
    padding-top: 2rem;
}


.spc-word {
    color: #FF866B;
    /* text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8); */
    /* Light shadow */
}

.payemnt-logo {
    width: 50px;
    height: 50px;
}

h6 {
    margin: 0 !important;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 13rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more:hover #cart-icon {
    color: black;
    transition-duration: 1.5s;
}

button.learn-more #cart-icon {
    color: transparent;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #000;
    border-right: 0.125rem solid #000;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #000;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #000;
}

.pricing-card .card-body {
    padding: 0 !important;
}

.pricing-card {
    /* box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 0.5); */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    color: white;
    background: linear-gradient(to bottom, #6858A6, #557DC4);
    overflow: hidden;
}

.pricing-card:hover,
.pricing-card.active {
    /* box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 1); */
    transform: scale(1.01);
    /* cursor: pointer; */
}

.pricing-card .card-header {
    text-transform: uppercase;
}

.pricing-button {
    box-shadow: inset 0 10px 30px rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    color: white;
    background: linear-gradient(to right, #6858A6, #557DC4);
    border: 3px solid #fff;
    text-transform: uppercase;
}

.pricing-button:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    color: white !important;
}

li i {
    margin-right: 1rem;
    width: 10px;
}

.ribbon {
    position: absolute;
    top: 30px;
    /* Adjust as needed */
    right: -40px;
    /* Adjust as needed */
    transform: rotate(45deg);
    background-color: #ffffff;
    /* Ribbon color */
    color: #34006F;
    padding: 5px 40px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Optional: adds a shadow for better visibility */
    box-shadow: 2px 2px 5px rgb(255, 255, 255, 1);
}

.ribbon span {
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-list li {
    display: none;
}

.feature-list li.initial-visible {
    display: list-item;
}

.show-more,
.show-less {
    cursor: pointer;
    text-decoration: underline;
}

.badge {
    box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #34006F;
}

.badge:hover {
    box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 1);
    transform: scale(1.01);
    cursor: pointer;
}

.bordered-box {
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to top, #4D81C2, #03A8DD);
    color: white;

}

.bordered-box:hover {
    box-shadow: none;
}

.bordered-box .img-box {
    position: absolute;
    top: -50px;
    left: 15px;
    background-color: #fff;
    padding: 10px;
    width: 100px !important;
}






.support_section .box .detail-box {
    text-align: center;
    margin-top: 35px;
    width: 100%;
}

.support_section .box .detail-box h2 {
    font-weight: bold;
}

.support_section .box .detail-box p {
    margin-top: 20px;
}

.info_section {
    background: linear-gradient(to right, #6858A6, #557DC4);
    color: #ffffff;
}


.info_section .info_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 35px 25px 25px 25px;
    background-color: #ffffff;
    width: 85%;
    margin: 0 auto;
    border-radius: 5px;
}

.info_section .info_contact a {
    color: #1e1d1d;
}

.info_section .info_contact a img {
    width: 20px;
    margin-right: 10px;
}

.info_section .info_container {
    padding: 55px 0 25px 0;
}

.info_section .info_container h6 {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}

.info_section .info_container .link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info_section .info_container ul {
    padding-left: 0px;
}

.info_section .info_container ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
}

/* .info_section .info_container ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -5px;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    background-color: #ffffff;
    border: 2px solid #5793cf;
    border-radius: 100%;
} */

.info_section .info_container ul li a {
    color: #ffffff;
}

.info_section form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.info_section form input {
    width: calc(100% - 141.5px);
    background-color: #ffffff;
    padding: 7px 5px 7px 15px;
    border: none;
    outline: none;
    border-radius: 20px 0 0 20px;
}

.info_section form button {
    background-color: #5793cf;
    border: none;
    padding: 7px 30px;
    border-radius: 0 20px 20px 0;
    color: #ffffff;
    text-transform: uppercase;
    outline: none;
}

.info_section .social-box {
    margin-top: 35px;
}

.info_section .social-box img {
    margin: 0 12px;
}

/* footer section*/
.footer_section {
    padding: 20px;
}

.footer_section p {
    margin: 0;
    text-align: center;
    color: #0b0b0c;
}

.footer_section a {
    color: #0b0b0c;
}

.feature-list li {
    margin: 10px 0px;
}

.nice-hr {
    width: 100px;
    height: 5px;
    background-image: linear-gradient(to left, #653A90, #3a1460);
    text-align: left !important;
    margin: 20px 0 !important;
}

.domain-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 10px 0 rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

.domain-item:hover {
    box-shadow: none;
}

.domain-item .domain-info {
    display: flex;
    align-items: center;
}

.domain-item .domain-info img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.domain-item .domain-info .domain-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 10px;
}

.domain-item .domain-info .domain-badge {
    background-color: #8167A9;
    color: white;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.9rem;
    margin-left: 10px;
    margin-right: 5px;
}

.domain-item .domain-pricing {
    text-align: right;
    margin-right: 20px;
}

.domain-item .domain-pricing .price {
    font-size: 1.2rem;
    font-weight: 600;
}

.buy-btn {
    background-color: #653A90;
    color: #fff;
    border: #8167A9 2px solid;
}

.cus-btn {
    background-color: #8167A9;
    color: #fff;
    border: #8167A9 2px solid;
}

.domain-item .domain-pricing .retail-price {
    font-size: 0.8rem;
    color: #d2d7dc;
}

.domain-item .action-buttons {
    display: flex;
    align-items: center;
}

#hosting-price {
    font-size: larger;
    background: linear-gradient(to top, #07ABCF, #605EA8);
    width: fit-content;
    color: #fff;
}

/* .domain-item .action-buttons .btn {
    margin-left: 10px;
} */

@media (max-width: 768px) {
    .domain-item {
        flex-direction: column;
        align-items: center;
    }

    .domain-badge {
        display: none;
    }

    .domain-item .action-buttons {
        margin-top: 20px;
        /* width: 100%; */
        /* justify-content: space-between; */
    }

    .domain-item .action-buttons .btn {
        margin-left: 0;
    }
}

.one-click {
    background-color: #F7F9FD;
}

.s-line {
    width: 50%;
    text-align: center;
    height: 2px;
    background-color: #653A90;
}

/* services part start  */


.servive-part .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 30px;
}

.service-section {
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}




.service-section {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}

.service-icon i {
    font-size: 40px;
    color: #3D3467;
    margin-right: 20px;
}

.service-content {
    display: flex;
    flex-direction: column;
    /* add this property */
    align-items: center;
    /* add this property to center align the content */
    /* margin-left: 10px; */

}

.service-content h5 {
    font-weight: 600;
    margin: 0 0 8px 0;
}

.service-content p {
    margin: 0;
}

.service-content i {
    margin-right: 10px;
}

.service-section:hover {
    box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 0.5);

    border-radius: 10px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    background: linear-gradient(to right, #6858A6, #557DC4);

    color: #fff;
    transform: scale(1.05);
}

.service-section:hover i,
.service-section:hover p {
    color: #fff;
}

/* media query for mobile */
@media screen and (max-width: 767px) {
    .service-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .service-section i {
        margin-bottom: 10px;
            margin-right: 0px;
    }
}

/* services part end  */
/* Mobile Part media query  */
@media (max-width: 767px) {

    #support {
        border: none;
        padding: 5px 0px !important;
        ;
        border-radius: 0;
        background: #fff !important;
        color: #000 !important;
        text-align: left !important;
        width: fit-content;
    }

    .domain-pricing {
        text-align: left !important;
    }

    .nav-icon {
        display: inline;
    }

    .right-nav {
        margin-left: 0;
    }


    .right-nav-lg {
        display: none;
    }

    .right-nav-sm {
        display: inline-block;
    }

    .feature_section .feature_container .box.b-1,
    .feature_section .feature_container .box.b-4 {
        width: 100%;
    }

    .feature_section .feature_container .box.b-2,
    .feature_section .feature_container .box.b-3 {
        width: 100%;
    }

    .badge {
        padding: 10px;
        margin-bottom: 2rem;
    }

    #home {
        position: relative;
        /* Required for the overlay */
        background-image: url('images/home1.png');
        background-size: contain;
        background-repeat: no-repeat;
        padding-top: 0px;
        padding-top: 1rem !important;
        /* text-align: center !important; */
        background: linear-gradient(to left, #6858A6, #557DC4);
    }

    .section-heading {
        text-align: center !important;
    }

    .special-text {

        justify-content: center;
        margin-bottom: 1rem;
    }

    .left-feature {
        text-align: right !important;

    }




    .right-feature {
        text-align: left !important;
    }

    /* .cloud-hosting-home {
        padding-top: 30px !important;
        background-image: url('https://img.freepik.com/free-vector/data-network-illustration_24908-57788.jpg') !important;
    }

    .shared-hosting-home {
        padding-top: 30px !important;
        background-image: url('https://img.freepik.com/free-vector/data-network-businessman_24908-57838.jpg') !important;
    }

    .vps-hosting-home {
        padding-top: 30px !important;
        background-image: url('https://img.freepik.com/free-vector/data-network-illustration_24908-57787.jpg') !important;
    }

    .reseller-hosting-home {
        padding-top: 30px !important;
        background-image: url('https://img.freepik.com/free-vector/data-network-businessman_24908-57816.jpg') !important;
    } */
    /* navbar expand and collpase css  */
    /* .navbar-brand,
    .navbar-toggler {
        margin-bottom: 20px;
    }

    .position-fixed .navbar-brand,
    .position-fixed .navbar-toggler {
        margin-bottom: 0 !important;
    }

    .start-header {
        padding-top: 20px;
        padding-bottom: 0;
    } */


    .domain-support {
        text-align: center !important;
    }

    #home::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        /* Adjust the color and opacity as needed */
    }

    .right-side {
        display: none !important;
    }

    .why-choose {
        text-align: center !important;
        margin-bottom: 50px;
    }

    #price-table th {
        font-weight: 400;
        padding: 10px 0px;
    }

    #price-table th,
    #price-table td {
        border: none !important;
    }
}



#domain {
    box-shadow: inset 0 10px 30px 0 rgba(255, 255, 255, 0.5);
    padding: 50px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    background-color: #34006F;
    color: white !important;
}

#domain:hover {
    box-shadow: none;
}

#domain h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

#domain p {
    font-size: 1.25rem;
    color: #abb2b8;
    margin-bottom: 0px;
}

.doamin-search {
    border-radius: 50px 0 0 50px;
    box-shadow: none;
    height: 50px;
}

.form-inline .custom-select,
.form-inline .input-group {
    width: 100%;
}

.input-group-append .btn-primary {
    border-radius: 0 50px 50px 0;
    padding: 10px 20px;
    box-shadow: none;
}

.input-group-append .btn-primary:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.domain-prices-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.domain-prices {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.domain-prices span {
    display: inline-block;
    padding: 0 15px;
    font-size: 1rem;
    /* color: #c5ccd3; */
}

.input-wrapper input {
    position: relative;
    display: inline-block;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    right: 80px;
    top: 1px;
    bottom: 0;
    height: 48px;
    width: 40px;
    /* Adjust to match padding-left of .doamin-search */
    background: white;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    z-index: 5;
}

.search-btn {
    border: 3px solid blueviolet;
    border-left: 3px solid blueviolet;
    padding: 5px !important;
    border-radius: 100px;
    background-color: #653A90;
    color: #fff !important;
    width: 100px;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .help-bussiness {
        text-align: center !important;
    }

    .nice-hr-div {
        display: flex;
        justify-content: center;
    }

    .search-domain {
        margin-top: 3rem;
    }

    .domain-prices span {
        display: block;
        margin: 5px 0;
    }

    #domain {
        padding: 50px 10px;
        text-align: center !important;
    }

    .single-feature-area {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
            0 6px 20px rgba(0, 0, 0, 0.1);

        transition: transform 0.3s ease,
            box-shadow 0.3s ease;
        margin: 10px;

    }

    .why-img {
        height: 200px;
    }

    .single-feature-area,
    .single-feature-area .feature-text {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .feature-text {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .support-card img {
        text-align: center !important;
    }

    .support-card {
        margin-bottom: 50px;
        text-align: center !important;
    }

    .support-text {
        margin-bottom: 30px;
        text-align: center !important;
    }
}

.single-feature-area {
    padding: 15px;
    margin-bottom: 20px;
}

.single-feature-area:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* p {
    margin-bottom: 0 !important;
} */

a {
    text-decoration: none !important;
}

.get-offer {
    padding: 5px;
    border-radius: 100px;
    color: #653A90;
    margin-top: 5px !important;
    display: block;
    font-weight: 700;
}

.single-feature-area:hover .get-offer {
    /* border: 1px solid #492a68; */
    background: linear-gradient(to right, #07ABCF, #605EA8);

    color: #fff;
    transition-duration: 0.5s;
}

#hosting-card .single-feature-area {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    margin: 10px;
}

#hosting-card .single-feature-area:hover #hosting-price {
    background: transparent;
    color: gray;
}

#hosting-card .single-feature-area:hover {
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: none;
}

/* Whatsapp Dropdown Button */
button:focus {
    outline: none;
}

.dropbtnv {
    background-color: #ECEDF0;
    color: #000;
    padding: 5px 2px 5px 0px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    width: 145px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.dropbtnv img {
    width: 30px;
    height: 30px;
}

.dropdownv {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: inline-block;
    z-index: 50;
}

.dropdown-contentv {
    display: none;
    position: absolute;
    top: -88px;
    background-color: #000713;
    color: white;
    width: 145px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 12px 12px 0px 0px;
}

.dropdown-contentv a {
    color: white;
    padding: 10px;
    text-decoration: none;
    width: 145px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-contentv a img {
    width: 20px;
    height: 20px;
}

.border-radiusv {
    border-radius: 0px 0px 12px 12px;
}

.dropdownv a:hover {
    color: #47c656;
}

.showv {
    display: block;
}

#gmj-top-bar-notification {
    text-align: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99999;
    border-bottom: 3px dashed #eaf1f8;
    background-image: linear-gradient(to left, #0397ff, #bb41ef) !important;
    color: #fff;
    font-size: 15px;
    padding: 7px 0
}

.admin-bar #gmj-top-bar-notification {
    top: 32px
}

#gmj-top-bar-notification a {
    border-bottom: 2px dotted #fff;
    color: #fff
}

#gmj-top-bar-notification a:hover {
    border: none
}

#gmj-closebar {
    float: right;
    padding: 5px 9px;
    border-radius: 15px;
    background-color: #eee;
    color: #34495e;
    line-height: 10px;
    border: none;
    cursor: pointer;
}

.notice-inner.grid-container {
    padding: 0 20px
}

#cdown {
    display: inline-block
}

@media screen and (max-width: 425px) {
    div#gmj-top-bar-notification span {
        display: block;
    }

    #gmj-closebar {
        float: none;
        cursor: pointer;
        position: fixed;
        top: 0.6rem;
        right: 20px;
    }
}

@media screen and (max-width: 375px) {
    #gmj-closebar {
        top: 0.5rem;
        right: 5px;
    }
}

/* whatsapp float css ends  */
.gmj-logos-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.gmj-logos-logo {
    padding: 1rem;
}

.gmj-logos-logo img {
    max-height: 100px;
    /* Adjust the height as needed */
    object-fit: contain;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gmj-logos-logo img:hover {
    mix-blend-mode: difference;
}

.fa-ul li {
    padding: 0.6rem;
}

/* price table with pagination css starts  */


#price-table th {

    border: #34006F solid 2px;
}

#price-table td {
    border: #34006F solid 1px;
}

#price-table .pagination-container {
    text-align: center;
    margin-top: 20px;
    user-select: none;
}

#price-table .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 4px;
}

#price-table .pagination li {
    display: inline;
    margin: 0 5px;
}

#price-table .pagination li a,
#price-table .pagination li span {
    color: #653A90;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

#price-table .pagination li a:hover,
#price-table .pagination li span:hover {
    background-color: #e9ecef;
    cursor: pointer;
}

#price-table .pagination li.active span {
    background-color: #653A90;
    color: #fff;
    border: 2px solid #8A2BE2;
}

#price-table .pagination li span.sr-only {
    display: none;
}

/* ends  */

/* floating support starts  */
#webCifar-sidebox {
    position: fixed;
    right: 0;
    bottom: 0;
    overflow-x: clip;
    width: 300px;
    font-size: 16px;
    z-index: 5
}

#webCifar,
#webCifar .close {
    position: absolute;
    display: inline-block;
    right: 5px;
}

#webCifar {
    --color-1: #17bcb4;
    --color-2: #24252a;
    --color-3: #244044;
    --color-4: #f3f8f7;
    background: var(--color-2);
    color: var(--color-4);
    padding: 10px 17px;
    border-radius: 6px;
    font-family: "Roboto Mono", monospace;
    bottom: 5px;
    -webkit-transform: translateX(calc(100% + 5px));
    transform: translateX(calc(100% + 5px));
    -webkit-transition: transform .5s ease-out;
    transition: transform .5s ease-out;
    z-index: 4
}

#webCifar.active {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

#webCifar .close {
    height: 30px;
    width: 30px;
    top: 5px;
    padding: 5px;
    background-color: var(--color-3);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer
}

#webCifar-icon {
    position: relative;
    margin: 5px;
    cursor: pointer;
    right: -60%
}

#webCifar-icon img:nth-child(2) {
    max-width: 40px;
    background-color: #9B2F72;
    padding: 3px;
    border-radius: 10px
}

#webCifar-icon img:nth-child(1) {
    max-width: 40px;
    background-color: #00BF22;
    border-radius: 10px
}

#webCifar a {
    color: #fff
}

/* Floating support ends  */

/* choose us impresive section start  */
.chooseus-section {
    position: relative;
    background: #fff;
    /* padding: 50px 0px; */

}

.chooseus-section .sec-title {
    margin-bottom: 60px;
}

#content_block_04 .content-box .single-item {
    position: relative;
}

#content_block_04 .content-box .single-item:first-child {
    /* padding-left: 190px; */
    margin-bottom: 50px;
}



#content_block_04 .content-box .single-item .icon-box {
    position: absolute;
    top: 14px;
    width: 158px;
    height: 158px;
    line-height: 158px;
    text-align: center;
    font-size: 70px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

#content_block_04 .content-box .single-item .icon-box:before {
    position: absolute;
    content: '';
    background: #fbfbfb;
    width: 138px;
    height: 100%;
    left: 10px;
    border-radius: 10px;
}

#content_block_04 .content-box .single-item:first-child .icon-box:before {
    top: 10px;
}

#content_block_04 .content-box .single-item:last-child .icon-box:before {
    top: -10px;
}

#content_block_04 .content-box .single-item .icon-box i {
    background: -webkit-linear-gradient(-45deg, #e273ff, #504bff 100%);
    position: relative;
    color: transparent;

    -webkit-text-fill-color: transparent;
}

#content_block_04 .content-box .single-item .icon-box .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 158px;
    height: 158px;
    background-repeat: no-repeat;
}

#content_block_04 .content-box .single-item:first-child .icon-box {
    left: 0px;
}

#content_block_04 .content-box .single-item:last-child .icon-box {
    right: 0px;
}

#content_block_04 .content-box .single-item .box h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0px;
}

#content_block_04 .content-box .single-item .box h4:before {
    position: absolute;
    content: '';
    width: 55px;
    height: 2px;
    bottom: 0px;
}

#content_block_04 .content-box .single-item:first-child .box h4:before {
    left: 0px;
}

#content_block_04 .content-box .single-item:last-child .box h4:before {
    right: 0px;
}

#content_block_04 .content-box .single-item .box p {
    margin-bottom: 20px;
    line-height: 28px;
}

#content_block_04 .content-box .single-item .box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Josefin Sans', Sans-serif;
    font-weight: 600;
    color: #040535;
}

#content_block_04 .content-box .single-item .box a:hover {
    color: #5167f9;
}

#content_block_04 .content-box .single-item:first-child .box a i {
    margin-right: 10px;
}

#content_block_04 .content-box .single-item:last-child .box a i {
    margin-left: 10px;
}

/* choose us impresive section ends  */
.offer-section {
    background-color: #1d1d41;
    color: white;
    text-align: center;
    padding: 20px;
}

.offer-price {
    color: #00aaff;
    font-weight: bold;
    font-size: x-large;
}

.get-started-btn {
    background-color: #ffc107;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.text-overflow {
    max-width: 200px;
    /* Adjust the width based on your layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.right-side {
    animation: moveUpDown 2s infinite ease-in-out;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
        /* Original position */
    }

    50% {
        transform: translateY(-20px);
        /* Move up */
    }
}
