@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=Poppins&display=swap');

:root {
    /* --primary: #13C5DD; */
    --primary: #22413d;
    --secondary: #354F8E;
    --light: #2c0404;
    --dark: #1D2A4D;
}

body {
    font-family: 'PT Sans', 'Poppins', sans-serif;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.mainbtn {
    font-weight: 700;
    transition: .5s;
    border-radius: 4px;
    background: #188ef4;
    border: none;
    color: white;
}

.mainbtn:hover {
    background-color: #474e5d;
}

.appointment {
    background-color: var(--primary);
    max-width: 1280px;
    border-radius: 5px;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}
.container-fluid.pt-5.jio {
    background: linear-gradient(0deg, #ebe7ff 0%, #e1e9ff 100%);
}
.bg-secondary.rounded.p-5.m-5.mb-0 {
    background: #fff!important;
}
.row.justify-content-center.position-relative {
    padding-bottom: 70px;
}
.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {

    position: relative;
    margin-left: 30px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

/* .hero-header {
    background: url(../img/start_tps_bg.jpg) no-repeat top right;
    background-size: 100%;
    height: 440px;

} */

/* @media (min-width:240px) and (max-width:319.99px) {
    .hero-header {
        background: url(../img/mobile_banner.jpg) no-repeat top right;
        background-size: cover;
        height: 320px;
    }
}

@media (min-width:320px) and (max-width:575.99px) {
    .hero-header {
        background: url(../img/mobile_banner.jpg) no-repeat top right;
        background-size: cover;
        height: 546px;
    }
}

@media (min-width:576px) and (max-width:767.99px) {
    .hero-header {
        background: url(../img/mobile_banner.jpg) no-repeat top right;
        background-size: cover;
        height: 700px;
    }
}

@media (min-width:768px) and (max-width:991.99px) {
    .hero-header {
        background: url(../img/mobile_banner.jpg) no-repeat top right;
        background-size: cover;
        height: 792px;
    }
}

@media (min-width:992px) and (max-width:1889.99px) {
    .hero-header {
        background: url(../img/start_tps_bg.jpg) no-repeat top right;
        background-size: cover;
    }
} */

.service-item {
    position: relative;
    height: 420px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/* carausel testomonial */
#headtest {
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin: 30px 0 60px;
}

#headtest::after {
    content: "";
    width: 200px;
    position: absolute;
    margin: 0 auto;
    height: 5px;
    background: #dee2e6;
    left: 0;
    right: 0;
    bottom: -10px;
    opacity: .8;
}

.col-center {
    margin: 0 auto;
    float: none !important;
}

.carousel {
    margin: 5px auto;
    padding: 0 70px;
}

.carousel-item {
    color: #999;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 290px;
}

.carousel .item .img-box {
    width: 135px;
    height: 135px;
    margin: 0 auto;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.carousel .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.carousel .testimonial {
    padding: 30px 0 10px;
}

.carousel .overview {
    font-style: italic;
}

.carousel .overview b {
    text-transform: uppercase;
    color: #188ef4;
}

.carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none;
}

.carousel-control i {
    font-size: 68px;
    line-height: 42px;
    position: absolute;
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}

.carousel .carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    border-radius: 50%;
}

.carousel-indicators li {
    background: #999;
    border-color: transparent;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.carousel-indicators li.active {
    background: #da9191;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}


/* tas features css */
.service-26 {
    color: #000000;
    font-weight: 300;
    background: url(../img/tasbgp.png) top right no-repeat fixed;
    background-size: cover;
}

.service-26 h1,
.service-26 h2,
.service-26 h3,
.service-26 h4,
.service-26 h5,
.service-26 h6 {
    color: #000000;
}

.service-26 .font-weight-medium {
    font-weight: 500;
}

.service-26 .badge {
    line-height: 22px;
}

.service-26 .badge-info {
    background: #188ef4;
}

.service-26 .wrap-service-26 .max-box {
    max-width: 580px;
}

.service-26 a {
    text-decoration: none;
}

.service-26 .linking {
    color: #000000;
}

.service-26 .linking:hover {
    color: #316ce8;
}

.techbtn {
    background-color: #13C5DD;
    color: white;
}

.jumbotron {
    max-width: 1300px;
    margin: auto;
    background-color: #000000;
    color: white;
}


.section_second_tps {
    background-image: linear-gradient(90deg, #00daff 0%, #b2f4ff 100%);
}

.btn-color-tps {
    background: #188ef4;
    color: #ffff;
    padding: 2% 9%;
    font-size: 18px;
}

.prod_price_monitoring {
    font-size: 51px;
    color: #1b0c75;
}

.minimum_tps_paragraph {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 35px;
    color: #1b0c75;
}


/* second_section style  */
.the_third_key_para {
    font-size: 25px;
    font-weight: 400;
    padding-bottom: 35px;
    color: #1b0c75;
    margin: 0px 220px;
}

.gain_maxi_opti_arrow p {
    font-size: 20px;
    margin-left: 15px;
    font-weight: bold;
    color: #1b0c75;
}

.brand_opti_tps_head {
    font-size: 52px;
    color: #1b0c75;
    margin: 0px 355px;
    /* font-weight: 700; */
}

.brand_opti_tps_header {
    font-size: 38px;
    color: #1b0c75;
    width:100%
    /* font-weight: 700; */
}

.gain-inline-md-flexing {
    display: inline-flex;
}

.optimization_section_tps {
    background-image: linear-gradient(0deg, #ebe7ff 0%, #e1e9ff 100%);
}

/* third section style  */
.software_third_tab_section {
    font-size: 51px;
    color: #1b0c75;
}

i.bi.bi-eye {
    font-size: 55px;
    color: #00daff;
}

h2 {
    color: #1b0c75;
}

.tps_vpn_card_tab p {
    color: #1b0c75;
    font-size: 20px;
}

.tab_arrow_tps-vpn i {
    font-size: 55px;
}

.tab_button_tps_vpn:hover {
    transform: scale(1.05);
    transition: .5s;
}

.clr_btn_badge_info {
    background-color: #188ef4;
    color: #000000;
    text-decoration: none;
    padding: 0.5% 2%;
    font-size: 24px;
    color: #ffff;
}

.id_link_Seller_Discovery a {
    margin-left: 20px;
}

/* end */

.tps-fl-row-content-vpn {
    background-image: linear-gradient(360deg, #ebe7ff 0%, #e1e9ff 100%);
}

.tps_vpn_connect_link {
    font-size: 18px;
    color: blue;
    font-weight: 400;
}

/* media query  */
@media (min-width:600px) and (max-width:1025px) {
    .prod_price_monitoring {
        font-size: 29px;
    }

    .minimum_tps_paragraph {
        font-size: 20px;
    }

    .brand_opti_tps_head {
        font-size: 29px;
        margin: 0px;
    }

    .the_third_key_para {
        font-size: 20px;
        margin: 0px;
    }

    .tab_arrow_tps-vpn i {
        display: none;
    }

    .id_link_Seller_Discovery a {
        display: inline-grid;
        grid-template-columns: auto auto auto auto;
        font-size: 17px;
        margin-bottom: 11px;
        padding: 1% 4%;
    }
}

@media (min-width:320px) and (max-width:599.99px) {
    .prod_price_monitoring {
        font-size: 29px;
    }

    .minimum_tps_paragraph {
        font-size: 20px;
    }

    .brand_opti_tps_head {
        font-size: 29px;
        margin: 0px;
    }

    .the_third_key_para {
        font-size: 20px;
        margin: 0px;
    }

    .gain-inline-md-flexing {
        display: inline-block;
    }

    .tab_arrow_tps-vpn i {
        display: none;
    }

    .software_third_tab_section {
        font-size: 29px;
    }

    .tps_vpn_card_tab p {
        color: #1b0c75;
        font-size: 10px;
        padding: 0px !important;
        margin: 0;
    }

    .tps_vpn_card_tab h2 {
        color: #1b0c75;
        font-size: 18px;
    }

    i.bi.bi-eye {
        font-size: 35px;
        color: #00daff;
    }

    .id_link_Seller_Discovery a {
        display: inline-grid;
        grid-template-columns: auto auto auto auto;
        font-size: 17px;
        margin-bottom: 11px;
        padding: 1% 4%;
    }
}


/* footer css */

.footer_change {
    background: var(--primary);

}

/* .footer_change a:hover {
    color: #000;
} */

.footer_change1 a {
    color: white;
}

.footer_change1 a:hover {
    color: rgba(82, 218, 239);
}

.footer-header {
    color: #dacfcf;
    text-decoration: none;
}

.copyright_hyper {
    color: white;
}

.copyright_hyper:hover {
    color: rgba(82, 218, 239);
}

.text_style {
    color:#188ef4;
}


/* about us page css */
.about-section {
    padding: 50px;
    text-align: center;
    background: url("../img/About-us-main.jpg") no-repeat top right;
    color: rgb(0, 0, 0);
    background-size: cover;
    width: auto;
    height: auto;
}



/* tas recube page css */



.accordion-container {
    min-width: 330px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #FCFCFC;
}

.main-item {
    border-radius: 8px;
    padding: 12px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: start;
    gap: 8px;
    transition: all ease-in-out 0.25s;
    color: #92969A;
}

.main-item1 {
    width: 330px;
}

.main-item:hover {
    background-color: #EFEFEF;
    color: #3B3E40;
}

.main-item svg {
    stroke: #92969A;
    transition: all ease-in-out 0.25s;
}

.main-item:hover svg {
    stroke: #3B3E40;
}

.main-item--open {
    border-radius: 8px;
    background-color: #EFEFEF;
    transition: all 200ms;
    color: #3B3E40;
}

.main-item--open:hover {
    color: #3B3E40;
    border-radius: 8px;
    background-color: #EFEFEF;
}

.main-item--open svg {
    stroke: #3B3E40;
}

.accordion-container>ul {
    max-height: 0px;
    list-style-type: none;
    margin: 0px;
    padding-left: 14px;
    opacity: 0;
    font-size: smaller;
    visibility: hidden;
    transition: all ease-in-out 0.2s;
}

.main-item--open+ul {
    visibility: visible;
    max-height: 400px;
    padding-left: 22px;
    opacity: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.accordion-container>ul>li {
    height: 48px;
    display: flex;
    width: 100%;
    align-items: center;
}

.accordion-container>ul>li>a {
    color: #92969A;
    padding: 16px 8px;
    height: 38px;
    line-height: 38px;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
}


.accordion-container>ul>li:hover {
    color: #3B3E40;
    cursor: pointer;
    font-weight: 700;
}


.accordion-container>ul>li:hover {
    color: #3B3E40;
    cursor: pointer;
    font-weight: 700;
}

.accordion-container>ul>li:hover>a {
    color: #3B3E40;
    background-color: #EFEFEF;
    width: 100%;
}

.expand-icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.main-item--open>.expand-icon {
    transform: rotate(-90deg);
}

.line-vertical {
    display: block;
    background-color: #EFEFEF;
    width: 2px;
    height: 48px;
}
a.navbar-brand h1 img {
    max-width: 120px;
}
.accordion-container>ul>li:last-child>.line-vertical {
    height: 25px;
    align-self: flex-start;
}

.line-horizontal {
    display: block;
    background-color: #EFEFEF;
    height: 2px;
    min-width: 12px;
}


/* dropdown hover effect start*/

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* dropdown hover effect end*/



/* pricing module css start */


.table tbody tr:nth-child(even) {
    background-image: linear-gradient(360deg, #ebe7ff 0%, #e1e9ff 100%);
}


td:first-child,
th:first-child {
  border-radius: 25px 0 0 25px;
  padding: 10px;
}

td:last-child,
th:last-child {
  border-radius: 0 25px 25px 0;
}

/* .table1 {
        border: #009688;
        border-radius: 10px;        
    } */

td {
    border-color: transparent;
}
tr {
    border-color: transparent;
}
 

.animate-row {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.5s ease-out forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* pricing module css end */


/* scrollbar css */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #d4d7d6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#b29fe8, #f0bbea);
    border-radius: 10px;
}

/* scrollbar css end */

/* zoho form css */





