* {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    list-style: none !important;
    box-sizing: border-box;
}

/* comn_css_start */
:root {
    --blue: #0098d9;
    --black: #000;
    --white: #fff;
    --bg_blue: #0098d9;
    --bg_black: #000;
    --bg_white: #fff;
    --bg_blue_l: #0098d929;
    --bg_black_l: #0000002b;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
}

.comn_sub_heading {
    font-size: 16px;
    color: var(--black);
    text-align: center;
    font-weight: 300;
    width: fit-content;
    position: relative;
    margin-bottom: 0;
}

.comn_sub_heading::before,
.comn_sub_heading::after {
    position: absolute;
    content: "";
    top: 50%;
    height: 0px;
    width: 40px;
    border-top: solid 1px var(--blue);
    transform: translateY(-50%);
}

.comn_sub_heading::before {
    left: -50px;
}

.comn_sub_heading::after {
    right: -50px;
}

.comn_heading {
    font-size: 30px;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 40px;
    font-family: "Open Sans", sans-serif;
}

p {
    line-height: 22px;
    font-weight: 300;
}

.container {
    max-width: 1440px;
    padding: 0 30px;
}

.comn_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg_blue);
    border: solid 1px var(--blue);
    padding: 7px 10px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 300;
    transition: .2s;
    width: fit-content;
}

.comn_btn:hover {
    background-color: var(--bg_white);
    color: var(--blue);
}

.comn_btn i {
    font-size: 26px;
    height: 30px;
    width: 30px;
    border: solid 1px var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    rotate: -40deg;
    transition: .2s;
}

.comn_btn:hover i {
    rotate: 0deg;
    border: solid 1px var(--blue);
    background-color: var(--bg_blue);
    color: var(--white);
}

.comn_img {
    position: relative;
    overflow: hidden;
}

.comn_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.comn_img::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.comn_img:hover::before {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.pt_ {
    padding-top: 60px;
}

.pb_ {
    padding-bottom: 60px;
}

.ptb_ {
    padding: 60px 0;
}

.mt_ {
    margin-top: 60px;
}

.mb_ {
    margin-bottom: 60px;
}

.mt_4 {
    margin-top: 40px;
}

.sec_head p {
    text-align: center;
    color: var(--black);
    max-width: 800px;
    margin: 10px 0 0;
    line-height: 22px;
}

.comn_form input,
.comn_form select,
.comn_form textarea {
    padding: 10px;
    border-radius: 50px;
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
    color: var(--black);
    outline: none;
    font-weight: 300;
    width: 100%;
}

.comn_form input::placeholder,
.comn_form textarea::placeholder {
    color: var(--black);
}

.comn_form>div {
    width: calc(50% - 10px);
    margin: 5px;
}

.comn_form {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.comn_form input[type=number]::-webkit-inner-spin-button,
.comn_form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.comn_form input[type=file]::file-selector-button {
    border: 0;
    background-color: var(--bg_blue);
    transition: 1s;
    border-radius: 50px;
    padding: 5px 15px;
    color: var(--white);
    cursor: pointer;
    transition: .3s;
}

.comn_form input:-webkit-autofill {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--black) !important;
}

.comn_form textarea {
    height: 100px;
    border-radius: 20px;
}

.comn_hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 100%;
    position: relative;
    height: 400px;
    padding-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comn_hero::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000096;
    z-index: 0;
}

.comn_hero .container {
    z-index: 1;
}

.comn_hero nav {
    margin-top: 20px;
}

.breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--bg_white);
    width: fit-content;
    margin: auto;
    padding: 5px 15px;
    border-radius: 50px;
}

.breadcrumb a {
    color: var(--blue);
    font-size: 16px;
    font-weight: 300;
}

.breadcrumb li {
    color: var(--black) !important;
    font-size: 16px;
    font-weight: 300;
}

.breadcrumb li::before {
    color: var(--black) !important;
}

.comn_hero h1 {
    text-align: center;
    font-size: 40px;
    color: white;
    font-weight: 400;
    margin-bottom: 0px;
    white-space: pre-wrap;
    font-family: "Open Sans", sans-serif;
}

.comn_hero h1 span {
    display: inline-block;
    animation: head_ani 1s ease-in-out forwards;
    transform: scale(0);
}

@keyframes head_ani {
    100% {
        transform: scale(1);
    }
}

.csh_l {
    margin-left: 50px;
}

.tis_comn_info .comn_img {
    border-radius: 20px;
}

.tis_comn_info .comn_img img {
    height: 400px;
}

.cg_r {
    padding-left: 10px;
}

.cg_l {
    padding-right: 10px;
}

.tis_cs>div {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: calc(25% - 16px);
    margin: 8px;
}

.tis_cs>div:nth-child(even) {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

.tis_cs>div:nth-child(odd) {
    background-color: var(--bg_blue_l);
    border: solid 1px var(--bg_blue);
}

.tis_cs p {
    margin: 10px 0 20px;
}

.tis_cs .comn_btn {
    margin-top: auto;
}

.tis_cs {
    margin: 30px -8px -8px;
    display: flex;
    flex-wrap: wrap;
}

.tis_cs h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 24px;
    font-family: "Open Sans", sans-serif;
}

.tis_ot_info>div:hover .comn_img::before,
.tis_review_slider .swiper-slide:hover .comn_img::before,
.tis_services_main>div:hover .comn_img::before {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* comn_css_end */

/* header_start */

.tis_header {
    z-index: 999;
    margin-bottom: -96px;
    transition: .5s;
    width: 100%;
    margin-top: 20px;
}

.tis_header.sticky {
    position: fixed !important;
    animation: head_sticky 3s ease-in-out forwards;
}

@keyframes head_sticky {
    0% {
        top: -100px;
    }

    50% {
        top: 0px;
    }

    100% {
        top: 0px;
    }
}

.tis_header.sticky .tis_header_inner {
    box-shadow: 0px 0px 10px 1px #0000000f;
}

.tis_header .tis_header_inner {
    padding: 15px 30px;
    background-color: var(--bg_white);
    border-radius: 100px;
}

.navbar-brand img {
    width: 145px;
}

.navbar-nav .dropdown-menu {
    display: block;
    border: 0;
    padding: 26px 0 0;
    top: 100%;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

.navbar-nav .dropdown-menu li a {
    padding: 10px 20px !important;
    background-color: var(--bg_white);
    transition: .3s;
    font-weight: 300;
}

.navbar-nav .dropdown-menu li a:hover,
.navbar-nav .dropdown-menu li a.active {
    background-color: var(--bg_blue);
    color: var(--white) !important;
}

.navbar-nav>li>a {
    padding: 0 !important;
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
}

.navbar-nav>li>a.active,
.navbar-nav>li>a:hover,
.footer_menu .active,
.footer_menu li a:hover {
    color: var(--blue) !important;
}

.comn_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 15px;
    height: 35px;
    width: 35px;
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
    color: var(--blue);
    transition: .3s;
}

.comn_social a:hover {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
    color: var(--black);
}

.comn_social a i {
    line-height: normal;
}

.navbar-collapse .navbar-toggler {
    display: none;
}

/* header_end */


/* tis_hero_start */

.tis_hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 96px;
}

.tis_hero video {
    object-fit: cover;
    height: 100vh;
}

.tis_hero::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #000000a6;
}

.tis_hero h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 400;
    line-height: 75px;
    font-family: "Open Sans", sans-serif;
}

.tis_hero p {
    color: var(--white);
    font-weight: 200;
    font-size: 20px;
    line-height: 26px;
}

.tis_hero .comn_btn {
    border: 0;
}

.tis_hero_right img {
    width: 100%;
    height: 100%;
    transition: .3s;
}

.tis_hero_right>div {
    overflow: hidden;
    border-radius: 500px;
    height: 450px;
}

.tis_hero_right>div:hover img {
    transform: scale(1.2);
}

.tis_hero_right>div:last-child {
    margin-top: 70px;
}

.tis_hero_right .comn_img {
    border-radius: 500px;
    overflow: hidden;
    height: 100%;
}

/* tis_hero_end */

/* tis_service_marquee_start */
.tis_service_marquee marquee {
    vertical-align: middle;
    display: block;
}

.tis_service_marquee h4 {
    font-size: 50px;
    margin: 0;
    color: transparent;
    transition: .3s;
    -webkit-text-stroke: 1.5px var(--black);
}

.tis_service_marquee span {
    display: block;
    font-size: 50px;
    line-height: 20px;
    height: 0;
    color: var(--blue);
}

.tis_service_marquee h4:hover {
    color: var(--blue);
    -webkit-text-stroke-color: var(--blue);
}

/* tis_service_marquee_end */

/* services_start */
.tis_services_main {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px -10px;
}

.tis_services_main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .3s;
}

.tis_services_main .comn_img {
    border-radius: 15px;
}

.tis_services_main h3 {
    color: var(--black);
    font-weight: 300;
    font-size: 22px;
    line-height: 24px;
    margin: 20px 0 0;
}

.tis_services_main p {
    color: var(--black);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 5px 0 20px;
    font-size: 15px;
}

.tis_services_main>div {
    padding: 15px;
    border-radius: 15px;
    width: calc(25% - 20px);
    margin: 10px;
}

.tis_services_main>div>div:last-child {
    height: 100%;
}

.tis_services_main>div:nth-child(even) {
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
}

.tis_services_main>div:nth-child(odd) {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

.tis_services_main>div:hover img {
    transform: scale(1.2);
}

/* services_end */


/* about_us_start */

.tis_mv {
    display: flex;
}

.tis_mv h3,
.tis_wcu_right h3,
.tis_about_mid h3 {
    color: var(--black);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.tis_mv {
    padding: 20px;
    border-radius: 15px;
}

.tis_mv:first-of-type {
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
}

.tis_mv:last-of-type {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

.tis_mv:first-of-type i {
    background-color: var(--bg_blue);
}

.tis_mv:last-of-type i {
    background-color: var(--bg_black);
}

.tis_mv i {
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 24px;
    margin-right: 15px;
    color: var(--white);
}

.tis_mv p {
    margin: 0;
}

.tis_about_left {
    position: relative;
    z-index: 1;
}

.tis_about_left::before,
.tis_about_left::after {
    position: absolute;
    content: "";
    height: 300px;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 20px;
}

.tis_about_left::before {
    border: solid 2px var(--blue);
}

.tis_about_left::after {
    border: solid 2px var(--black);
    left: 54%;
    top: 54%;
}

.tis_about_left .comn_img {
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
}

.tis_about_left .comn_img img {
    height: 300px;
}

.tis_about_left .comn_img:last-child {
    margin-top: -150px;
    border: solid var(--white);
    border-width: 10px 0 0 10px;
}

.tis_about_mid>div {
    display: flex;
}

.tis_about_mid i {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 30px;
    position: relative;
    padding: 25px 0 0 15px;
    margin-right: 15px;
}

.tis_about_mid i::after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    border-radius: 50px;
}

.tis_about_mid>div:first-child i::after {
    background-color: var(--bg_blue_l);
}

.tis_about_mid>div:first-child i {
    color: var(--blue);
}

.tis_about_mid>div:last-child i::after {
    background-color: var(--bg_black_l);
}

.tis_about_mid>div:last-child i {
    color: var(--black);
}

.tis_about_mid p {
    margin: 0;
}

/* about_us_end */


/* why_choose_start */

.tis_wcu {
    background-image: url(../images/why-choose_bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.tis_wcu::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0000007a;
}

.tis_wcu_right img {
    min-height: 50px;
    min-width: 50px;
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.tis_wcu_right>div>div {
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 2px 2px 6px 2px #00000014;
    border-radius: 15px;
    border-color: transparent !important;
    border: solid;
    background-color: var(--bg_white);
    transition: .3s;
}

.tis_wcu_right p {
    margin: 5px 0 0;
}

.tis_wcu_right::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: solid 1px var(--white);
    height: 100%;
    width: 0;
    z-index: 0;
}

.tis_wcu_right span {
    height: 50px;
    width: 50px;
    margin: 30px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--bg_white);
    border: solid 1px var(--white);
    color: var(--black);
    transition: .3s;
    font-size: 20px;
}

.tis_wcu_right>div:hover span {
    border: solid 1px var(--blue);
    color: var(--white);
    background-color: var(--bg_blue);
}


.tis_wcu_left .comn_img img {
    height: 300px;
}

.tis_wcu_left .comn_img {
    border-radius: 20px;
}

.tis_wcu_right>div {
    z-index: 1;
    position: relative;
}

/* why_choose_end */

/* counter_start */

.tis_counter {
    padding-top: 80px;
}

.tis_counter p {
    margin: 0;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.tis_counter .counter {
    line-height: 24px;
    margin: 0;
    font-size: 60px;
    -webkit-text-stroke: 2px;
}

#stats .counter-box:nth-child(odd) .counter {
    -webkit-text-stroke-color: var(--blue);
    color: var(--bg_blue_l);
}

#stats .counter-box:nth-child(even) .counter {
    -webkit-text-stroke-color: var(--black);
    color: var(--bg_black_l);
}

#stats img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#stats .counter-box:nth-child(even) {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

#stats .counter-box:nth-child(odd) {
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
}

#stats .counter-box {
    padding: 0 20px 20px;
    text-align: center;
    border-radius: 20px;
}

#stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

#stats .counter-box>div:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 30px;
}

#stats .counter-box>div:nth-of-type(1) {
    height: 70px;
    width: 70px;
    margin: -35px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

#stats .counter-box:nth-child(odd)>div:nth-of-type(1) {
    background-color: var(--bg_blue);
}

#stats .counter-box:nth-child(even)>div:nth-of-type(1) {
    background-color: var(--bg_black);
}

#stats .counter-box>div:nth-of-type(2) span {
    font-size: 40px;
    line-height: 25px;
    margin-left: 5px;
}

/* counter_end */

/* testimonials_start */
.tis_review_slider .swiper-slide>div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tis_review_slider .swiper-slide>div>div:first-child img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.tis_review_slider .swiper-slide>div>div {
    width: 50%;
}

.tis_review_slider .swiper-slide>div>div:last-child>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tis_review_slider .swiper-slide>div>div:last-child div img {
    height: 25px;
    object-fit: contain;
}

.tis_review_slider .swiper-slide>div>div:last-child>div div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tis_review_slider i,
.tis_ot_right_bottom div i {
    line-height: 20px;
    color: #e7c408;
}

.tis_review_slider .swiper-slide>div>div:last-child {
    padding: 20px;
    box-shadow: 0px 0px 20px 0px #0000001c;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.tis_review_slider {
    padding: 20px !important;
}

.tis_review_slider h3 {
    color: var(--black);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.tis_review_slider h6 {
    margin: 0;
    font-weight: 300;
    color: var(--blue);
}


.tis_review_slider .swiper-slide>div>div:last-child::before,
.tis_review_slider .swiper-slide>div>div:last-child::after {
    position: absolute;
    content: "";
    width: 55%;
    height: 20px;
    left: -55%;
    border-color: var(--blue) !important;
    border: solid;
}

.tis_review_slider .swiper-slide>div>div:last-child::before {
    border-width: 2px 0 0 2px;
    border-radius: 10px 0 0 0;
    top: 30px;
}

.tis_review_slider .swiper-slide>div>div:last-child::after {
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 10px;
    bottom: 30px;
}


.tis_review_slider .dot {
    position: absolute;
    left: -56.5%;
    height: 15px;
    width: 15px;
    background-color: var(--bg_blue);
    border-radius: 50px;
}

.tis_review_slider .dot:first-of-type {
    top: 45px;
}

.tis_review_slider .dot:last-of-type {
    bottom: 45px;
}

/* testimonials_end */

/* tis_faq_start */
.tis_faq_left .comn_img img {
    height: 300px;
}

.tis_faq_left .comn_img {
    border-radius: 20px;
}

.tis_faq_inner {
    background-image: url(../images/faq_bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    padding: 50px 30px;
    border-radius: 20px;
    overflow: hidden;
}

.tis_faq_inner::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg_black_l);
}

.tis_faq_inner .comn_sub_heading::before,
.tis_faq_inner .comn_sub_heading::after,
.tis_wcu_left .comn_sub_heading::before,
.tis_wcu_left .comn_sub_heading::after,
.tis_cd .comn_sub_heading::before,
.tis_cd .comn_sub_heading::after {
    border-color: var(--white);
}

.comn_accordion .accordion-button {
    padding: 20px;
    box-shadow: none !important;
    border-radius: 10px !important;
    background-color: var(--bg_blue);
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.comn_accordion .accordion-button.collapsed {
    background-color: var(--bg_white);
    color: var(--black);
}

.comn_accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.comn_accordion .accordion-button.collapsed::after {
    filter: brightness(1) invert(0);
}

.comn_accordion .accordion-item {
    border-radius: 0;
    background-color: transparent;
    border: 0;
}

.comn_accordion p {
    margin: 0;
}

.comn_accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comn_accordion .accordion-body {
    padding: 15px;
    background-color: var(--bg_white);
    border-radius: 10px;
}

/* tis_faq_end */

/* contact_us_start */
.tis_contact_form {
    padding: 30px;
    background-color: var(--bg_blue_l);
    border-radius: 20px;
    border: solid 1px var(--blue);
}

.tis_contact_info>div>a {
    display: flex;
    align-items: center;
    color: var(--black);
}

.tis_contact_info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.tis_contact_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tis_contact_info i {
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 20px;
    margin-right: 10px;
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

.tis_contact_info>div a {
    padding: 10px;
    border-radius: 15px;
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
    height: 100%;
}

.tis_contact_info p {
    margin: 0;
    word-break: break-all;
}

.tis_contact iframe {
    display: block;
    border-radius: 20px;
    margin-top: 20px;
    height: 291px;
    width: 100%;
}

/* contact_us_start */


/* footer_start */

.tis_footer {
    background-color: var(--bg_blue_l);
}

.tis_footer_inner {
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    font-size: 40px;
}

.tis_footer_inner>div:first-child {
    width: 30%;
}

.tis_footer_inner>:not(div:first-child) {
    width: fit-content;
}

.tis_footer_inner ul a {
    color: var(--black);
    font-weight: 300;
    display: inline-block;
}

.tis_footer_inner h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
}

.tis_footer_inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tis_footer_inner ul i {
    font-size: 16px;
    display: inline-block;
    margin-right: 2px;
}

.tis_footer_inner ul li a {
    display: flex;
    width: fit-content;
}

.tis_footer_inner>div:last-child p {
    margin: 0;
}

.tis_footer_inner>div:last-child i {
    margin-right: 10px;
}

.tis_footer_copyright {
    padding: 20px 0;
    margin-top: 40px;
    border-top: solid 1px var(--black);
}

.footer_logo img {
    width: 150px;
}

.tis_footer_inner>div:last-child {
    width: 26%;
}

/* footer_end */


/* page_progress_start */
.page_progress {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 100;
}

.page_progress .progress-ring {
    transform: rotate(-90deg);
    background-color: var(--bg_white);
    border-radius: 50px;
}

.page_progress .ring-bg {
    fill: none;
    stroke: var(--bg_blue_l);
    stroke-width: 2;
}

.page_progress .ring-fill {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.25s ease-out;
}

.page_progress i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--blue);
    z-index: 1;
}

/* page_progress_end */

/* cursor_start */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 2;
    pointer-events: none;
}

.cursor div {
    position: absolute;
    display: grid;
    place-items: center;
}

.cursor div:nth-child(1),
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
}

.cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
}

.cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
}

.cursor div:nth-child(2) div {
    background: var(--bg_blue_l);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.cursor div div {
    border: 1px solid var(--blue);
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

/* cursor_end */


/* about_p_start */
.tis_about_hero {
    background-image: url(../images/about_hero.jpg);
}

.tis_about_marquee marquee>div>div {
    background-color: var(--bg_white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #0000001f;
}

.tis_about_marquee marquee>div {
    padding: 10px 0;
}

.tis_about_marquee img {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

.tis_ot_info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tis_ot_info .comn_img {
    height: 240px;
    width: 240px;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    z-index: 0;
}

.tis_ot_info>div {
    position: relative;
    height: 400px;
    /* box-shadow: 0px 0px 10px 2px #0000001f; */
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.tis_ot_info>div:nth-child(even) {
    background-color: var(--bg_black_l);
    border: solid 1px var(--black);
}

.tis_ot_info>div:nth-child(odd) {
    background-color: var(--bg_blue_l);
    border: solid 1px var(--blue);
}

.tis_ot_info h3,
.tis_ot_info h4 {
    color: var(--black);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.tis_ot_info h4 {
    font-size: 16px;
}

.tis_ot_info>div:hover .comn_img {
    height: 100%;
    width: 100%;
    border-radius: 0;
    top: 0;
}

.tis_ot_info .comn_img img {
    height: 100%;
}

.tis_ot_info>div>div:last-child {
    transition: .3s;
    z-index: 1;
}

.tis_ot_info>div:hover div:last-child {
    background-color: white;
    border-radius: 50px;
    padding: 10px 0;
}

.tis_ot_right_top h4 {
    font-size: 100px;
    text-align: center;
    -webkit-text-stroke-color: var(--blue) !important;
    color: var(--bg_blue_l);
    -webkit-text-stroke: 2px;
    margin: 0;
}

.tis_ot_right_top p {
    text-align: center;
    font-size: 20px;
}

.tis_ot_right_bottom {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--bg_white);
    border: solid 1px var(--black);
}

.tis_ot_right_bottom h3 {
    color: var(--black);
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    margin: 0;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.tis_ot_right_bottom div {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--bg_black);
    width: fit-content;
    margin: 20px auto 0;
}

/* about_p_end */


/* contact_p_start */
.tis_contact_hero {
    background-image: url(../images/contact_hero.jpg);
}

.tis_cd iframe {
    height: 100%;
    width: 100%;
}

.tis_cd iframe {
    height: 100%;
    width: 100%;
    border-radius: 20px 0 0 20px;
}

.tis_cd .comn_form>div {
    width: calc(100% - 0px);
}

.tis_cdi_right {
    padding: 30px;
    background-color: var(--bg_blue);
    border-radius: 0 20px 20px 0;
}

.tis_cdi_right .comn_form input,
.tis_cdi_right .comn_form select,
.tis_cdi_right .comn_form textarea {
    background-color: var(--bg_white);
    border: 0;
}

.tis_cdi_outer .tis_contact_info i {
    height: 70px;
    width: 70px;
    min-height: 70px;
    min-width: 70px;
    font-size: 30px;
    background-color: var(--bg_blue);
    color: var(--white);
    border-color: var(--white);
    border: 0;
}

.tis_cdi_outer .tis_contact_info a {
    background-color: #ffffff8a;
    border: solid 1px var(--white);
}

.tis_cdi_outer .tis_contact_info {
    grid-template-columns: repeat(3, 1fr);
}

.tis_cdi_outer {
    padding: 30px 30px 150px;
    border-radius: 20px;
    background-image: url(../images/contact_us_bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.tis_cdi_outer::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0000007a;
    border-radius: 20px;
    z-index: -1;
}

.tis_cdi .row {
    margin-top: -80px;
    padding: 0 30px;
}

.tis_cdi .comn_btn {
    border-color: var(--white);
}

/* contact_p_end */


/* career_p_start */
.tis_career_hero {
    background-image: url(../images/career_hero.jpg);
}

.tis_career_form_right {
    padding: 30px;
    background-color: var(--bg_blue_l);
    border-radius: 20px;
    border: solid 1px var(--blue);
}

.tis_career_form .comn_img {
    border-radius: 20px;
}

.tis_career_form .comn_img img {
    height: 290px;
}

/* career_p_end */


/* portfolio_p_start */
.tis_portfolio_hero {
    background-image: url(../images/portfolio_hero.jpg);
}

.nav-tabs .nav-link {
    padding: 10px 20px;
    border: solid 1px var(--blue) !important;
    border-radius: 50px;
    background-color: var(--bg_blue_l);
    color: var(--black);
    font-weight: 300;
    transition: .3s;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    background-color: var(--bg_blue);
    color: var(--white);
}

.tis_portfolio_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tis_portfolio_cards>div>div:Last-child {
    position: absolute;
    bottom: 0;
    background-color: var(--bg_black);
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    color: var(--white);
    transform: translateY(100%);
    transition: .5s;
}

.tis_portfolio_cards>div:hover>div:Last-child {
    transform: translateY(0);
}

.tis_portfolio_cards>div {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0);
}

.tis_portfolio_info .tab-pane.show .tis_portfolio_cards>div {
    animation: port .5s ease-in-out forwards;
}

@keyframes port {
    100% {
        transform: scale(1);
    }
}

.tis_portfolio_cards .comn_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.tis_portfolio_cards>div:hover .comn_btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.tis_portfolio_cards h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.tis_portfolio_cards h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

/* portfolio_p_end */


/* services_info_start */
.tis_wd_hero {
    background-image: url(../images/website-development.webp);
}

.tis_seo_hero {
    background-image: url(../images/search-engine-optimization.webp);
}

.tis_ed_hero {
    background-image: url(../images/e-commerce-development.webp);
}

.tis_ppc_hero {
    background-image: url(../images/pay_per_click.avif);
}

.tis_sd_hero {
    background-image: url(../images/shopify-development.webp);
}

.tis_ga_hero {
    background-image: url(../images/google-ads.webp);
}

.tis_smm_hero {
    background-image: url(../images/social-media-marketing.webp);
}

.tis_branding_hero {
    background-image: url(../images/branding.webp);
}

/* services_info_end */


@media(max-width:1300px) {
    .tis_hero h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .tis_hero_right>div {
        height: 350px;
    }

    .tis_ot_info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:1200px) {

    .navbar-nav {
        gap: 15px !important;
    }

    #navbarSupportedContent {
        gap: 20px !important;
    }

    .navbar-collapse div:last-child {
        gap: 15px !important;
    }

    .tis_services_main img {
        height: 200px;
    }

    .tis_review_slider .swiper-slide>div {
        flex-direction: column;
        gap: 60px;
        height: 100%;
    }

    .tis_review_slider .comn_img {
        height: 100px;
        width: 100px !important;
        border-radius: 100%;
        min-height: 100px;
        min-width: 100px;
    }

    .tis_review_slider .swiper-slide>div>div:first-child img {
        height: 100%;
        width: 100%;
    }

    .tis_review_slider .swiper-slide>div>div:last-child::before {
        height: 110px;
        width: 20px;
        border-width: 2px 2px 0 0;
        border-radius: 0 10px 0 0;
        left: unset;
        right: 25px;
        top: -110px;
    }

    .tis_review_slider .swiper-slide>div>div:last-child::after {
        height: 110px;
        width: 20px;
        border-width: 2px 0 0 2px;
        border-radius: 10px 0 0 0;
        left: 25px;
        top: -110px;
        bottom: unset;
    }

    .tis_review_slider .swiper-slide {
        height: auto;
    }

    .tis_review_slider .dot {
        top: -117px !important;
    }

    .tis_review_slider h3 {
        margin-top: auto;
    }

    .tis_review_slider .swiper-slide>div>div:last-child {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .tis_review_slider .dot:first-of-type {
        left: 35px !important;
    }

    .tis_review_slider .dot:last-of-type {
        right: 35px !important;
        left: auto;
    }
}

@media(max-width:1024px) {
    
    .cursor div:nth-child(2) div {
        background: transparent; 
    }
    
    .cursor div div {
        border-color: transparent; 
    }
    
    .tis_header .comn_social {
        display: none !important;
    }

    .navbar-nav {
        gap: 25px !important;
    }

    .tis_services_main>div {
        width: calc(33.33% - 20px);
    }

    .tis_cs>div {
        width: calc(33.33% - 16px);
    }
}

@media(max-width:991px) {

    #stats .counter-box:nth-child(2) {
        order: -1;
    }

    .tis_cs>div {
        width: calc(50% - 16px);
    }

    .tis_cdi_outer .tis_contact_info {
        grid-template-columns: repeat(2, 1fr);
    }

    .tis_career_form .comn_img img {
        height: 419px;
    }

    .tis_portfolio_cards {
        grid-template-columns: repeat(2, 1fr);
    } 

    .tis_ot_info .comn_img {
        height: 180px;
        width: 180px;
    }

    .tis_ot_info>div {
        height: 300px;
    }

    .tis_footer_inner>div:first-child {
        width: 100%;
        margin-bottom: 40px;
    }

    .tis_footer_inner {
        flex-wrap: wrap;
    }

    .tis_footer_inner>div:last-child {
        width: 35%;
    }

    .tis_contact_info {
        grid-template-columns: repeat(1, 1fr);
    }

    .tis_contact iframe {
        height: 480px;
    }

    #stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }

    .tis_services_main>div {
        width: calc(50% - 20px);
    }

    .tis_hero_right {
        flex-direction: column;
    }

    .tis_hero_right>div {
        width: 100% !important;
        height: 200px;
        margin: 0 !important;
    }

    .tis_hero h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .navbar-collapse .navbar-toggler {
        font-size: 20px;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border: solid 1px var(--blue);
        padding: 0 !important;
    }

    .navbar-collapse div:last-child {
        justify-content: center;
        margin-top: 50px;
    }

    .navbar-collapse {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        background-color: var(--bg_white);
        width: 100%;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform .5s;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow-y: auto;
    }

    .navbar-nav li a {
        text-align: center;
        width: fit-content;
        margin: auto;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-toggler {
        box-shadow: none !important;
        border: 0;
        border-radius: 50px;
        height: 40px;
        width: 40px;
        min-height: 40px;
        min-width: 40px;
        padding: 0;
        background-color: var(--bg_blue);
        color: var(--white);
        font-size: 30px;
        line-height: 0;
    }

    .navbar-toggler .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        height: 27px;
        width: 27px;
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .navbar-nav .dropdown-menu a {
        width: 100%;
    }

    .scroll_none {
        overflow: hidden;
    }

    .comn_form>div {
        width: calc(100% - 10px);
    }

    .tis_contact_form,
    .tis_career_form_right,
    .tis_cdi_right {
        padding: 30px 20px;
    }
}

@media(max-width:768px) {
    .tis_hero .col-lg-6:first-child .d-flex {
        justify-content: center;
    }

    .tis_hero {
        text-align: center;
    }

    .tis_hero .col-lg-6:last-child {
        display: none;
    }

    .tis_hero .col-lg-6:first-child {
        width: 100%;
    }
}

@media(max-width:767px) {

    .tis_cdi .row {
        margin: 40px 0 0;
        padding: 0;
    }

    .tis_wcu {
        background-position: 70% 0%;
    }

    .tis_wcu_left .comn_img img,
    .tis_career_form .comn_img img {
        height: 150px;
    }

    .tis_faq_left .comn_img img {
        height: 150px;
    }

    .tis_cdi_outer .tis_contact_info i {
        height: 40px;
        width: 40px;
        min-height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .cg_r,
    .cg_l {
        padding: 0;
    }

    .cg_r {
        margin-top: 40px;
    }

    .pt_ {
        padding-top: 50px;
    }

    .pb_ {
        padding-bottom: 50px;
    }

    .ptb_ {
        padding: 50px 0;
    }

    .tis_contact iframe {
        height: 300px;
    }

    .tis_about_mid h3,
    .tis_wcu_right h3,
    .comn_accordion .accordion-button,
    .tis_review_slider h3,
    .tis_contact_info h3,
    .tis_counter p,
    .tis_footer_inner h3,
    .tis_ot_right_top p,
    .tis_ot_right_bottom h3,
    .tis_cs h3 {
        font-size: 18px;
    }

    .comn_hero {
        height: 300px;
    }

    .comn_hero h1 {
        font-size: 30px;
    }

    .breadcrumb a,
    .breadcrumb li {
        font-size: 14px;
    }

    .nav-tabs .nav-link {
        padding: 5px 10px;
    }

    .tis_comn_info .col-lg-6:last-child {
        order: -1;
    }

    .tis_comn_info .cg_r {
        margin: 0;
        margin-bottom: 40px;
    }

    .tis_comn_info .comn_img img {
        height: 250px;
    }

    .tis_ot_right {
        padding-top: 0;
    }

    .tis_ot .col-lg-4 {
        order: -1;
    }

    .tis_cdi_outer {
        padding: 30px 20px 130px;
        background-position: 60% 0%;
    }

    .tis_cdi .col-lg-6 {
        padding: 0;
    }

    .tis_cd iframe {
        border-radius: 0 0 20px 20px;
        height: 350px;
    }

    .tis_cdi .col-lg-6:last-child {
        order: -1;
    }

    .tis_cdi_right {
        border-radius: 20px 20px 0 0;
    }

    .tis_ot_right_top h4 {
        font-size: 60px;
        -webkit-text-stroke-width: 1px;
    }

    .tis_about_marquee img {
        width: 80px;
        height: 40px;
    }

    .tis_footer_inner>div:first-child {
        margin-bottom: 0px;
    }

    .tis_footer_inner>:not(div:first-child) {
        width: 100%;
    }

    .tis_footer_inner {
        row-gap: 20px;
    }

    .tis_review_slider h6 {
        font-size: 14px;
    }

    .tis_faq_left .comn_img {
        order: -1;
        margin: 0 0 30px !important;
    }

    .tis_faq_left {
        display: flex;
        flex-direction: column;
    }

    .tis_faq_inner {
        padding: 40px 20px;
        background-position: 50%;
    }

    .tis_review_slider {
        padding: 20px 15px 15px !important;
    }

    .tis_wcu_left .comn_img {
        order: -1;
        margin-top: 0 !important;
    }

    .tis_wcu_left {
        display: flex;
        flex-direction: column;
    }

    .tis_wcu_left .comn_btn {
        margin-top: 30px;
    }

    .tis_about_left .comn_img img {
        height: 250px;
    }

    .tis_about_left::before,
    .tis_about_left::after {
        height: 250px;
    }

    #stats .counter-box {
        padding: 0 10px 10px;
    }

    .tis_service_marquee h4 {
        font-size: 30px;
        -webkit-text-stroke-width: 1.1px !important;
    }

    .comn_heading {
        font-size: 24px;
        line-height: 30px;
    }

    .tis_services_main h3 {
        font-size: 20px;
    }

    .tis_services_main>div {
        width: calc(100% - 20px);
    }

    .tis_counter .counter {
        font-size: 35px;
        -webkit-text-stroke-width: 1.3px;
    }

    .container {
        padding: 0 20px;
    }

    .tis_header .tis_header_inner {
        padding: 15px 20px;
    }

    .tis_hero h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .tis_hero p {
        font-size: 16px;
        margin-bottom: 30px !important;
    }
}

@media(max-width:575px) {
    .tis_ot_info {
        grid-template-columns: repeat(1, 1fr);
    }

    .tis_portfolio_cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .tis_cdi_outer .tis_contact_info {
        grid-template-columns: repeat(1, 1fr);
    }

    .tis_cs>div {
        width: calc(100% - 16px);
    }
}