@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --clr1: #2e365e;
    --clr2: #077aba;
    --clr2_light: #077bba0a;
    --clr3: #000000;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    overflow-x: hidden;
}

a {
    color: #353842;
    text-decoration: none;
}

.logo img {
    /* width: 110px; */
    width: 80px;
}

hr.dropdown-divider {
    height: 0;
    margin: 0 !important;
    overflow: hidden;
    border-top: 1px solid rgb(255 255 255 / 44%) !important;
    opacity: 1;
}

/* .dropend ul.dropdown-menu li:first-child {
    background: #793c76;
} */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 250px; */
    background: #ffffff;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
    z-index: 99;
    padding: .5rem 60px !important;
}

nav .navbar {
    height: 100%;
    max-width: 1690px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 0px;
}

.navbar-expand-lg .navbar-collapse {
    flex: 0 1 800px !important;
    flex-direction: row-reverse;
}

a.nav-link {
    font-size: 18px;
    color: var(--clr2);
    font-size: 17px;
    font-weight: 500;
}

li.nav-item {
    padding: 0 20px;
}

.dropdown-menu {
    padding: 0px;
    line-height: 40px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
    z-index: 2;
    width: max-content;
    top: 100%;
    left: 0;
    margin-top: 13px;
    border: 1px solid #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.dropdown-item {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 0 15px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: black;
    text-decoration: none;
    background-color: white;
}

.d-none1 {
    display: none;
}

/*nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
    margin: 0px;
    position: relative;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--clr2);
  font-size: 17px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow, .links li:hover .htmlnew-arrow,  .links li:hover .htmlwhat-arrow
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--clr2);
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
    padding: 0px;
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background:linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  width: max-content;
}
nav .navbar .links li:hover .htmlCss-sub-menu, nav .navbar .links li:hover .htmlNew-sub-menu, nav .navbar .links li:hover .htmlWhat-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding:0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  line-height: 40px;
}*/

h2.under_cc {
    font-size: 50px !important;
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
    margin-left: 5px;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .links li .more .more-arrow {
    color: white;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
    margin-left: 30px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: var(--clr2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 41px;
    opacity: 1;
    pointer-events: auto;
    background: var(--clr2);
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--clr2);
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

*/

/*---------------------Header Start-----------------*/
.logo {
    padding: 5px 0px 0px 0px;
}

.register_btn {
    margin-top: 2rem;
    padding: .8rem 1.7rem;
    font-size: 18px;
}

.log_in {
    border: 1px solid grey;
    padding: 10px 35px !important;
    border-radius: 5px;
    background: #98da6d;
}

.btn_shd {
    background: var(--clr2);
    width: 157px;
    height: 53px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    /* margin: auto; */
    border: 1px solid white;
    position: relative;
    /* left: 440px; */
}

.btn_shd:before {
    content: "Call Us";
    color: #FFF;
    /* font-family: 'Poppins'; */
    font-size: 16px;
    line-height: 53px;
    position: absolute;
    font-weight: 700;
    margin: auto;
    margin-left: 50%;
    transition: all 1s ease-in-out;
    transform: translate(-50%, 0%);
}

.btn_shd:hover:before {
    position: absolute;
    transform: translateX(100px);
    transition: all 1s ease-in-out;
}

#setting {
    color: #FFF;
    font-size: 25px;
    margin: auto;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    transform: translateX(-120px);
    transition: all 1s ease-in-out;
}

.btn_shd:hover #setting {
    transform: translateX(0px);
    animation: setting 2s ease-in-out infinite;
    animation-delay: .9s;
    transition: all 1s ease-in-out;
}

@keyframes setting {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

/*span.effect-1 {
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    font-size: 97px;
    line-height: 1.08;
    font-family: "Merriweather", serif;
    font-weight: 900;
    font-style: normal;
}*/
/*------------------------------Header end----------------*/
/*------------------------------Banner start--------------*/
.pt-170 {
    padding-top: 170px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pt-35 {
    padding-top: 35px;
}

.pb-110 {
    padding-bottom: 80px;
}

.pt-110 {
    padding-top: 80px;
}

.banner-area-nine {
    background-image: url(../assets/banner/bg_shape.jpg);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
}

.bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
}

.banner-area-nine .inner {
    overflow: hidden;
}

.banner-area-nine .inner .banner-image-right-top {
    position: absolute;
    right: -13%;
    top: -23%;
    padding: 52px;
    border: 1px dashed #E9D1CB;
    border-radius: 50%;
    z-index: -1;
}

.banner-area-nine .inner .banner-image-right-top img {
    padding: 88px;
    border-radius: 50%;
    background: #fff;
}

.banner-area-nine .inner .banner-image-left-bottom {
    position: absolute;
    right: 4%;
    bottom: 3%;
    z-index: -1;
}

.banner-area-nine .banner-inner-content {
    /* text-align: center; */
    height: 715px;
    max-width: 100%;
    /* margin: auto; */
    display: flex;
    align-items: center;
    margin-left: 5rem;
}

.banner-area-nine .banner-inner-content .title {
    color: #212429;
    /*
    text-align: center;*/
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 2rem;
}

.banner-area-nine .banner-inner-content p.disc {
    max-width: 80%;
    /*
    margin: auto;*/
    display: block;
}

p.disc {
    font-size: 22px;
    line-height: 36px;
}

.banner-area-nine .banner-inner-content a.rts-btn {
    /* display: block; */
    /* max-width: max-content; */
    /* margin: auto; */
    margin-right: 25px;
    text-align: center;
}

.rts-btn.btn-nine {
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    border-radius: 3px !important;
    color: #fff !important;
    /*
    border: 1px solid #5e3c884d;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.rts-btn {
    width: 138px;
    height: 54px;
    padding: 17px 30px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    border-radius: 15px;
}

.rts-mail-information i {
    color: #d35061;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 80px;
}

.rts-mail-information {
    position: absolute;
    left: -108px;
    top: 62%;
    transform: rotate(-90deg);
    cursor: vertical-text;
    font-size: 14px;
    font-weight: 400;
}

.rts-mail-information::after {
    position: absolute;
    content: "";
    left: 57px;
    width: 1px;
    bottom: -20px;
    background: #d54f60;
    height: 60px;
    transform: rotate(-90deg);
}

.hero-content-user {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.hero-content-user .user-image {
    margin-right: 10px;
}

.hero-content-user .user-image li:first-child {
    margin-left: 0;
}

.hero-content-user .user-image li {
    margin-left: -18px;
    display: inline-block;
}

.hero-content-user .user-image li img {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    border: 3px solid #FFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.06);
}

.hero-content-user span {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.32px;
    color: #efb142;
}

.hero-content-logo {
    margin-top: 50px;
}

.hero-content-logo .logoo li {
    margin-right: 30px;
    display: inline-block;
}

.hero-content-logo img {
    width: 90px;
}

.main-wrapper {
    margin-top: 5rem;
}

.eff_it {
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    font-size: 56px;
    line-height: 1.2;
}





.dtr-social-title::after {
    background-color: rgba(17, 32, 77, 0.15);
}

.dtr-social .dtr-social-button:hover::before,
.dtr-social-list .dtr-social-button:hover span {
    color: var(--clr2);
}

.dtr-social-list {
    margin: 0;
    padding-top: 25px;
    padding-left: 0px;
}

.dtr-social-list li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
}

.dtr-social-list a {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    border: 0;
    border-radius: 0;
    z-index: 9;
}

.text-left.dtr-social-list li:first-child {
    margin-left: 0;
}

.text-right.dtr-social-list li:first-child {
    margin-right: 0;
}

.dtr-social-large .dtr-social-list a {
    font-size: 24px;
    line-height: 24px;
}

/*== styled social ==*/
.dtr-social .dtr-social-button::before {
    font-size: 24px;
    line-height: 55px;
}

.dtr-social-list .dtr-social-button {
    display: inline-block;
    padding: 0 15px;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
}

.dtr-social-list .dtr-social-button span {
    max-width: 0;
    -webkit-transition: max-width .7s;
    transition: max-width .7s;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    overflow: hidden;
    line-height: 55px;
    transform: translateX(15px);
    font-weight: 500;
}

.dtr-social-list .dtr-social-button:hover span {
    max-width: 400px;
    transform: translateX(15px);
    -webkit-transition: max-width 1.2s;
    transition: max-width 1.2s;
}

.dtr-styled-social.text-left li {
    margin: 0 1px 0 0;
}

.dtr-social-list .dtr-social-button span::after {
    content: '';
    margin-right: 15px;
}

.dtr-social-list .dtr-social-title {
    position: relative;
    padding-right: 115px;
    font-size: 16px;
}

.dtr-social-list .dtr-social-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -1px;
}

/*== social icons ==*/
.dtr-social a::before {
    display: inline-block;
    font-family: 'boxicons';
    vertical-align: middle;
    font-weight: normal;
}

.dtr-social a:focus {
    outline: none;
}

.dtr-social a.dtr-facebook::before {
    content: "\e931";
}

.dtr-social a.dtr-linkedin::before {
    content: "\e94e";
}

.dtr-social a.dtr-instagram::before {
    content: "\e943";
}

.bx-signal-4:before {
    content: "\ef36";
}

/*------------------------------Banner End----------------*/

/*-----------------------------About Section start-----------*/
.cta-area-bg {
    padding: 60px;
    /*
    border-radius: 16px;*/
}

.bg-darkGreen {
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    background-color: var(--clr2);
}

.cta-subtitle {
    font-size: 18px;
    color: #fff;
}

.section-title-light {
    font-size: 40px;
    color: #fff;
    line-height: 50px;
}

.section-desc-light {
    font-size: 20px;
    color: #fff;
}

.cta-btn-link {
    padding: 20px 30px;
    border-radius: 50px;
    background-color: #d54f60;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.cta-counter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-counter-item {
    background-color: #fff;
    padding: 20px 35px;
    border-radius: 10px;
    text-align: center;
}

.cta-counter-title {
    font-size: 40px;
    color: rgb(6 19 28);
}

.cta-counter-desc {
    font-size: 16px;
    line-height: 26px;
    color: rgb(91 91 91);
}

/*------------------------chat bottom seection----------------*/
/*----------------------service section---------------------*/
.bg-light1 {
    background-color: rgb(245 246 247);
}

.optech-iconbox-wrap.style-two {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.optech-iconbox-wrap {
    padding: 28px 55px;
    transition: all 0.4s;
    background-color: #fff;
    border-radius: 18px;
}

.optech-iconbox-wrap:hover {
    box-shadow: 0 12px 40px 4px rgba(10, 22, 94, 0.0784313725);
}

.optech-iconbox-wrap:hover .optech-iconbox-icon {
    /* background-color: rgb(110 91 142 / 28%); */
    background-color: var(--clr2);
}
.optech-iconbox-wrap:hover .optech-iconbox-icon img {
    filter: invert(1) brightness(1);
}

.optech-iconbox-wrap.style-two .optech-iconbox-icon {
    margin: 0;
    flex-shrink: 0;
}

.optech-iconbox-icon {
    width: 70px;
    height: 70px;
    display: flex;
    transition: all 0.4s;
    align-items: center;
    margin-bottom: 60px;
    border-radius: 10px;
    justify-content: center;
    background-color: var(--clr2_light);
    border: 1px solid #00000024;
}

.optech-iconbox-data h5 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    letter-spacing: -0.02em;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
}

.optech-iconbox-data p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #000;
}

.optech-icon-btn {
    line-height: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.4s;
    color: rgb(43 77 255);
}

.optech-icon-btn .icon-show {
    opacity: 0;
    transition: all 0.4s;
}

.optech-icon-btn i {
    font-weight: 400;
    font-size: 22px;
    margin-left: 8px;
    transition: all 0.4s;
}

.optech-iconbox-icon img {
    width: 44px;
}

/*------------------------Let's Talk Section start------------*/
.title-immd h4 {
    font-size: 35px;
    color: var(--clr2);
    font-weight: 800;
}

.title-immd p {
    font-size: 21px;
}

/*------------------------Let's Talk Section End------------*/
/*---------------faq section start----------------*/
.about-main-wrapper {
    margin-top: -117px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    left: 0;
    text-align: center;
    z-index: -33;
}

.about-main-wrapper span {
    font-size: 189px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 700;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: rgb(0 0 0 / 13%);
    -webkit-text-fill-color: var(--clr2_light);
}

.accordion-style-one .accordion-item {
    border: none;
    border-top: 1px solid #e0e0e0;
    border-radius: 0
}

.accordion-style-one .accordion-item .accordion-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5em;
    color: #19352d;
    padding: 30px 0;
    background: rgb(0 0 0 / 0%);
    border-radius: 0;
    box-shadow: none;
}

.accordion-style-one .accordion-item .accordion-button:not(.collapsed) {
    padding-bottom: 20px
}

.accordion-style-one .accordion-item .accordion-button:not(.collapsed):after {
    content: "-";
    font-size: 40px
}

.accordion-style-one .accordion-item .accordion-button:after {
    content: "+";
    font-weight: 300;
    font-size: 32px;
    background: none;
    width: auto;
    height: auto;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
}

.accordion-style-one .accordion-item .accordion-body {
    padding: 0 35px 20px 0;
    font-size: 16px;
    LINE-HEIGHT: 1.7;
    color: #7c7c7c;
    text-align: justify;
}

.accordion-style-one .accordion-item .accordion-body p {
    margin: 0
}

.accordion-style-one .accordion-item:last-child {
    border-bottom: 1px solid #e0e0e0
}

.faq-section-three {
    border: 1px solid lightgrey;
    padding: 29px;
    border-radius: 7px;
    box-shadow: 2px 2px 6px 7px #efefef;
}

.accordion-header button {
    margin-bottom: 0;
    font-size: 18px !important;
}


/*---------------faq section end----------------*/
.fancy-banner-three {
    background: url(../assets/img_17.jpg) no-repeat center;
    background-size: cover;
    padding: 80px 0;
    z-index: 1;
}

.fancy-banner-three:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #174034;
    mix-blend-mode: darken;
}

.fancy-banner-three .title-one h2 {
    font-size: 58px;
}

.title-one h2 {
    font-weight: 700;
    font-size: 35px;
    color: var(--clr1);
    line-height: 40px;
}

.title-one h5 {
    font-size: 20px;
}

.text-lg {
    font-size: 24px;
    line-height: 1.583em;
}

.fancy-banner-three .quote-btn.color-two {
    background: #9fe870;
}

.fancy-banner-three .quote-btn {
    width: 200px;
    height: 200px;
    padding: 16px;
    background: #ffe86b;
}

.fancy-banner-three .quote-btn:hover {
    transform: rotate(15deg);
}


/*------------offerings section start----------*/
.rs-work-progress {
    position: relative;
    z-index: 10;
}

.rs-work-progress__item {
    text-align: center;
    /* border-right: 0px solid #003A371F; */
    /* margin: 0px 45px; */
    /* margin-top: 20px; */
    position: relative;
    box-shadow: 0 12px 40px 4px rgba(10, 22, 94, 0.0784313725);
    border-radius: 7px;
    background: transparent;
}

.rs-work-progress__item .rs-arrow img {
    width: 53px;
}

.rs-work-progress__item .rs-top-inner {
    padding: 20px 20px 10px;
    background: var(--clr2_light);
    text-align: center;
    border-radius: 10px;
    position: relative;
    z-index: 10;
    transition: all ease 0.3s;
    border: 1px solid var(--clr2);
}

/*.rs-work-progress__item .rs-top-inner::before {
    position: absolute;
    content: "";
    left: 3px;
    right: 4px;
    top: 99.8%;
    height: 50px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transition: all 0.3s ease 0s;
    transition: all ease 0.3s;
}*/
.rs-work-progress__item .rs-top-inner .rs-thumb {
    border-radius: 10px;
    overflow: hidden;
}

.rs-work-progress__item .rs-top-inner .rs-thumb img {
    transition: all ease 0.3s;
    /* width: 100%; */
    border-radius: 9px;
}

.rs-work-progress__item .rs-top-inner .rs-title .title {
    color: #000000;
    margin-top: 26px;
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}

.rs-work-progress__item .rs-top-inner .rs-number {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
}

.rs-work-progress__item .rs-top-inner .rs-number span {
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #633368;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: all ease 0.3s;
}

.rs-work-progress__item .rs-top-inner .rs-number span::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.rs-work-progress__item .rs-text {
    text-align: center;
    margin-top: 82px;
}

.rs-work-progress__item .rs-text p {
    font-size: 16px;
}

.rs-work-progress__item .rs-arrow {
    position: absolute;
    right: -10px;
    top: 150px;
}


/*---------------Customers--------------------------*/
.tp-feature__bottom-shape {
    position: relative;
    left: 0;
    /* bottom: 80px; */
    /* z-index: -1; */
    width: 100%;
    top: -154px;
    /* border: 1px solid black; */
}

.tp-feature__bottom-shape img {
    width: 100%;
    transform: rotateZ(180deg);
}


.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}



.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

.Customer_bg {
    background-color: var(--clr2)0a;
}

.companies_container {
    display: flex;
    box-shadow: 0px 0px 28.8px 11.2px rgba(0, 0, 0, 0.09);
    border-radius: 20px;
}

.logo_container {
    display: flex;
    flex-wrap: wrap;
}

.logo_container figure {
    width: 50%;
    margin: 0;
    padding: 4rem 1rem;
    border-bottom: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.center_container {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    align-items: flex-start;
}

.center_container {
    max-width: 408px;
    width: 100%;
    background: linear-gradient(147deg, rgb(209 52 69) 10%, rgb(95 61 134) 68%);
    padding: 2rem 3rem;
}

.center_container h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.center_container h4 {
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    padding-top: 1rem;
    line-height: 130%;
}



/*---------------------------Testimonials section start------------------*/
/*.testi{
        padding: 60px 0;
        z-index: 1;
}*/
.testi .card {
    border-radius: 10px;
    margin: 12px;
}

.testimonial {
    background: url(../assets/footer-bg-3.png);
    background-size: cover;
    background-position: top center;
}

.testimonials-7-style {
    background: linear-gradient(180deg, rgba(235, 235, 235, 0) 0%, #F7F7F7 100%);
    border-radius: 9px;
    padding: 25px 25px 25px 25px;
    /* position: relative; */
    /* text-align: left; */
    border: 1px solid #EFEFEF;
    height: 35vh;
}

.testimonials-7-style a.thumb {
    position: absolute;
    top: -15%;
    z-index: 999 !important;
}

.testimonials-7-style .body .title {
    font-weight: 700;
    font-size: 17px;
    line-height: 32px;
    color: #181A1C;
    margin-bottom: 5px;
}

.testimonials-7-style .body p.disc {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 10px;
    text-align: justify;
}

.testimonials-7-style .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #D9D9D9;
}

.testimonials-7-style .footer .stars-area {
    background: linear-gradient(130.08deg, #FFFFFF 0%, #ECF0F3 100%);
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 40px #DDE3E9;
    border-radius: 40px;
    padding: 7px 12px;
}

.testimonials-7-style .footer .stars-area i {
    color: #FFAE00;
    margin: 0 1px;
}

.carousel-control-prev {
    left: -120px;
}

.carousel-control-next {
    right: -120px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    border-radius: 3px;
    background-color: var(--clr1);
    padding: 20px;
}







/*---------------------chat section-----------------------*/
.cta-box {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--clr2_light);
    border: 2px solid var(--clr2);
}

.cta-box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-box_img {
    height: 100%;
}

.cta-box_content {
    padding: 70px 70px 70px 55px;
    position: relative;
}

.cta-box_icon {
    position: absolute;
    right: 110px;
    bottom: 40px;
    filter: invert(1) brightness(0);
}

.title-area {
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

/*---------------------blog section------------------------*/

.cs_post.cs_style_3 {
    border-radius: 10px;
    border: 1px solid var(--clr2);
}

.cs_post.cs_style_3 .cs_post_thumb_out {
    position: relative;
    padding-left: 40px;
}

.cs_post.cs_style_3 .cs_post_thumb_wrap {
    padding: 0 0 15px 14px;
    width: 100%;
    border: 1px solid var(--clr2);
    border-width: 0 0 1px 1px;
    background-color: #fff;
    border-radius: 0 0 0 10px;
    margin-top: -1px;
    margin-left: 1px;
}

.cs_fs_24 {
    font-size: 18px;
    line-height: 1.717em;
}

.cs_post.cs_style_3 .cs_post_thumb {
    display: block;
    overflow: hidden;
    position: relative;
    /* height: 235px; */
    /* border: 1px solid #ab91ad; */
    border-radius: 0px 10px 0px 1px;
    box-shadow: 1px 1px 6px 1px #ab91adab;
}

.cs_post.cs_style_3 .cs_post_thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(var #ff5500), to(rgba(1, 15, 52, 0.1)));
    background: linear-gradient(0deg, var #ff5500 0%, rgba(1, 15, 52, 0.1) 100%);
    border-radius: 0 10px 0 10px;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_3 .cs_post_thumb img {
    /* height: 100%; */
    width: 100%;
    -o-object-fit: cover;
    /* object-fit: cover; */
}

.cs_post.cs_style_3 .cs_posted_by {
    position: absolute;
    color: black;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    left: 4px;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cs_post.cs_style_3 .cs_post_info {
    padding: 20px 30px 25px 30px;
}

.cs_post.cs_style_3 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.cs_mb_14 {
    margin-bottom: 14px;
}

.cs_post.cs_style_3 .cs_post_admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    line-height: 1.4em;
}

.cs_post.cs_style_3 .cs_post_admin_img {
    border: 3px solid #b5b5b5;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_post.cs_style_3 .cs_post_comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.cs_post.cs_style_3 .cs_post_comment::before {
    content: "";
    height: 20px;
    width: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 2px;
}

.cs_post.cs_style_3 .cs_post_info p,
.cs_post.cs_style_3 .cs_post_info h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
}

.cs_post.cs_style_3 .cs_text_btn {
    font-size: 15px;
    color: var(--clr2);
}

.cs_text_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}



/*------------footer section start-------------*/

.footer-section {
    background-image: linear-gradient(180deg, rgba(32, 92, 255, 0.041) 74.5%, rgba(48, 103, 255, .13));
    background-color: var(--clr2_light);
}

.footer-section .footer-top {
    padding: 40px 0;
}

.footer-section .footer-top .footer-widget .widget-title {
    margin-bottom: 25px;
}

.footer-section .footer-top .footer-widget .widget-title h4 {
    color: var(--clr2);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .9px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-section .footer-top .footer-widget .widget-title h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 107px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0b0c0c .01%, rgba(11, 12, 12, 0) 102.8%);
}

.footer-section .footer-top .footer-widget .menu-container {
    display: flex;
    gap: 30px;
}

.footer-section .footer-top .footer-widget .menu-container .widget-list li {
    margin-bottom: 20px;
    line-height: 1;
    transition: .5s;
    position: relative;
    list-style: none;
}

.footer-section .footer-top .footer-widget .menu-container .widget-list li a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .34px;
}

.menu-container ul.widget-list {
    padding: 0px;
}

.footer-section .footer-top .footer-widget .menu-container .widget-list li:after {
    content: "";
    width: 10px;
    height: 1px;
    background-color: black;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .35s;
}

.social_footer i {
    border: 1px solid #bababa;
    padding: 8px;
    border-radius: 18px;
    font-size: 19px;
    background: white;
}

.social_footer {
    display: flex;
    justify-content: normal;
    gap: 15px;
}

.footer-section .footer-top .footer-logo-area {
    position: relative;
}

.footer-section .footer-top .footer-logo-area .logo-bg .light {
    display: block;
}

.footer-section .footer-top .footer-logo-area .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-section .footer-top .footer-widget .widget-title.two {
    margin-bottom: 0;
}

.footer-section .footer-top .footer-widget .widget-title.two>span {
    color: var(--primary-color1);
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .36px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.footer-section .footer-top .footer-widget .widget-title.two h3 {
    color: var(--clr2);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

ul.star li {
    list-style: none;
}

.footer-section .footer-top .footer-widget .content p {
    color: var(--text-color);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    padding-top: 20px;
    margin-bottom: 0;
}

.footer-section .footer-top .footer-widget .rating-area {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 35px;
    padding-left: 0px;
}

.footer-section .footer-top .footer-widget .rating-area>li {
    position: relative;
    list-style: none;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .review {
    line-height: 1;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .review span {
    color: #4a3c7f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .review img {
    width: 64px;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .rating .star {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    line-height: 1;
    padding: 0px;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .rating .star li i {
    color: #e62415;
    font-size: 12px;
}

.footer-section .footer-top .footer-widget .rating-area>li .single-rating .rating span {
    color: var(--text-color);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.footer-section .contact-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section .contact-area .hotline-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .contact-area .hotline-area .icon {
    position: relative;
}

.footer-section .contact-area .hotline-area .icon svg {
    fill: var(--clr1);
}

.footer-section .contact-area .hotline-area .content span {
    color: var(--clr1);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    margin-bottom: 7px;
}

.footer-section .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #0b0c0c1a;
}

.footer-section .footer-bottom .copyright-area p {
    color: rgb(63 68 75);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.footer-section .footer-bottom .copyright-area p a {
    color: rgb(63 68 75);
    font-weight: 700;
    transition: .5s;
}

.footer-section .footer-bottom .copyright-area p a {
    color: rgb(63 68 75);
    font-weight: 700;
    transition: .5s;
}

.footer-section .footer-bottom .footer-bottom-right ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px;
    flex-wrap: wrap;
    line-height: 1;
    list-style: none;
}

.footer-section .footer-bottom .footer-bottom-right ul li a {
    color: rgb(63 68 75);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .3px;
    transition: .5s;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.btn-floating:hover img {
    margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    left: 66px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 15px;
    margin-left: 5px;
    transition: .2s;
    line-height: 2px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

.btn-floating.phone i {
    font-size: 19px;
}

/*------------footer section end--------------*/
/*@@@@@@@@@@@@-------------------About page-----------------@@@@@@@@@@@@@@@@*/



/*-------------------breadcrum start--------------------*/

.optech-breadcrumb {
    z-index: 0;
    text-align: center;
    padding: 50px 0 47px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: top; */
    /* top: -112px; */
    background: var(--clr2_light);
    border-radius: 24px;
    margin: 5px 10px;
}

.post__title {
    margin-bottom: 7px;
    background: linear-gradient(250deg, var(--clr2), var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    color: #080808;
    font-size: 34px;
    /* text-align: left; */
    font-weight: 600;
}

.breadcrumbs li a {
    color: var(--clr2);
}

/* .breadcrumbs ul {
    display: flex;
    text-align: left;
    justify-content: center;
    padding: 0px;
} */
.breadcrumbs ul li:first-child {
    padding-left: 0;
}

.breadcrumbs ul li {
    line-height: 0px;
    z-index: 0;
    font-size: 14px;
    padding: 0 6px;
    position: relative;
    display: inline-block;
    color: var(--clr1);
}

/*.breadcrumbs ul li:before {
    content: '';
    right: -12px;
    top: 6px;
    font-size: 20px;
    z-index: -1;
    line-height: 12px;
    position: absolute;
    color: #000000;
}
.breadcrumbs ul li:last-child {
    padding-right: 0;
}
*/
/*---------------about section---------------------*/
.fugu-innovative-services-thumb img {
    border-radius: 20px;
    width: 100%;
}

.about.style-13 .content {
    background-color: #fff;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
    padding: 3vw;
    margin-bottom: 100px;
    -webkit-box-shadow: 0px 100px 200px 0px #0000000a;
    box-shadow: 0px 100px 200px 0px #0000000a;
}

.about.style-13 .content::before {
    position: absolute;
    content: "";
    left: 20px;
    bottom: -15px;
    width: calc(100% - 40px);
    height: 40px;
    background-color: #e6e8ed;
    border-radius: 10px;
    z-index: -1;
}

.about-contact {
    margin: 20px 0px;
}

.about.style-13 .content .about-contact .item:hover {
    box-shadow: 1px 1px 1px 1px #b0aeaef5;
}

.about.style-13 .content .about-contact .item {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    /* -webkit-box-align: center; */
    -ms-flex-align: center;
    align-items: center;
    /* -webkit-box-pack: justify; */
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #9992;
    margin: 12px auto;
}

.about.style-13 .content .about-contact .item p {
    color: #999;
}

.about.style-13 .content .about-contact .item h6 {
    font-size: 16px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    font-weight: 600;
}

.about.style-13 .content .about-contact .item .icon img {
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.mt-30 {
    margin-top: 30px !important;
}

/*.box_about {
    padding: 21px 35px;
     border: 1px solid #e5e5e5; 
     border-style: dotted; 
    border-radius: 10px;
    box-shadow: 2px 2px 12px #8080803b;
}*/
/*--------------company section first--------------*/
.back_inno {
    border-radius: 25px;
    background: url(https://homy-next.vercel.app/_next/static/media/shape_28.1219e81a.svg) no-repeat 50%;
    background-size: cover;
    padding: 20px 25px;
}

.extra-mr {
    margin-right: 150px;
}

.optech-default-content {
    padding: 30px;
    border-radius: 30px;
}

.optech-thumb {
    z-index: 0;
    position: relative;
}

.optech-thumb-position {
    position: absolute;
    width: 78%;
    bottom: -180px;
    right: -175px;
}

.optech-shape1 {
    position: absolute;
    top: 70px;
    right: -82px;
    z-index: -1;
}

.optech-shape2 {
    position: absolute;
    bottom: -92px;
    left: 200px;
    z-index: -1;
}

.ml40 {
    margin-left: 40px;
}

.para_graph {
    font-size: 16px;
    text-align: justify;
    color: #676060;
    line-height: 26px;
}

.single-countdown {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.single-countdown .icon img {
    width: 45px;
}

.single-countdown .icon {
    margin-top: 11px;
}

.single-countdown .content_cc {
    padding-bottom: 35px;
    border-bottom: 1px solid #0b0c0c1a;
}

.single-countdown .content_cc .number {
    color: rgb(11 12 12);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.single-countdown .content_cc .number h5 span {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
}

.single-countdown .content_cc .number span {
    font-size: 27px;
    font-weight: 500;
}

.single-countdown .content_cc p {
    color: rgb(63 68 75);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

/*------------why choose us------------------------*/
.optech-iconbox-wrap4 {
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 18px;
    background-color: #ffffff;
    min-height: 100%;
}

.optech-iconbox-icon4 {
    width: 90px;
    height: 90px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 45px;
    justify-content: center;
    background-color: var(--clr2)1f;
}

.optech-iconbox-data4 {
    text-align: left;
}

.optech-iconbox-data4 h4 {
    margin-bottom: 10px !important;
    font-size: 23px;
    line-height: 32px;
    letter-spacing: -0.02em;
    font-weight: 600;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
}

.optech-iconbox-icon4 {
    -webkit-transition: 0.6s ease-out;
    -moz-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

.optech-iconbox-icon4:hover {
    -webkit-transform: rotateZ(720deg);
    -moz-transform: rotateZ(720deg);
    transform: rotatey(180deg);
}

/*----------------service offered------------*/
.home5-services-section {
    background: #fdf9f8;
    padding: 110px 7%;
}

.home5-services-section .services-card {
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 30px 25px;
    border-left: 1px solid #0b0c0c1a;
    border-bottom: 1px solid #0b0c0c1a;
}

.home5-services-section .services-card .icon svg {
    fill: rgb(63 68 75);
    transition: all .5s ease-out;
}

.home5-services-section .services-card .services-content .title-category {
    margin-bottom: 15px;
}

.home5-services-section .services-card .services-content .title-category h3 {
    color: rgb(11 12 12);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
}

.home5-services-section .services-card .services-content .title-category span {
    color: rgb(11 12 12);
    font-size: 18px;
    font-weight: 500;
    padding-left: 37px;
    line-height: 1;
    position: relative;
}

.home5-services-section .services-card .services-content .title-category span:after {
    content: "";
    height: 2px;
    width: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0b0c0c99;
}

.home5-services-section .services-card .services-content p {
    color: rgb(63 68 75);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.home5-services-section .services-card .services-content ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 0;
    margin: 0 0 30px;
}

.home5-services-section .services-card .services-content ul li {
    color: rgb(63 68 75);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    padding-top: 5px;
    margin-right: 20px;
}

.home5-services-section .services-card .services-content ul li i {
    color: var(--clr1);
}

.home5-services-section .services-card .services-content ul li i:before {
    font-weight: 800 !important;
}

.home5-services-section .services-card:hover .icon img {
    transform: rotate(1turn);
}

.home5-services-section .services-card .icon img {
    fill: rgb(63 68 75);
    transition: all .5s ease-out;
}

/*--------------last section------------*/
.content_join {
    border: 1px solid #6333681c;
    border-radius: 15px;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 12px 40px 4px rgba(10, 22, 94, 0.0784313725);
}

.commun-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33%;
    border-right: 1px solid #9993;
    padding: 20px 0;
}

.content_join .commun-card .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 25px;
}

.content_join .commun-card .icon i {
    font-size: 60px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear-gradient(117deg, var(--clr2) 40%, var(--clr1)));
    background-image: -o-linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    background-image: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    -webkit-filter: drop-shadow(-10px 10px 20px #cab8c2);
    filter: drop-shadow(-10px 10px 20px #cab8c2);
}

.inf h5 {
    font-size: 23px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.1;
}

.inf p {
    font-size: 12px;
    color: #666;
}

.content_join .commun-card:last-of-type {
    border: 0;
}



/*--------------------Pricing ---------------------------------*/
.pricing_block {
    background-color: #fff;
    border-radius: 20px;
    /* border-radius: var(--bs-border-radius-sm); */
    box-shadow: 1px 1px 2px 1px #763c774f;
    padding: 20px;
    position: relative;
}

.pricing_block .table_head {
    align-items: center;
    display: flex;
    gap: 30px;
}

.pricing_block .pricing_price_value {
    border-radius: 20px;
    flex: 0 0 auto;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    padding: 34px 15px 30px;
    text-align: center;
    width: 244px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
}

.pricing_block .pricing_price_value del {
    color: #d9d9d9;
    font-size: 20px;
    font-weight: 400;
}

.pricing_block .pricing_price_value small {
    font-size: 30px;
    font-weight: 600;
}

.pricing_block .pricing_price_value sub {
    color: #d9d9d9;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.pricing_block .pricing_price_value sub u {
    /* font-family: Axiforma SemiBold; */
    font-weight: 600;
}

.pricing_block .pricing_package_title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing_block .pricing_package_description {
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}

.pricing_block .icon_list {
    -webkit-columns: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    display: block;
    padding: 29px 0 25px;
}

.pricing_block .icon_list>li {
    padding: 5px 0;
}

.icon_list a,
.icon_list>li {
    align-items: flex-start;
    gap: 10px;
}

.icon_list>li {
    display: flex;
    font-size: 16px;
    line-height: 28px;
}

.unordered_list_block>li {
    display: block;
    width: 100%;
}

.pricing_block .icon_list .delete {
    opacity: .3;
}

.pricing_block .best_plan {
    max-width: 54px;
    position: absolute;
    right: 40px;
    top: 0;
}

span.pricing_annually {
    color: #fff;
}

.pricing_monthly {
    color: #fff;
}







.packages {
    margin: 20px;
    /* padding: 1em; */
    background-color: #ffffff;
    /* border: 1px solid #e7e7e7; */
}

.list li {
    font-size: 16px;
    line-height: 20px;
    list-style: none;
    border-bottom: 1px solid #f4f4f4;
    padding-inline-start: 0;
    border-width: 1px;
    padding: 10px;
}

.first {
    margin-top: 20px;
    border-top: 1px solid #f4f4f4;
}

.list {
    width: 100%;
    display: contents;
}

.top_price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.4em;
    margin: 15px 15px;
    border-radius: 50px;
    color: #f4f4f4;
}

.pricing-button {
    color: white;
    background-color: black;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    padding: 15px 40px 15px 40px;
    width: auto;
    height: auto;
    border-radius: 50px;
}

.pricing-button:hover {
    color: white;
    background-color: rgb(32, 32, 32);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 35px;
    top: -7px;
}

.toggle-btn span {
    font-size: 22px;
    font-weight: 500;
    color: #c8364c;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #763c77;
    -webkit-transition: 0.4s;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #50bfe6;
}

input:focus+.slider {
    box-shadow: 0 0 1px #50bfe6;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.package-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sucs_btn {
    border: 1px solid transparent;
    width: 182px;
    height: 54px;
    padding: 17px 30px;
    font-size: 16px;
    color: white;
    line-height: 21px;
    background: linear-gradient(117deg, var(--clr2) 40%, var(--clr1));
    font-weight: 500;
    border-radius: 15px;
}

.sucs_btn:hover {
    color: #010101;
    background: whitesmoke;
    border: 1px solid black;
}

/*-------------------------expert tech page ------------------*/

.optech-breadcrumb.vdd_banr {
    padding: 350px 0px 0px 0px !important;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.vd_banner {
    position: relative;
    top: -145px;
    background: transparent;
    /* color: #f1f1f1; */
    width: 100%;
    padding: 0px 70px;
}

.about1-section-area .about-images {
    position: relative;
}

.about1-section-area .about-images img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100px 100px 100px 100px;
}

.about1-section-area .about-images .star1 {
    height: 78px;
    width: 78px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.about1-section-area .about-content-area {
    position: relative;
    padding: 0 15px;
}

.about1-section-area .about-content-area .arrow-circle {
    background: #E4E0F9;
    border-radius: 50%;
    display: inline-block;
    padding: 10px;
    position: relative;
    margin-bottom: 32px;
}

.keyframe5 {
    position: relative;
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.about1-section-area .about-content-area .arrow-circle .arrow {
    position: absolute;
    left: 40%;
    right: 50%;
    top: 40%;
    bottom: 50%;
}

.about1-section-area .about-auhtor-images {
    position: relative;
    z-index: 1;
    top: 140px;
}

.about1-section-area .about-auhtor-images .elements5 {
    width: 205px;
    height: 141px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 4px;
    position: absolute;
    top: -100px;
    right: -50px;
    z-index: -1;
}

.about1-section-area .about-auhtor-images img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100px;
}


@keyframes animation-7 {
    0% {

        transform: rotate(0);
    }

    100% {

        transform: rotate(-1000deg);
    }
}


.card-style-eight {
    padding: 28px 28px 28px;
    background: #fff;
    position: relative;
}

/*.card-style-eight .icon {
    height: 55px;
}
.card-style-eight .icon img {
    max-height: 100%;
}*/
.header_service {
    font-size: 21px;
    color: var(--clr2);
    font-weight: 500;
}


.categories__wrap {
    background: #f7f7f9;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    -o-border-radius: 500px;
    -ms-border-radius: 500px;
    border-radius: 500px;
    padding: 52px 145px 45px;
    position: relative;
}

.categories__item {
    text-align: center;
}

.categories__item .icon {
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(201 201 221);
    border-radius: 150px;
    background: linear-gradient(180deg, #fff 0%, #F1F1FA 100%);
    font-size: 55px;
    color: #7F7E97;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    margin: 0 0 12px;
}

.categories__item .icon::before {
    content: "";
    position: absolute;
    top: 26px;
    right: 26px;
    background-image: url(../assets/expert_it/cat_star.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 26px;
    pointer-events: none;
}

.categories__item .name {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: rgb(22 20 57);
    margin: 0 0 7px;
}

.categories__item:hover .icon {
    background: rgb(87 81 225);
    box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
}


/*---------------services include-----------*/
.fugu-iconbox-wrap.fugu-iconbox-wrap5 {
    border: 1px solid rgba(19, 17, 26, .1);
}

.fugu-iconbox-wrap {
    border-radius: 3px;
    padding: 25px;
    display: flex;
    transition: all .4s;
    margin-bottom: 24px;
    min-height: 100%;
    align-items: center;
}

.fugu-iconbox-icon {
    flex-shrink: 0;
    margin-right: 40px;
}

.fugu-iconbox-data h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.fugu-iconbox-wrap.fugu-iconbox-wrap5:hover {
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 60px rgba(0, 0, 0, .06);
}


/*--------------------contact us-------------------*/
.contact-main-inner-area .contact-form-area {
    border-radius: 7px;
    background: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.09);
    padding: 32px;
}

.contact-main-inner-area .contact-form-area .input-area input,
.contact-main-inner-area .contact-form-area .input-area textarea {
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    width: 100%;
    font-size: 12px;
    color: rgb(9 11 14);
    padding: 16px;
    height: 48px;
    margin-top: 24px;
}

.contact-main-inner-area .contact-header .number-address-area .phone-number .img1 {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    transition: all 0.4s;
    background: #EFE9F8;
}

.contact-main-inner-area .contact-header .number-address-area .phone-number {
    display: flex;
    align-items: center;
    margin: 0 40px 0 0;
}

.contact-main-inner-area .contact-header .number-address-area {
    display: flex;
    align-items: center;
    border-radius: 7px;
    position: relative;
    transition: all 0.4s;
}

.contact-main-inner-area .contact-header .number-address-area .phone-number .content {
    margin-left: 16px;
}

.contact-main-inner-area .contact-header .number-address-area .phone-number .content p {
    color: rgb(61 76 94);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 8px;
    display: inline-block;
}

.contact-main-inner-area .contact-header .number-address-area .phone-number .content a {
    color: black;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;

    display: block;
    transition: all 0.4s;
}

.contact-main-inner-area .contact-header .number-address-area2 {
    display: flex;
    align-items: center;
    border-radius: 7px;
    position: relative;
    transition: all 0.4s;
    justify-content: space-between;
    background: #ffffff;
}

.contact-main-inner-area .contact-header .number-address-area2 .phone-number {
    display: flex;
    align-items: center;
}

.contact-main-inner-area .contact-header .number-address-area2 .phone-number .img1 {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    transition: all 0.4s;
    background: #EFE9F8;
}

.contact-main-inner-area .contact-header .number-address-area2 .phone-number .content {
    margin-left: 16px;
}

.contact-main-inner-area .contact-header .number-address-area2 .phone-number .content a {
    color: black;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    transition: all 0.4s;
}

.contact-main-inner-area .contact-header .number-address-area2 .phone-number .map {
    color: rgb(78 47 218);
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    text-decoration-line: underline;
}

button#contact_btn[disabled] {
    opacity: .75;
}


ul {
    padding: 0;
}

header.header-wrap {
    position: sticky;
    top: 0;
    background: #e2f5ff;
    z-index: 99;
}

header.header-wrap nav {
    background: transparent !important;
}

/* ------------------------------blog details---------------- */
.post-card {
    position: relative;
}

.post-card .post-image {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.post-card .post-desc {
    padding-top: 30px;
}

.post-card .post-meta li {
    text-transform: uppercase;
    position: relative;
    font-size: 15px;
}

.post-title {
    position: relative;
    margin-top: 10px;
}

.post-card .post-desc p {
    margin: 15px 0 20px;
}

.lead {
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
}

blockquote {
    padding: 40px 40px 40px 40px !important;
    border-radius: 20px;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    background-color: #f8fafc;
    color: #16072f;
    font-style: italic;
    border: 1px solid #e1e1e1;
}

.post-card .post-desc p {
    margin: 15px 0 20px;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
}

blockquote span {
    color: #763c77;
    margin-top: 10px;
    display: block;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
}

.post-meta ul li {
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    list-style-type: none;
    position: relative;
}

ul.list-inline .bx {
    color: #a8385d;
}

.post-title h2 {
    color: #763c77;
    font-weight: 600;
}

.list-icon li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.list-icon li i {
    color: #763c77;
    font-size: 22px;
    line-height: 20px;
    margin-right: 10px;
}

.themeht-sidebar {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e1e1e1;
}

.widget {
    margin-bottom: 50px;
}

.widget-title {
    padding-bottom: 10px;
    color: #000;
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.widget-title:before {
    content: "";
    border-radius: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient(250deg, #da3442, #763c77);
}

.blog-single-page {
    padding: 50px 0px;
}

.widget .recent-post-desc a {
    display: block;
    color: #9c2c4c;
    font-size: 15px;
    line-height: 25px;
}

.recent-post li {
    display: flex;
    align-items: center;
}

.widget .recent-post-desc {
    padding-left: 15px;
}

/* .widget .recent-post-desc a {
    display: block;
    color: var(--themeht-text-color);
    font-size: 15px;
    line-height: 25px;
} */

.widget .recent-post-desc .post-date {
    font-size: 15px;
}

.list-unstyled li {
    margin-bottom: 11px;
    font-weight: 400;
}

.widget .recent-post-thumb {
    width: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-logo-area .logo img {
    width: 180px;
    position: relative;
    top: -1.5rem;
}
.rs-top-inner .rs-title p {
    min-height: 48px;
    margin-bottom: 0;
}