@charset "UTF-8";
/* ========= [ * page-home_1 ]  =========*/



/* Common CSS for logo */

.logo {
    height: 60px;
    /* Set the initial height */
}
@media (max-width: 996px) {
    i.far.fa-bars-sort{
        display: none;
    }
}
@media (max-width: 768px) {
    .logo {
        height: 40px;
        /* Adjust the height for smaller screens */
    }

    .navbar-brand {
        margin-right: auto;
        /* Move the logo to the right */
    }
    
}

@media (max-width: 500px) {
    .logo {
        height: 40px;
        /* Further reduce the height for screens below 500px */
    }

    .navbar-brand {
        margin-right: 10px;
        /* Move the logo slightly to the right */
    }
}


/* Common CSS for Email Subscription */

.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: none;
}

.error {
    /* background-color: #f44336; */
    color: white;
    animation: fadeInOut 3s ease;
}

.success {
    /* background-color: #4caf50; */
    color: white;
    animation: fadeInOut 3s ease;
}

.loading {
    /* background-color: #2196f3; */
    color: white;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}


/* --------------- side_menu_style4 --------------- */

.side_menu_style4 {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    background-color: #f9f9f9;
    background-image: linear-gradient(126deg, #08B25933 22.58%, #F3E51A33 73.54%);
    background-size: cover;
    background-repeat: repeat;
    padding: 0 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.side_menu_style4.show {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.side_menu_style4.show .side_shape {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
}

.side_menu_style4.show .side_shape2 {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
}

.side_menu_style4.show .main_links {
    text-align: center;
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.side_menu_style4 .links_group {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
}

.side_menu_style4 .main_links {
    text-align: center;
    -webkit-transform: scaleX(1.4) scaleY(1.8);
    transform: scaleX(1.4) scaleY(1.8);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.side_menu_style4 .main_links .main_link {
    font-size: calc(2vw + 10px);
    font-weight: bolder;
    margin: 5px 0;
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--cr-orange1);
    color: transparent;
    text-shadow: 2px 2px 0 var(--cr-orange1);
}

.side_menu_style4 .main_links .main_link:hover {
    color: var(--cr-orange1);
    text-shadow: 2px 2px 15px var(--cr-orange1);
}

.side_menu_style4 .social_links a {
    font-size: 24px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    border-bottom: 3px solid transparent;
}

.side_menu_style4 .social_links a:hover {
    border-color: #000;
}

.side_menu_style4 .clss {
    font-size: 30px;
    position: absolute;
    top: 50px;
    right: 5vw;
    cursor: pointer;
}

.side_menu4_overlay {
    position: absolute;
    z-index: 90;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--cr-orange1);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.side_menu4_overlay.show {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.side_menu4_overlay2 {
    position: absolute;
    z-index: 80;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--cr-orange1);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.side_menu4_overlay2.show {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/* --------------- footer st1 --------------- */

.tc-inner-header-st1 {
    position: relative;
    padding: 150px 0 200px;
}

.tc-inner-header-st1 .container {
    position: relative;
    z-index: 20;
}

.tc-inner-header-st1 .links {
    position: relative;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.tc-inner-header-st1 .links::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    left: 0;
    top: 2px;
    color: var(--cr-orange1);
    font-size: 18px;
}

.tc-inner-header-st1 .links a {
    position: relative;
    font-size: 18px;
    -webkit-padding-end: 25px;
    padding-inline-end: 25px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    color: var(--cr-orange1);
    text-transform: capitalize;
}

.tc-inner-header-st1 .links a::after {
    position: absolute;
    content: "/";
    font-family: "Font Awesome 6 Pro";
    top: 0;
    right: 0;
}

.tc-inner-header-st1 .links a:last-of-type {
    color: #000;
}

.tc-inner-header-st1 .links a:last-of-type::after {
    display: none;
}

.tc-inner-header-st1 h1 {
    font-size: 82px;
    margin-top: 20px;
}

.tc-inner-header-st1 .shap1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 100px);
    max-height: unset;
    z-index: 2;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}

.tc-inner-header-st1 .shap2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 100px);
    max-height: unset;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}

@media screen and (max-width: 991px) {
    .tc-inner-header-st1 {
        padding: 100px 0;
    }
    .tc-inner-header-st1 h1 {
        font-size: 40px;
    }
}

.about-pg-st1 {
    /* --------------- about pg st1 --------------- */
    /* --------------- service st1 --------------- */
    /* --------------- team st2 --------------- */
    /* --------------- testimonials st3 --------------- */
    /* --------------- video st3 --------------- */
    /* --------------- choose st1 --------------- */
}

.about-pg-st1 .tc-pg-about-st1 {
    position: relative;
    padding-bottom: 120px;
}

.about-pg-st1 .tc-pg-about-st1 .container {
    position: relative;
    z-index: 20;
}

.about-pg-st1 .tc-pg-about-st1 .img {
    position: relative;
}

.about-pg-st1 .tc-pg-about-st1 .img .main-img {
    position: relative;
    z-index: 10;
}

.about-pg-st1 .tc-pg-about-st1 .check-list {
    font-size: 20px;
    font-weight: bold;
}

.about-pg-st1 .tc-pg-about-st1 .check-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0;
    color: #191919;
}

.about-pg-st1 .tc-pg-about-st1 .check-list li .icon {
    width: 50px;
    height: 50px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about-pg-st1 .tc-pg-about-st1 .icon-list {
    font-size: 24px;
    font-weight: bold;
}

.about-pg-st1 .tc-pg-about-st1 .icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    color: #191919;
    padding: 20px;
    background-image: linear-gradient(124deg, #FF5F6D11 22.75%, #FFC37111 72.61%);
    -webkit-margin-end: 110px;
    margin-inline-end: 110px;
}

.about-pg-st1 .tc-pg-about-st1 .icon-list li:nth-of-type(even) {
    -webkit-margin-start: 110px;
    margin-inline-start: 110px;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    background-image: linear-gradient(126deg, #08B25911 22.58%, #F3E51A11 73.54%);
}

.about-pg-st1 .tc-pg-about-st1 .icon-list li .icon {
    width: 80px;
    height: 80px;
    -webkit-margin-end: 18px;
    margin-inline-end: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 991px) {
    .about-pg-st1 .tc-pg-about-st1 .clients-cards {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .about-pg-st1 .tc-pg-about-st1 .clients-cards img {
        margin: 10px;
    }
    .about-pg-st1 .tc-pg-about-st1 .marq-text h2 {
        font-size: 60px;
    }
}

.about-pg-st1 .tc-pg-service-st1 {
    position: relative;
    padding-bottom: 75px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    padding-bottom: 50px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .service-card {
    position: relative;
    text-align: center;
    padding: 50px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .service-card .icon {
    height: 75px;
    width: 75px;
    margin: 0 auto 10px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .service-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .service-card .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .btm-text {
    position: relative;
    margin: 0 50px;
    text-align: center;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .btm-text::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #9993;
}

.about-pg-st1 .tc-pg-service-st1 .services-cards .btm-text .text {
    font-size: 16px;
    padding: 10px 50px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.about-pg-st1 .tc-pg-service-st1 .bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: unset;
    top: 0;
}

.about-pg-st1 .tc-pg-team-st1 {
    position: relative;
    padding: 75px 0;
}

.about-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(1) .team-card .info .social-icons {
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(2) .team-card .info .social-icons {
    background-image: var(--ln-green1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(3) .team-card .info .social-icons {
    background-image: var(--ln-blue1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(4) .team-card .info .social-icons {
    background-image: var(--ln-purple1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card .img {
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card .info {
    padding: 25px;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card .info .social-icons {
    margin-top: 15px;
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-pg-st1 .tc-pg-team-st1 .cards .team-card .info .social-icons a {
    font-size: 16px;
    font-weight: bold;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
}

.about-pg-st1 .tc-pg-team-st1 .clients-cards {
    background-color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4vw;
    margin-top: 130px;
}

.about-pg-st1 .tc-pg-team-st1 .clients-cards img {
    height: 50px;
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

.about-pg-st1 .tc-pg-team-st1 .line {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.about-pg-st1 .tc-pg-team-st1 .line.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.about-pg-st1 .tc-pg-team-st1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    max-height: unset;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}

@media screen and (max-width: 991px) {
    .about-pg-st1 .tc-pg-team-st1 .cards .team-card {
        margin-bottom: 30px;
    }
}

.about-pg-st1 .tc-pg-testimonials-st1 {
    position: relative;
    padding: 75PX 0;
    overflow: hidden;
}

.about-pg-st1 .tc-pg-testimonials-st1 .shap {
    position: absolute;
    top: 0;
    width: 100%;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider {
    position: relative;
    z-index: 10;
    padding-bottom: 100px;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .swiper-slide .testi-card {
    opacity: 0.6;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .swiper-slide-active .testi-card {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card {
    padding: 40px;
    border-radius: 30px;
    background: #FFF;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-rate .icon {
    height: 30px;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-rate .stars {
    color: var(--cr-orange1);
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-rate p {
    font-size: 16px;
    color: #5B5B5B;
    margin-bottom: 5px;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .main-text {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-info h6 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.about-pg-st1 .tc-pg-testimonials-st1 .testimonials-slider .testi-card .user-info p {
    font-size: 16px;
    color: #5B5B5B;
}

.about-pg-st1 .tc-pg-video-st1 {
    position: relative;
    padding: 75px 0 0;
}

.about-pg-st1 .tc-pg-video-st1 .vid-img {
    display: block;
    width: 100%;
}

.about-pg-st1 .tc-pg-video-st1 .vid-img img {
    display: block;
    height: 100%;
    width: 100%;
}

.about-pg-st1 .tc-pg-choose-st1 {
    position: relative;
    padding: 120px 0;
    background-image: url(../img/choose_bg.png);
    background-size: cover;
    background-position: bottom;
}

.about-pg-st1 .tc-pg-choose-st1 .num-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.about-pg-st1 .tc-pg-choose-st1 .num-line.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card:hover .arrow {
    color: var(--cr-orange1);
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card:hover .arrow::before {
    background-color: var(--cr-orange1);
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card .icon {
    height: 90px;
    margin-bottom: 30px;
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card .arrow {
    position: relative;
    margin-top: 40px;
    font-size: 15px;
    -webkit-padding-start: 32px;
    padding-inline-start: 32px;
    color: #ccc;
}

.about-pg-st1 .tc-pg-choose-st1 .choose-card .arrow::before {
    position: absolute;
    content: "";
    left: 0;
    top: calc(50% - 2px);
    width: 40px;
    height: 2px;
    background-color: #ccc;
}

.about-pg-st1 .tc-pg-choose-st1 .numbers {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    padding: 4vw;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}

.about-pg-st1 .tc-pg-choose-st1 .numbers .num-card {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.about-pg-st1 .tc-pg-choose-st1 .numbers .num-card .shap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .about-pg-st1 .tc-pg-choose-st1 {
        padding-bottom: 0;
    }
    .about-pg-st1 .tc-pg-choose-st1 .numbers .num-card {
        margin: 25px 0;
    }
}

.services-pg-st1 {
    /* --------------- services st2 --------------- */
    /* --------------- about st1 --------------- */
    /* --------------- about st2 --------------- */
    /* --------------- team st2 --------------- */
}

.services-pg-st1 .tc-pg-services-st2 {
    position: relative;
    padding: 30px 0;
}

.services-pg-st1 .tc-pg-services-st2 .shap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.services-pg-st1 .tc-pg-services-st2 .service-card {
    position: relative;
    text-align: center;
    padding: 20px 50px;
    z-index: 20;
}

.services-pg-st1 .tc-pg-services-st2 .service-card .icon {
    height: 75px;
    width: 75px;
    margin: 0 auto 10px;
}

.services-pg-st1 .tc-pg-services-st2 .service-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.services-pg-st1 .tc-pg-services-st2 .service-card .title {
    font-size: 24px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .services-pg-st1 .tc-pg-services-st2 .service-card {
        padding: 40px;
    }
}

.services-pg-st1 .tc-pg-about-st2-1 {
    position: relative;
    padding: 120px 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#FFF7F8), to(#FFFCF8));
    background-image: linear-gradient(to right, #FFF7F8, #FFFCF8);
}

.services-pg-st1 .tc-pg-about-st2-1 .container {
    position: relative;
    z-index: 20;
}

.services-pg-st1 .tc-pg-about-st2-1 .img {
    position: relative;
}

.services-pg-st1 .tc-pg-about-st2-1 .img .main-img {
    position: relative;
    z-index: 10;
}

.services-pg-st1 .tc-pg-about-st2-1 .img .sub-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.services-pg-st1 .tc-pg-about-st2-1 .clients-cards {
    background-color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4vw;
    margin-top: 130px;
}

.services-pg-st1 .tc-pg-about-st2-1 .clients-cards img {
    height: 50px;
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

.services-pg-st1 .tc-pg-about-st2-1 .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.services-pg-st1 .tc-pg-about-st2-1 .line.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 991px) {
    .services-pg-st1 .tc-pg-about-st2-1 .clients-cards {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .services-pg-st1 .tc-pg-about-st2-1 .clients-cards img {
        margin: 10px;
    }
    .services-pg-st1 .tc-pg-about-st2-1 .marq-text h2 {
        font-size: 60px;
    }
}

.services-pg-st1 .tc-pg-about-st2-2 {
    position: relative;
    padding: 75px 0;
}

.services-pg-st1 .tc-pg-about-st2-2 .container {
    position: relative;
    z-index: 20;
}

.services-pg-st1 .tc-pg-about-st2-2 .img {
    position: relative;
}

.services-pg-st1 .tc-pg-about-st2-2 .img .main-img {
    position: relative;
    z-index: 10;
}

.services-pg-st1 .tc-pg-about-st2-2 .check-list {
    font-size: 20px;
    font-weight: bold;
}

.services-pg-st1 .tc-pg-about-st2-2 .check-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    color: #191919;
}

.services-pg-st1 .tc-pg-about-st2-2 .check-list li .icon {
    width: 50px;
    height: 50px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list {
    font-size: 24px;
    font-weight: bold;
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    color: #191919;
    padding: 20px;
    -webkit-margin-end: 110px;
    margin-inline-end: 110px;
    background-image: linear-gradient(126deg, #08B25911 22.58%, #F3E51A11 73.54%);
    font-size: 21px;
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list li:nth-of-type(odd) {
    -webkit-margin-start: 110px;
    margin-inline-start: 110px;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list li:nth-of-type(1) {
    background-image: linear-gradient(124deg, #FF5F6D11 22.75%, #FFC37111 72.61%);
    margin-top: 0;
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list li:nth-of-type(3) {
    background-image: linear-gradient(124deg, #7E8FFF11 22.75%, #92EFFD11 72.61%);
}

.services-pg-st1 .tc-pg-about-st2-2 .icon-list li .icon {
    width: 80px;
    height: 80px;
    -webkit-margin-end: 18px;
    margin-inline-end: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.services-pg-st1 .tc-pg-about-st2-2 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}

.services-pg-st1 .tc-pg-team-st2 {
    position: relative;
    padding: 75px 0;
}

.services-pg-st1 .tc-pg-team-st2 .cards .row .col-lg-3:nth-of-type(1) .team-card .info .social-icons {
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pg-st1 .tc-pg-team-st2 .cards .row .col-lg-3:nth-of-type(2) .team-card .info .social-icons {
    background-image: var(--ln-green1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pg-st1 .tc-pg-team-st2 .cards .row .col-lg-3:nth-of-type(3) .team-card .info .social-icons {
    background-image: var(--ln-blue1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pg-st1 .tc-pg-team-st2 .cards .row .col-lg-3:nth-of-type(4) .team-card .info .social-icons {
    background-image: var(--ln-purple1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card .img {
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card .info {
    padding: 25px;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card .info .social-icons {
    margin-top: 15px;
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pg-st1 .tc-pg-team-st2 .cards .team-card .info .social-icons a {
    font-size: 16px;
    font-weight: bold;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
}

.services-pg-st1 .tc-pg-team-st2 .clients-cards {
    background-color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4vw;
    margin-top: 130px;
}

.services-pg-st1 .tc-pg-team-st2 .clients-cards img {
    height: 50px;
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 991px) {
    .services-pg-st1 .tc-pg-team-st1 .cards .team-card {
        margin-bottom: 30px;
    }
}

.service-det-pg-st1 .tc-pg-main-st3 {
    padding: 100px 0 150px;
}

.service-det-pg-st1 .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #9995;
    margin: 5px;
}

.service-det-pg-st1 .social-links a:hover {
    background-color: #000;
    color: #fff;
}

.service-det-pg-st1 .text-list {
    margin-top: 20px;
}

.service-det-pg-st1 .text-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    text-transform: capitalize;
}

.service-det-pg-st1 .text-list li strong {
    width: 50%;
}

@media screen and (max-width: 991px) {
    .service-det-pg-st1 .tc-pg-main-st3 .main-img {
        height: 400px !important;
    }
    .service-det-pg-st1 .tc-pg-main-st3 .sub-imgs .img {
        height: 300px !important;
    }
}

.team-pg-st1 {
    /* --------------- team st2 --------------- */
}

.team-pg-st1 .tc-pg-team-st1 {
    position: relative;
    padding: 75px 0;
}

.team-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(1) .team-card .info .social-icons {
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(2) .team-card .info .social-icons {
    background-image: var(--ln-green1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(3) .team-card .info .social-icons {
    background-image: var(--ln-blue1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-pg-st1 .tc-pg-team-st1 .cards .row .col-lg-3:nth-of-type(4) .team-card .info .social-icons {
    background-image: var(--ln-purple1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    margin-bottom: 30px;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card .img {
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card .info {
    padding: 25px;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card .info .social-icons {
    margin-top: 15px;
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-pg-st1 .tc-pg-team-st1 .cards .team-card .info .social-icons a {
    font-size: 16px;
    font-weight: bold;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
}

@media screen and (max-width: 991px) {
    .tc-pg-team-st1 .cards .team-card {
        margin-bottom: 30px;
    }
}

.tc-pg-cases-st5 {
    position: relative;
    padding-bottom: 150px;
}

.tc-pg-cases-st5 .case-card {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.tc-pg-cases-st5 .case-card:hover .img .float-arrow {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tc-pg-cases-st5 .case-card .img {
    display: block;
    position: relative;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
}

.tc-pg-cases-st5 .case-card .img .float-arrow {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-image: var(--ln-orange1);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tc-pg-cases-st5 .case-card .info {
    padding: 30px;
}

.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(2) .case-card .img,
.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(5) .case-card .img,
.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(8) .case-card .img,
.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(11) .case-card .img,
.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(14) .case-card .img,
.tc-pg-cases-st5 .row .col-lg-4:nth-of-type(17) .case-card .img {
    height: 400px;
}

@media screen and (max-width: 991px) {
    .tc-pg-cases-st5 .case-card .img {
        height: 350px !important;
    }
}

.case-det-pg-st1 .text-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    text-transform: capitalize;
}

.case-det-pg-st1 .text-list li strong {
    width: 50%;
}

.case-det-pg-st1 .tc-pg-related-st1 {
    position: relative;
    padding: 150px 0;
}

.case-det-pg-st1 .case-card {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    margin-top: 50px;
}

.case-det-pg-st1 .case-card:hover .img .float-arrow {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.case-det-pg-st1 .case-card .img {
    display: block;
    position: relative;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
}

.case-det-pg-st1 .case-card .img .float-arrow {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-image: var(--ln-orange1);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.case-det-pg-st1 .case-card .info {
    padding: 30px;
}

@media screen and (max-width: 991px) {
    .case-det-pg-st1 .img {
        height: 400px !important;
    }
    .case-det-pg-st1 .sub-imgs .img {
        height: 300px !important;
    }
    .case-det-pg-st1 .case-card .img {
        height: 350px !important;
    }
}

.testimonials-pg-st1 {
    position: relative;
}

.testimonials-pg-st1 .testi-card {
    padding: 35px 20px;
    border-radius: 30px;
    background: #FFF;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.testimonials-pg-st1 .testi-card .user-rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.testimonials-pg-st1 .testi-card .user-rate .icon {
    height: 30px;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.testimonials-pg-st1 .testi-card .user-rate .stars {
    background-image: var(--ln-orange1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.testimonials-pg-st1 .testi-card .user-rate p {
    font-size: 16px;
    color: #5B5B5B;
    margin-bottom: 5px;
}

.testimonials-pg-st1 .testi-card .main-text {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.8;
}

.testimonials-pg-st1 .testi-card .user-info h6 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonials-pg-st1 .testi-card .user-info p {
    font-size: 16px;
    color: #5B5B5B;
}

.faq-pg-st1 {
    /* --------------- faq st3 --------------- */
    /* --------------- video st3 --------------- */
}

.faq-pg-st1 .tc-faq-st3 {
    position: relative;
    padding: 50px 0;
}

.faq-pg-st1 .tc-faq-st3 .accordion .accordion-item {
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid #9994;
    border-radius: 0;
}

.faq-pg-st1 .tc-faq-st3 .accordion .accordion-item .accordion-button {
    font-size: 24px;
    padding: 20px 30px;
    color: #191919;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: transparent;
}

.faq-pg-st1 .tc-faq-st3 .accordion .accordion-item .accordion-button::after {
    background-size: 15px;
    margin-left: 0;
    margin-right: 10px;
}

.faq-pg-st1 .tc-faq-st3 .accordion .accordion-item .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.faq-pg-st1 .tc-faq-st3 .accordion .accordion-item .accordion-body {
    padding: 0 30px 30px;
}

@media screen and (max-width: 991px) and (max-width: 991px) {
    .faq-pg-st1 .tc-faq-st3 .img {
        margin-bottom: 30px;
    }
}

.faq-pg-st1 .tc-video-st3 {
    position: relative;
    padding: 75px 0 0;
}

.faq-pg-st1 .tc-video-st3 .vid-img {
    display: block;
    width: 100%;
}

.faq-pg-st1 .tc-video-st3 .vid-img img {
    display: block;
    height: 100%;
    width: 100%;
}

.price-table-pg-st1 {
    /* --------------- pricing st1 --------------- */
    /* --------------- video st1 --------------- */
    /* --------------- choose st1 --------------- */
}

.price-table-pg-st1 .tc-pricing-st1 {
    position: relative;
    padding: 0;
    background-image: none;
    overflow: hidden;
}

.price-table-pg-st1 .tc-pricing-st1 .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 5s ease-in-out;
    transition: all 5s ease-in-out;
}

.price-table-pg-st1 .tc-pricing-st1 .line.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.price-table-pg-st1 .tc-pricing-st1 .row .col-lg-4:nth-of-type(2) .price-card .card-body::before {
    background-image: var(--ln-green1);
}

.price-table-pg-st1 .tc-pricing-st1 .row .col-lg-4:nth-of-type(3) .price-card .card-body::before {
    background-image: var(--ln-blue1);
}

.price-table-pg-st1 .tc-pricing-st1 .price-card {
    position: relative;
    padding: 30px;
    background-color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-head {
    padding: 20px 0;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body {
    position: relative;
    padding: 30px 20px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 30px;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: var(--ln-orange1);
    opacity: 0.1;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body .price {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body .price small {
    font-size: 16px;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body .card-list li {
    font-size: 16px;
    margin: 15px 0;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body .card-list li strong {
    color: #191919;
}

.price-table-pg-st1 .tc-pricing-st1 .price-card .card-body .card-list li .fa-check {
    font-size: 13px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.price-table-pg-st1 .tc-pricing-st1 .marq-text {
    position: relative;
    overflow: hidden;
    margin: 150px 0;
}

.price-table-pg-st1 .tc-pricing-st1 .marq-text .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.price-table-pg-st1 .tc-pricing-st1 .marq-text .swiper-slide {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}

.price-table-pg-st1 .tc-pricing-st1 .marq-text h2 {
    font-size: 120px;
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .price-table-pg-st1 .tc-pricing-st1 .price-card {
        margin-top: 30px;
    }
    .price-table-pg-st1 .tc-pricing-st1 .marq-text h2 {
        font-size: 60px;
    }
}

.price-table-pg-st1 .tc-video-st1 {
    position: relative;
}

.price-table-pg-st1 .tc-video-st1 .video-card {
    position: relative;
}

.price-table-pg-st1 .tc-video-st1 .video-card .bg {
    height: 700px;
    width: 100%;
    border-radius: 30px;
    -o-object-fit: cover;
    object-fit: cover;
}

.price-table-pg-st1 .tc-video-st1 .video-card .float-cont {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 80px 4vw;
    z-index: 2;
}

.price-table-pg-st1 .tc-video-st1 .video-card .float-cont .play-btn {
    width: 150px;
    height: 150px;
    background-image: var(--ln-orange1);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.price-table-pg-st1 .tc-video-st1 .video-card .float-cont .title {
    font-size: 52px;
    color: #fff;
    margin-top: 40px;
}

.price-table-pg-st1 .tc-choose-st1 {
    position: relative;
    padding: 120px 0;
    background-image: url(../img/choose_bg.png);
    background-size: cover;
    background-position: bottom;
}

.price-table-pg-st1 .tc-choose-st1 .num-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.price-table-pg-st1 .tc-choose-st1 .num-line.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.price-table-pg-st1 .tc-choose-st1 .choose-card {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.price-table-pg-st1 .tc-choose-st1 .choose-card:hover .arrow {
    color: var(--cr-orange1);
}

.price-table-pg-st1 .tc-choose-st1 .choose-card:hover .arrow::before {
    background-color: var(--cr-orange1);
}

.price-table-pg-st1 .tc-choose-st1 .choose-card .icon {
    height: 90px;
    margin-bottom: 30px;
}

.price-table-pg-st1 .tc-choose-st1 .choose-card .arrow {
    position: relative;
    margin-top: 40px;
    font-size: 15px;
    -webkit-padding-start: 32px;
    padding-inline-start: 32px;
    color: #ccc;
}

.price-table-pg-st1 .tc-choose-st1 .choose-card .arrow::before {
    position: absolute;
    content: "";
    left: 0;
    top: calc(50% - 2px);
    width: 40px;
    height: 2px;
    background-color: #ccc;
}

.price-table-pg-st1 .tc-choose-st1 .numbers {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    padding: 4vw;
    -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}

.price-table-pg-st1 .tc-choose-st1 .numbers .num-card {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.price-table-pg-st1 .tc-choose-st1 .numbers .num-card .shap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .price-table-pg-st1 .tc-choose-st1 {
        padding-bottom: 0;
    }
    .price-table-pg-st1 .tc-choose-st1 .numbers .num-card {
        margin: 25px 0;
    }
}

.shop-pg-st1 .tc-pg-shop-banner-st1 {
    position: relative;
    padding: 75px 0;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card {
    position: relative;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .img {
    height: 700px;
    border-radius: 30px;
    overflow: hidden;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .info {
    position: absolute;
    padding: calc(3vw + 30px);
    left: 0;
    top: 0;
    z-index: 10;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .info .title {
    position: relative;
    padding: 30px;
    margin-top: 20px;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .info .title .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .info .title h2 {
    position: relative;
    font-size: 82px;
    z-index: 10;
}

.shop-pg-st1 .tc-pg-products-st1 {
    position: relative;
    padding: 75px 0;
}

.products .product-card {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.products .product-card:hover .img .float-arrow {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.products .product-card .img {
    height: 370px;
    position: relative;
}

.products .product-card .float-arrow {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-image: var(--ln-orange1);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.products .product-card .info .tags {
    font-size: 12px;
}

.products .product-card .info .price {
    font-size: 21px;
    color: #000;
}

.products .product-card .info .price small {
    font-size: 15px;
    color: #666;
}

@media screen and (max-width: 991px) {
    .shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .img {
        height: 350px;
    }
    .shop-pg-st1 .tc-pg-shop-banner-st1 .banner-card .info .title h2 {
        font-size: 25px;
    }
    .shop-pg-st1 .tc-pg-products-st1 .products .product-card {
        background-color: #f9f9f9;
        padding: 20px;
    }
    .shop-pg-st1 .tc-pg-products-st1 .products .product-card .img {
        height: 200px;
    }
}

.shop-det-pg-st1 {
    position: relative;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-top {
    margin-bottom: 30px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-top .img {
    height: 550px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-top .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-thumbs {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-thumbs .img {
    height: 100%;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-thumbs .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .info {
    position: relative;
    margin-top: 50px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .info .rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    margin-top: 30px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .info .rate .stars {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .info .product-qyt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .info .product-qyt .txt {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    font-size: 16px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .add-more {
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #999;
    border-radius: 30px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .add-more .qt {
    min-width: 40px;
    text-align: center;
    color: #000;
    font-weight: bold;
    width: 110px;
}

.shop-det-pg-st1 .tc-pg-slider-st1 .add-more span {
    cursor: pointer;
    padding: 5px;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 {
    position: relative;
    padding: 75px 0;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .nav-pills {
    position: relative;
    margin-bottom: 30px;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .nav-pills .nav-link {
    padding: 15px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #9993;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
    color: #191919;
    background-color: transparent;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .nav-pills .nav-link.active,
.shop-det-pg-st1 .tc-pg-subInfo-st1 .nav-pills .nav-link:active {
    background-image: var(--ln-orange1);
    color: #fff;
    border-color: transparent;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .check-list {
    margin-top: 40px;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .check-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    color: #191919;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .check-list li .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews {
    position: relative;
    padding: 4vw;
    border-radius: 15px;
    background-image: linear-gradient(126deg, #FF5F6D11 22.58%, #FFC37111 73.54%);
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .stars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    color: #d0d0d0;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .stars .active {
    color: #ffba00;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars {
    display: block;
    position: relative;
    text-align: end;
    margin-bottom: 30px;
    direction: rtl;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input {
    border-radius: 0;
    visibility: hidden;
    width: 20px;
    cursor: pointer;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input:after {
    content: "";
    font-family: "Font Awesome 5 pro";
    font-weight: 900;
    font-size: 20px;
    color: #eee;
    visibility: visible;
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input:hover:after {
    opacity: 0.8;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input:checked:after {
    color: #fc0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input:checked~input:after {
    color: #fc0;
}

.shop-det-pg-st1 .tc-pg-subInfo-st1 .product-reviews .rate-stars input:not(:checked):after {
    color: #eee;
}

.shop-det-pg-st1 .form-check-input:checked {
    background-color: var(--cr-orange1);
    border-color: var(--cr-orange1);
}

.shop-det-pg-st1 .form-control {
    border-radius: 50px;
    min-height: 50px;
    padding: 15px;
}

.shop-det-pg-st1 textarea.form-control {
    border-radius: 15px;
}

@media screen and (max-width: 991px) {
    .shop-det-pg-st1 .tc-pg-slider-st1 .img-slider .gallery-top .img {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
    }
    .shop-det-pg-st1 .tc-pg-subInfo-st1 {
        border-top: 1px solid #9999;
        border-bottom: 1px solid #9999;
        margin-top: 75px;
    }
    .shop-det-pg-st1 .tc-pg-subInfo-st1 .nav-pills .nav-link {
        font-size: 14px;
        padding: 12px 30px;
    }
}

.post-pg-st1 .tc-pg-post-st1 {
    position: relative;
    padding: 120px 0;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .main-img {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .title {
    font-size: 50px;
    font-weight: 500;
    margin-top: 30px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .check-list {
    margin-top: 30px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .check-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    color: #191919;
    font-size: 16px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .check-list li .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .text-list {
    margin-top: 30px;
    color: #191919;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .text-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    text-transform: capitalize;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .text-list li strong {
    width: 50%;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .author-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background-image: linear-gradient(126deg, #FF5F6D11 22.58%, #FFC37111 73.54%);
    margin-top: 50px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .author-card .img {
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .author-card .social-links a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: var(--ln-orange1);
    color: #fff;
    margin: 5px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper {
    margin-top: 120px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper .comments .comment-card {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #9995;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper .comments .comment-card .img {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper .comments .comment-card .butn {
    padding: 8px 25px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper .form-group {
    position: relative;
    margin-bottom: 30px;
}

.post-pg-st1 .tc-pg-post-st1 .main-side .comments-wrapper .form-group .form-control {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #9995;
    padding: 10px 0;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .widget-card {
    position: relative;
    border: 1px solid #9995;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .search-card .form-group {
    position: relative;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .search-card .form-group .form-control {
    padding: 15px 20px;
    border: 0;
    border-radius: 50px;
    min-height: 50px;
    background-image: linear-gradient(126deg, #FF5F6D11 22.58%, #FFC37111 73.54%);
}

.post-pg-st1 .tc-pg-post-st1 .widgets .search-card .form-group button {
    position: absolute;
    right: 15px;
    top: 15px;
    border: 0;
    background: transparent;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .service-card li {
    margin-bottom: 15px;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .service-card li:last-of-type {
    margin-bottom: 0;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .service-card li a {
    display: block;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
    background-image: linear-gradient(126deg, #FF5F6D11 22.58%, #FFC37111 73.54%);
}

.post-pg-st1 .tc-pg-post-st1 .widgets .service-card li a:hover {
    background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
    color: #fff;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .social-icons a {
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    font-size: 18px;
    color: #000;
    background-image: linear-gradient(126deg, #FF5F6D11 22.58%, #FFC37111 73.54%);
}

.post-pg-st1 .tc-pg-post-st1 .widgets .social-icons a:hover {
    background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
    color: #fff;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .recent-news .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .recent-news .item:last-of-type {
    margin-bottom: 0;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .recent-news .item .img {
    border-radius: 30px;
    overflow: hidden;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 115px;
    height: 115px;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .insta-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .insta-cards .item {
    position: relative;
    display: block;
    margin-bottom: 15px;
    width: 110px;
    height: 110px;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .insta-cards .item:hover .icon {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .insta-cards .item .img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
}

.post-pg-st1 .tc-pg-post-st1 .widgets .insta-cards .item .icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-image: var(--ln-orange1);
    color: #fff;
    font-size: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media screen and (max-width: 991px) {
    .post-pg-st1 .tc-pg-post-st1 .main-side .main-img {
        height: 400px;
    }
    .post-pg-st1 .tc-pg-post-st1 .main-side .title {
        font-size: 30px;
    }
    .post-pg-st1 .tc-pg-post-st1 .main-side .author-card .img {
        height: 250px;
        margin-bottom: 30px;
    }
    .post-pg-st1 .tc-pg-post-st1 .main-side .author-card .social-links a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: 20px 5px !important;
    }
}

.contact-pg-st1 .tc-pg-contact-st1 {
    padding: 120px 0;
}

.contact-pg-st1 .tc-pg-contact-st1 .map {
    height: 850px;
    border-radius: 30px;
    overflow: hidden;
}

.contact-pg-st1 .tc-pg-contact-st1 .map iframe {
    margin-bottom: -6px;
    -webkit-filter: grayscale(100%) invert(90%);
    filter: grayscale(100%) invert(90%);
}

.contact-pg-st1 .tc-pg-contact-st1 .contact-info .icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0;
}

.contact-pg-st1 .tc-pg-contact-st1 .contact-info .icon-list li .icon {
    height: 40px;
    width: 40px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.contact-pg-st1 .tc-pg-contact-st1 .form {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    z-index: 10;
    margin-top: -150px;
    background-color: #fff;
}

.contact-pg-st1 .tc-pg-contact-st1 .form .form-group {
    margin-bottom: 30px;
}

.contact-pg-st1 .tc-pg-contact-st1 .form .form-group .form-control {
    border: 0;
    border-bottom: 1px solid #9994;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .contact-pg-st1 .tc-pg-contact-st1 .map {
        height: 400px;
    }
    .contact-pg-st1 .tc-pg-contact-st1 .form {
        margin-top: 50px;
        padding: 0;
    }
}

.inner-pages-st1 .swiper-pagination {
    bottom: 0;
    text-align: start;
}

.inner-pages-st1 .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background-color: #000;
    margin: 10px;
    opacity: 1;
}

.inner-pages-st1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    outline: 1px solid var(--cr-orange1);
    background-color: var(--cr-orange1);
    outline-offset: 8px;
}

.inner-pages-st1 .join {
    position: relative;
    padding-top: 50px;
    text-align: center;
}

.inner-pages-st1 .join .lg-txt {
    font-size: calc(6vw + 30px);
    opacity: 0.1;
    font-weight: bold;
}

.inner-pages-st1 .join .butn-cir {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background-image: var(--ln-orange1);
    margin: -70px auto 0;
    position: relative;
    z-index: 20;
}

@media screen and (max-width: 991px) {
    .home-st1 br {
        display: none;
    }
    .home-st1 .fsz-50 {
        font-size: 30px !important;
    }
    .home-st1 .fsz-45 {
        font-size: 25px !important;
    }
    .home-st1 .fsz-40 {
        font-size: 25px !important;
    }
    .home-st1 .mb-90 {
        margin-bottom: 40px !important;
    }
    .home-st1 .fsz-30 {
        font-size: 18px !important;
    }
    .home-st1 .mb-50 {
        margin-bottom: 30px !important;
    }
    .home-st1 .mt-5 {
        margin-top: 2rem !important;
    }
}