@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

:root {
    --sora-font: 'Sora', sans-serif;
    --inter-font: 'Inter', sans-serif;
    --red-color: #f26864;
    --dark: #1d1d1d;
    --dark-gray: #161616;
    --offwhite: #ddd;
    --py100: 100px 0;
    --py60: 60px 0;
    --py50: 50px 0;
    --py40: 40px 0;
    --font16: 16px;
    --font48: 48px;
    --font30: 30px;
}

* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
}

/* scroll design start*/
body::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background-color: #1d1d1d;
}

body::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #434343, #434343 1px, transparent 0, transparent);
}

body::-webkit-scrollbar-thumb {
    background: #5e5e5e;
    border-radius: 8px;
    box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

/* scroll design end*/

.ados-navbar {
    background-color: rgba(32, 32, 32, 100%);
}

.ados-navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 0 16px;
    font-family: var(--inter-font);
    font-size: 16px;
    font-weight: 100;
}

.ados-navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--red-color);
}

.ados-navbar .navbar-nav .nav-item .btn-red {
    background-color: var(--red-color);
    color: #fff;
    border-radius: 1000vmax;
    padding: 6px 14px;
    font-size: var(--font16);
    font-family: var(--inter-font);
    font-weight: 500;
}

.ados-navbar .navbar-nav .nav-item .btn-red:hover {
    color: #fff;
}

.main-logo {
    width: 180px;
    height: auto;
}

/* .ados-navbar .navbar-nav .nav-item.nav-active {
    color: var(--red-color);
} */
.ados-navbar .navbar-nav .nav-item .selected {
    color: var(--red-color);
}

/* header section start css */
.header-section {
    line-height: 0;
    background: url(/img/video-thumb.jpg);
}

.header-section .header-video {
    position: relative;
    width: 100%;
    height: auto;
    background-size: cover;
}

/* about section start */
.about-section {
    background-color: #1d1d1d;
    padding: var(--py100);
}

.about-section .about-info .moreLess-button {
    cursor: pointer;
}

.moretext {
    display: none;
}

.about-section .about-info .sub-heading {
    border: 1px solid #fff;
    font-size: 12px;
    font-family: var(--inter-font);
    border-radius: 1000vmax;
    color: #fff;
    padding: 10px;
    position: relative;
    text-transform: uppercase;
}

.about-section .about-info .sub-heading b {
    color: var(--red-color);
    margin: 0 10px;
}

.about-section .about-info h1 {
    font-size: var(--font48);
    font-family: var(--sora-font);
    color: #fff;
    margin: 40px 0;
    font-weight: 600;
}

.about-section .about-info p {
    font-size: var(--font16);
    color: var(--offwhite);
    font-weight: 500;
    /* margin-bottom: 40px; */
}

.about-section .about-circle {
    position: relative;
    width: calc(100% - 20px);
}

.about-section .about-circle .text-circle {
    position: relative;
    display: inline-block;
}

.about-section .about-circle .text-circle svg {
    width: 532px;
    fill: #fff;
}

.about-section .about-circle .text-circle:after {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    border: 80px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.about-section .about-circle .text-circle {
    -webkit-animation-duration: 60s;
    animation-duration: 60s;
    text-transform: uppercase;
}

.text-circle {
    -webkit-animation-name: rotateCircle;
    animation-name: rotateCircle;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.about-section .about-circle .half-circle-img {
    height: 500px;
    width: 238px;
    border-bottom-right-radius: 536px;
    border-top-right-radius: 536px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-section .about-circle .half-circle-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

/* ados btn */
.ados-btn {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: var(--font16);
    text-decoration: none;
    position: relative;
}

.ados-btn .btn-arrow svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s linear;
}

.ados-btn .btn-arrow svg path {
    fill: #fff;
}

.ados-btn:hover {
    color: #f26864;
}

.ados-btn:hover .btn-arrow svg {
    transition: all 0.3s linear;
    transform: rotate(45deg);
    color: #f26864;
    width: 20px;
    height: 20px;
}

/* service-section start */
.service-section {
    padding: 200px 0;
    background-image: url(../img/service-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 100;
}

.service-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(29, 29, 29, 0.6);
    z-index: -1;
}

.service-section .service-heading {
    font-family: var(--sora-font);
    font-weight: 600;
    color: #fff;
    text-align: center;
    opacity: 0;
    position: relative;
    transition: all 0.6s ease-in-out;
}

.service-detail {
    position: relative;
    background-color: var(--dark);
}

.service-detail .service-col {
    border: 1px solid #353535;
    padding: 65px 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail .service-col .service-sign {
    width: 60px;
}

.service-detail .service-col .service-icon {
    margin-bottom: 40px;
}

.service-detail .service-col h3 {
    color: #fff;
    font-size: 20px;
    font-family: var(--inter-font);
    font-weight: 600;
    margin-bottom: 30px;
}

.service-detail .service-col p {
    color: #ddd;
    font-size: var(--font16);
}

.service-detail .service-col .btn-arrow {
    margin-top: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: #fff;
    text-decoration: none;
}

.service-detail .service-col .btn-arrow:hover {
    color: var(--red-color);
}

.service-detail .service-col .btn-arrow:hover span {
    transition: all 0.3s linear;
    transform: rotate(45deg);
    border: 1px solid var(--red-color);
    background-color: #353535;
}

.service-detail .service-col .btn-arrow span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.1);
    border: 1px solid #fff;
    transition: all 0.3s linear;
    margin-right: 20px;
}

.service-detail .service-col .btn-arrow .svg-arrow {
    width: 24px;
    height: 24px;
}

.service-detail .service-col .btn-arrow .svg-arrow path {
    fill: #fff;
}

.service-detail .service-col .btn-arrow:hover .svg-arrow path {
    fill: var(--red-color);
}

/* service-section end */

/*tech brand section start */
.tech-brand-section {
    padding: var(--py100);
    background-color: #161616;
}

.tech-brand-section .tech-brand-heading {
    font-size: var(--font48);
    font-family: var(--sora-font);
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}
.tech-brand-heading span {
    color: var(--red-color);
}
.tech-logos {
    display: flex;
    flex-wrap: wrap;
}
.tech-logo {
    padding: 72px 40px;
    text-align: center;
    width: 20%;
    border-right: 1px solid #414141;
    border-bottom: none;
}
.tech-logo:last-child {
    border-right: none;
}

.tech-logo img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.tech-logo img:hover {
    filter: none;
    -webkit-filter: saturate(100%);
}

/*tech brand section end */
/* adosphere statistcis start */
.adosphere-details img {
    width: 100%;
}

.adosphere-details-number {
    width: 100%;
}
.adosphere-details-img img {
    object-fit: fill;
    width: 100%;
    height: 100%;
    display: block;
}
.adosphere-details-img img {
    width: 100%;
    height: 100%;
}
.adosphere-statistics {
    /* padding: 225px; */
    display: flex;
    justify-content: center;
    flex-direction: column;

    height: 100%;
    padding: 0 100px;
    background-color: #161616;
}
.office-statistics {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.office-statistics .office-statistics-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.office-statistics .office-statistics-numbers h4 {
    font-family: var(--sora-font);
    font-size: var(--font48);
    color: var(--red-color);
    font-weight: bold;
}
.office-statistics .office-statistics-numbers p {
    font-family: var(--inter-font);
    color: white;
    font-weight: 500;
    font-size: 22px;
}

.office-experience {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #414141;
}
.office-experience .office-experience-numbers {
    display: flex;
    flex-direction: column;

    gap: 12px;
}
.office-experience .office-experience-numbers h4 {
    font-family: var(--sora-font);
    font-size: var(--font48);
    color: var(--red-color);
    font-weight: bold;
}
.office-experience .office-experience-numbers p {
    font-family: var(--inter-font);
    color: white;
    font-weight: 500;
    font-size: 22px;
}
.office-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.office-total-numbers {
    padding: 8px 20px;
    border: 1px solid #414141;
    border-radius: 100px;
}
.office-total-numbers p {
    font-family: var(--inter-font);
    font-weight: 500;
    font-size: 22px;
    color: white;
    margin-bottom: 0;
}
.office-total-numbers p span {
    color: var(--red-color);
    font-weight: bold;
}

/* adosphere statistcis end */

/* brand section start */

.brand-section {
    padding: var(--py100);
    background-color: #161616;
}

.brand-section .brand-heading {
    font-size: var(--font48);
    font-family: var(--sora-font);
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}
.brand-heading span {
    color: var(--red-color);
}

.brand-section .brand-logo {
    padding: 90px 20px;
    text-align: center;
    width: 15%;
}

.brand-section .brand-logo img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
    filter: grayscale(100%);
}

.brand-section .brand-logo:hover img {
    filter: none;
    -webkit-filter: saturate(100%);
}

.brand-section .brand-logo {
    width: 25%;
    padding: 90px 70px;
    text-align: center;
    box-sizing: border-box;
}

.brand-section .brand-logo img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}
.brand-section .brand-logo img:hover {
    filter: none;
    -webkit-filter: saturate(100%);
}

.brand-section .brand-logo:hover img {
    filter: none;
    -webkit-filter: saturate(100%);
}

/* All first 24: border */
.brand-section .brand-logo:nth-child(-n + 24) {
    border-right: 1px solid #414141;
    border-bottom: 1px solid #414141;
}

/* Remove right border every 6th (last in row for 6-col) */
.brand-section .brand-logo:nth-child(4),
.brand-section .brand-logo:nth-child(8),
.brand-section .brand-logo:nth-child(12),
.brand-section .brand-logo:nth-child(18),
.brand-section .brand-logo:nth-child(24) {
    border-right: none;
}
.brand-section .brand-logo:nth-child(5),
.brand-section .brand-logo:nth-child(6),
.brand-section .brand-logo:nth-child(7),
.brand-section .brand-logo:nth-child(8) {
    border-bottom: none;
}

/* Remove bottom border on last row (19–24) */

/* .brand-section .brand-logo:nth-child(-n + 18) {
    border-bottom: 0px;
} */

/* case studies section start */
.case-studies-bg {
    padding: 0;
}

.amaze-bg {
    background-color: #2dc6b2;
}

.amaze-bg .case-studies-detail {
    margin-left: 40px;
}

.nammur-bg {
    padding: var(--py40);
    background-color: #ef472a;
}

.nammur-bg .case-studies-detail {
    margin-left: 40px;
}

.sling-bg {
    background-color: #00b9ff;
}

.nutri-bg {
    background-color: #442464;
    padding: var(--py60);
}

.qtpi-bg {
    background-color: #900c3e;
    padding: var(--py60);
}

.qtpi-bg .case-studies-detail {
    margin-left: 40px;
}

.str8bat-bg {
    background-color: #c70039;
    padding: var(--py60);
}

.amaze-bg .amaze-img {
    display: none;
}

.sling-bg .sling-img {
    display: none;
}

.case-studies-bg .case-studies-detail {
    font-family: var(--inter-font);
    padding: 0 40px 0 0;
}

.case-studies-bg .case-studies-detail .sub-head {
    border: 1px solid #fff;
    border-radius: 1000vmax;
    color: #fff;
    padding: 10px 28px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}

.case-studies-bg .case-studies-detail h2 {
    font-family: var(--sora-font);
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    margin: 30px 0;
}

.case-studies-bg .ados-btn:hover {
    color: var(--dark-gray);
}

/* latest blog section start */
.blog-section {
    padding: var(--py100);
    background-color: #161616;
}

.blog-section .brand-heading {
    font-size: var(--font48);
    font-family: var(--sora-font);
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}

.blog-section .blog-detail {
    position: relative;
    margin-bottom: 40px;
    font-family: var(--sora-font) !important;
}
.blog-section .blog-detail .content {
    font-family: var(--sora-font) !important;
}

.blog-section .blog-detail .blog-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-position: center center;
    position: relative;
}

.blog-section .blog-detail .blog-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.blog-section .blog-detail:hover img {
    transform: rotate(5deg) scale(1.2);
    transition: all 0.5s ease-in-out;
}

.blog-section .blog-detail .blog-info {
    font-family: var(--inter-font);
    font-size: var(--font16);
    color: #fff;
    margin: 20px 0;
    font-weight: 200;
}

.blog-section .blog-detail .blog-img .date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    right: -42px;
    -webkit-transform: rotate(-90deg) translateX(-50%) translateY(100%);
    -ms-transform: rotate(-90deg) translateX(-50%) translateY(100%);
    transform: rotate(-90deg) translateX(-50%) translateY(100%);
    opacity: 1;
    padding: 2px 8px;
    background-color: var(--dark-gray);
    font-size: var(--font16);
    font-family: var(--inter-font);
    color: #fff;
    text-decoration: none;
}

.blog-read-more {
    text-align: center;
    position: relative;
}

.blog-read-more::before {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 40%;
    height: 1px;
    top: 50%;
    left: 0;
    z-index: 0;
}

.blog-read-more::after {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 40%;
    height: 1px;
    top: 50%;
    right: 0;
    z-index: 0;
}

.blog-read-more a {
    border: 1px solid #fff;
    border-radius: 1000vmax;
    color: #fff;
    padding: 10px 28px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    background-color: #1d1d1d;
}
.ados-prev-btn,
.ados-next-btn {
    color: #1d1d1d;
    border: 1px solid #1d1d1d;
    text-transform: uppercase;
    padding: 6px 16px;
    font-weight: 500;
    border-radius: 100px;
    font-size: var(--font16);
    text-decoration: none;
    position: relative;
}
.ados-prev-btn:hover,
.ados-next-btn:hover {
    color: #f26864;
    border: 1px solid #f26864;
}
/* reach-out-section start */
.reach-out-section {
    background-color: #1d1d1d;
    padding: var(--py100);
    position: relative;
}

.reach-out-section::before {
    content: '';
    position: absolute;
}

.reach-out-section .reach-out-detail {
    padding: var(--py100);
    background-image: url(../img/reach-out-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.reach-out-section .reach-out-detail h2 {
    font-family: var(--sora-font);
    font-size: var(--font48);
    color: #fff;
    font-weight: 600;
    margin: 30px 0;
}

.reach-out-section .cs-shape_1 {
    position: absolute;
    top: 25%;
    left: 10%;
    -webkit-animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.reach-out-section .cs-shape_2 {
    position: absolute;
    top: 35%;
    left: 85%;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.reach-out-section .cs-shape_3 {
    position: absolute;
    top: 68%;
    left: 35%;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.reach-out-section .cs-shape_1 {
    width: 15px;
    height: 15px;
    background-color: var(--red-color);
    border-radius: 50%;
    /* border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--red-color); */
}

.reach-out-section .cs-shape_2 {
    width: 10px;
    height: 10px;
    background-color: var(--red-color);
    border-radius: 50%;
}

.reach-out-section .cs-shape_3 {
    width: 16px;
    height: 16px;
    background-color: var(--red-color);
    border-radius: 50%;
}

@keyframes animo-x {
    50% {
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(44px);
    }
}

@keyframes semi-rotate-anim {
    50% {
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(25px) rotate(-53deg);
    }
}

/* google review start */
.google-review-section {
    background-color: #161616;
    position: relative;
    padding: var(--py100);
}

.google-review-section .google-review-detail {
    text-align: center;
    padding: 0 20px;
}

.google-review-section .google-review-detail h3 {
    font-size: 20px;
    font-family: var(--inter-font);
    color: #fff;
    margin: 14px 0;
}

.google-review-section .google-review-detail p {
    font-size: 16px;
    font-family: var(--inter-font);
    color: #fff;
    font-style: italic;
    font-weight: 200;
}

/* google review end */

/* testimonial start */
.testimonial-section {
    background-color: #161616;
    position: relative;
    padding: var(--py100);
}

.testimonial-section .ados-btn {
    border: 1px solid #fff;
    padding: 10px 26px;
    border-radius: 1000vmax;
}

.testimonial-section .col-lg-8 {
    border-left: 1px solid #414141;
}

.testimonial-section .testimonial-detail {
    padding-left: 36px;
}

.testimonial-section .testimonial-detail .testim-comment {
    font-size: 16px;
    font-family: var(--inter-font);
    color: #fff;
    font-style: italic;
    font-weight: 200;
    margin: 20px 0;
}

.testimonial-section .testimonial-detail .testim-user {
    display: flex;
    align-items: center;
}

.testimonial-section .testimonial-detail .testim-img {
    width: 100px;
    height: 100px;
    position: relative;
}

.testimonial-section .testimonial-detail .testim-img img:first-child {
    border-radius: 50%;
}

.testimonial-section .testimonial-detail .testim-img .quoteimg {
    position: absolute;
    width: 40px;
    height: auto;
    top: 0;
    right: -8px;
}

.testimonial-section .testimonial-detail .testim-detail {
    margin-left: 20px;
}

.testimonial-section .testimonial-detail .testim-detail h3 {
    font-size: 20px;
    font-family: var(--inter-font);
    color: #fff;
}

.testimonial-section .testimonial-detail .testim-detail p {
    font-size: 16px;
    font-family: var(--inter-font);
    color: #fff;
}

.testimonial-item .carousel-control-prev {
    right: 40px;
    bottom: 0 !important;
    left: auto;
    top: auto;
    justify-content: start;
}

.testimonial-item .carousel-control-next {
    right: 0 !important;
    bottom: 0 !important;
    top: auto;
    justify-content: start;
}

/* testimonial end */

/* footer start */
.footer-section {
    background-color: var(--dark);
    padding: var(--py100);
}

.footer-section .footer-detail img {
    width: 218px;
    height: auto;
}

.footer-section .footer-detail p {
    color: #ababab;
    margin: 20px 0;
}

.footer-section .footer-detail ul {
    padding-left: 0;
}

.footer-section .footer-detail ul li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
}

.footer-section .footer-detail ul li a:hover svg path {
    fill: var(--red-color);
}

.footer-section .explore-link h3 {
    font-size: 24px;
    font-family: var(--inter-font);
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-section .explore-link ul {
    padding-left: 0;
}

.footer-section .explore-link ul li {
    font-size: 16px;
    font-family: var(--inter-font);
    color: #fff;
    font-weight: 300;
    list-style: none;
    margin-bottom: 15px;
}

.footer-section .explore-link ul li a {
    text-decoration: none;
    color: #ababab;
}

.footer-section .explore-link ul li a:hover {
    color: var(--red-color);
}

.footer-section .contact-detail h3 {
    font-size: 24px;
    font-family: var(--inter-font);
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-section .contact-detail .address {
    display: flex;
    color: #ababab;
    font-size: 18px;
}

.footer-section .contact-detail .address svg {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-section .contact-detail .address span {
    display: block;
    line-height: 0.9;
}

.footer-section .contact-detail a {
    color: #ababab;
    text-decoration: none;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

.footer-section .contact-detail a:hover {
    color: var(--red-color);
}

/* footer end */

/************* service page start *************/
/************* service page start *************/

.service-page {
    background-color: #1a1a1a;
    position: relative;
}

.service-page .sub-bg {
    background-color: #1a1a1a;
}

.service-page .right {
    overflow: hidden;
}

.service-page .cont {
    /* margin-bottom: 250px; */
    opacity: 0.1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service-page .bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.service-page .service-img {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    opacity: 0;
}

.service-page .service-img:first-of-type {
    opacity: 1;
    z-index: 1;
}

.service-page .service-img:nth-of-type(2) {
    z-index: 2;
}

.service-page .service-img:nth-of-type(3) {
    z-index: 3;
}

.service-page .service-img:nth-of-type(4) {
    z-index: 4;
}

.service-page .service-img:nth-of-type(5) {
    z-index: 5;
}

.service-page .service-img:nth-of-type(6) {
    z-index: 6;
}

.service-page .service-img:nth-of-type(7) {
    z-index: 7;
}

.service-page .service-img.current {
    opacity: 1;
}

.service-page .cont:last-of-type {
    margin-bottom: 0;
}

.service-page .cont.active {
    opacity: 1;
}

.service-page .cont .img-hiden {
    display: none;
}

.service-page .current.cont {
    opacity: 1;
}

.service-page .cont.active {
    opacity: 1;
}

.service-page .service-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px;
    border: 1px solid #353535;
}

.service-page .service-sign {
    margin-right: 24px;
}

/* .service-page .service-col svg {
    margin-right: 24px;
} */

.service-page .service-col h3 {
    color: #fff;
    font-size: 20px;
    font-family: var(--inter-font);
    font-weight: 600;
    margin-bottom: 0;
}

/************* service page end *************/
/************* service page end *************/
.service-page .service-item {
    position: relative;
    height: 100vh;
    overflow: hidden;
    transition: all 400ms linear;
}

.service-img {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    opacity: 0;
}

.service-item-detail {
    font-family: var(--inter-font);
    padding: 150px 100px;
    overflow: hidden;
}

.service-item-detail .sub-heading {
    color: var(--red-color);
    font-size: 18px;
}

.service-item-detail h2 {
    color: #fff;
    font-size: 50px;
    margin: 20px 0;
    font-weight: 600;
}
.service-heading br {
    display: inline;
}
.service-item-detail p {
    font-size: 20px;
    color: #e6e1e2;
    font-weight: 300;
}

.service-item-detail ul {
    margin: 20px 0;
}

.service-item-detail ul li {
    color: #e6e1e2;
    font-size: 20px;
    font-weight: 300;
}

.service-item-detail ul li::marker {
    content: url(../img/service-arrow.svg) '  ';
    font-size: 20px;
    margin-right: 1ch;
}

.service-item-detail .ados-btn {
    border: 1px solid #fff;
    padding: 10px 26px;
    border-radius: 1000vmax;
    display: inline-block;
}

/* page heading Section Start*/
.page-heading {
    padding: var(--py100);
    background-color: #1f1f1f;
    position: relative;
    z-index: 10;
}

.service-line-art::before {
    content: 'Services';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    right: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
    left: 0;
    bottom: 80px;
}

.blog-line-art::before {
    content: 'Blogs';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    right: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
    left: 0;
    bottom: 80px;
}
.blogs-line-art::before {
    content: 'Blog';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    right: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
    left: 0;
    bottom: 80px;
}
.case-studies-art::before {
    content: 'Case Studies';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    right: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
    left: 0;
    bottom: 80px;
}

.page-heading .page-info {
    font-family: var(--sora-font);
}

.page-heading .page-info h1 {
    font-size: 92px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.page-heading .page-info p {
    font-size: var(--font18);
    color: #fff;
    text-align: center;
    color: var(--red-color);
}

.page-heading .page-info a {
    color: #fff;
    text-decoration: none;
}

/* page heading Section end*/

/* Blog Section start*/

.blog1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blog-left-space {
    padding-left: 12%;
    padding-right: 64px;
}

.blog-right-space {
    padding-right: 12%;
    padding-left: 64px;
}

.blog-detail b {
    font-size: 16px;
    color: var(--red-color);
    font-family: var(--sora-font);
    font-weight: 400;
    margin-bottom: 0;
}

.blog-detail content {
    font-size: 16px;
    color: #888888;
    font-family: var(--sora-font);
    font-weight: 400;
    margin-bottom: 20px;
}

.blog-right-space .ados-btn {
    color: var(--dark-gray);
}
.blog-detail p,
.blog-detail a {
    font-family: var(--inter-font) !important;
}
.blog1 .blog-detail .ados-btn:hover,
.blog2 .blog-detail .ados-btn:hover {
    color: var(--red-color);
}

.blog-right-space .ados-btn svg path {
    fill: var(--dark-gray);
}

.blog1 .blog-detail .ados-btn:hover path,
.blog2 .blog-detail .ados-btn:hover path {
    color: var(--red-color);
}

.blog1 .blog-detail .ados-btn,
.blog2 .blog-detail .ados-btn {
    color: var(--dark-gray);
    display: inline-block;
}

.blog1 .blog-detail .ados-btn svg path,
.blog2 .blog-detail .ados-btn svg path {
    fill: var(--dark-gray);
}

.blog-detail h2 {
    padding: 20px 0;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--sora-font);
    color: #1f1f1f;
}

.pb100 {
    padding-bottom: 100px;
}

.recommended-blogs {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Inter';
    color: #1f1f1f;
    display: flex;
    justify-content: center;
}

.recommended-blogs a {
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s linear;
}

.recommended-blogs a:hover {
    color: var(--red-color);
}

.recommended-blogs a svg {
    transition: all 0.3s linear;
}

.recommended-blogs a:hover svg {
    transition: all 0.3s linear;
    transform: rotate(30deg);
}

.recommended-blogs a:hover svg path {
    fill: var(--red-color);
}

/* Blog Section end*/

/* Contact section Start */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-line-art::before {
    content: 'Contact';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
}
/* about us page */
.about-line-art::before {
    content: 'About Us';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    z-index: -2;
    font-weight: 700;
    top: 0;
    color: #1f1f1f;
    filter: drop-shadow(0 0 2px #414141);
}
.our-team {
    padding: var(--py100);
    background-color: #161616;
    background-image: url('../img/Eclipse-61.png');
    background-position: top 60px center;
    background-repeat: no-repeat;
}
.our-team-heading h3 {
    font-size: var(--font48);
    font-weight: 600;
    font-family: var(--sora-font);
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.our-team-heading h3 span {
    color: var(--red-color);
}
.team-card {
    background-color: #212121;
    border-radius: 10px;
    height: 100%;
}
.team-card {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 2px 2px 12px 0px #f2786b14 inset;
}
.team-card .team-img img {
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
.team-card .team-img {
    overflow: hidden;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}
.team-img {
    position: relative;
}

.team-img .team-member-name {
    background-color: var(--red-color);
    padding: 10px 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    min-width: max-content;
    width: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s linear;
}

.team-card:hover .team-img .team-member-name {
    width: 100%;
    /* transition: width 0.4s ease-in-out, padding 0.4s ease-in-out; */
}

.team-img .team-member-name h5 {
    font-family: var(--inter-font);
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
}
.team-content {
    padding: 22px;
    margin-top: auto;
}
.team-content h3 {
    font-family: var(--sora-font);
    font-weight: normal;
    font-size: 20px;
    color: #fff;
}
.team-content p {
    font-family: var(--sora-font);
    font-weight: 400;
    font-size: 16px;
    color: #b2b2b2;
    margin-bottom: 0;
}

.bg-color {
    background-color: #161616;
}

.contact-main {
    padding: var(--py100);
}

.contact-info {
    background-color: #161616;
}

.contact-form .input-color {
    background-color: #161616;
    font-family: var(--sora-font);
    font-weight: 400;
    border-color: #414141;
    font-size: 18px;
    color: #b2b2b2;
}

.contact-form .contact-btn {
    background-color: var(--red-color);
    border-radius: 50px;
}

.contact-main .contact-info .getInTouch-section {
    font-family: var(--sora-font);
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.contact-main .contact-info .getInTouch-section a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-main .contact-info .getInTouch-section a:hover {
    color: var(--red-color);
}

.contact-main .contact-info .getInTouch-label {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
    font-family: var(--inter-font);
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 10px 20px;
}

.contact-main .contact-info .getInTouch-label .dot {
    color: var(--red-color);
}

.contact-main .contact-info .getInTouch-title {
    font-weight: 700;
    font-size: 48px;
    font-family: var(--sora-font);
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-main .contact-info .at-color {
    color: var(--red-color);
}

.contact-main .contact-info .sub-title {
    font-family: var(--sora-font);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.service-col {
    cursor: pointer;
}

.service-active svg path {
    fill: var(--red-color) !important;
}

.service-active h3 {
    color: var(--red-color) !important;
}

.nav-active {
    color: var(--red-color) !important;
}

/* Contact section end */

.navbar-dark .navbar-toggler {
    border-color: #444;
    outline: 0;
    border: none;
}

.navbar-dark .navbar-toggler:focus {
    background: none;
    outline: 0;
    box-shadow: none;
}

.navbar-dark .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-dark .navbar-toggler:hover span,
.navbar-dark .navbar-toggler:focus span {
    background: #ccc;
}

/* rotate first span */
.navbar-dark .navbar-toggler[aria-expanded='true'] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-dark .navbar-toggler[aria-expanded='true'] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-dark .navbar-toggler[aria-expanded='true'] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-dark .navbar-toggler[aria-expanded='false'] span {
    transform: none;
    opacity: 1;
}

.about-info h1 br {
    display: none;
}

.amaze-section .header-video {
    position: relative;
    width: 100%;
    height: auto;
    background-size: cover;
}

/* 
.footer-detail .compliance-logo, .about-info .compliance-logo {
    margin-top: 20px;
}

.footer-detail .compliance-logo ul, .about-info .compliance-logo ul {
    padding-left: 0;
}

.footer-detail .compliance-logo ul li {
    margin: 0 5px;
}

.footer-detail .compliance-logo ul li, .about-info .compliance-logo ul li {
    list-style: none;
    display: inline-block;
}

.about-info .compliance-logo ul li img {
    width: 140px;
    height: auto;
}

.footer-detail .compliance-logo ul li img {
    width: 100px;
    height: auto;
} */

/* award-section start */
.award-section {
    background-color: var(--dark);
    padding: var(--py100);
}

.award-section .award-heading {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    font-family: var(--sora-font);
}

.award-section .award-info {
    text-align: center;
    padding: 20px 30px;
}

.award-section .award-info img {
    width: 80%;
    height: auto;
}

/* mouse cursor */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: #f26865;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background-color: #f26865;
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 40px;
    height: 40px;
    border: 2px solid #f26865;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

/* gallery-section start */
.gallery-section {
    padding: var(--py100);
    background-color: #1a1a1a;
}

.gallery-section .gallery-heading {
    font-size: var(--font48);
    font-family: var(--sora-font);
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-section .owl-dots {
    margin: 0 auto;
    text-align: center;
}

.gallery-section .owl-dots .owl-dot {
    background-color: #414141;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.gallery-section .owl-dots .owl-dot.active {
    background-color: #ffffff;
}

/* inner blog section start */

.inner-blog {
    padding: 100px 0 0 0;
    background: var(--dark-gray);
}

.inner-blog .inner-blog-detail .inner-blog-img {
    width: 100% !important;
    border-radius: 20px;
    margin: 8px 0 16px 0;
}

.inner-blog,
.inner-blog * {
    color: #fff !important;
    font-family: var(--sora-font) !important;
}

.inner-blog .inner-blog-detail h2 {
    color: #fff;
    font-family: var(--sora-font);
    font-size: var(--font48);
    font-weight: 600;
    margin: 0 0 20px 0;
}

.inner-blog .inner-blog-detail h5 {
    font-family: var(--inter-font);
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
}

.inner-blog .inner-blog-detail h5 span {
    color: #fff;
    font-size: var(--font16);
}

.inner-blog .inner-blog-detail h6 {
    font-family: var(--inter-font);
    color: #fff;
    font-weight: 500;
    margin: 20px 0;
}

.inner-blog .inner-blog-detail h3 {
    font-family: var(--inter-font);
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
}

.inner-blog .inner-blog-detail h4 {
    font-family: var(--inter-font);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

.inner-blog .inner-blog-detail p {
    color: #fff;
    font-size: var(--font16);
}

/*  contact form switch */

.interface-buttons {
    display: flex;
    flex-wrap: wrap;
    background: black;

    border-radius: 4px;
    margin-bottom: 20px;
}

.interface-buttons input {
    display: none;
}

.interface-buttons input:checked + label {
    background-color: transparent;
    color: var(--red-color);
    text-shadow: 0 0 60px;
    border: 1px solid var(--red-color);
}

.interface-buttons input:checked + label.off {
    color: red;
}

.interface-buttons label {
    flex: 1 0 auto;
    position: relative;
    margin: 0;
    text-align: center;
    line-height: 40px;
    border: 1px solid #414141;
    background-image: linear-gradient(to top, #242424 0%, #292929 100%);
    cursor: pointer;
    transition: 0.2s;
    color: #ccc;
}

.interface-buttons label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.interface-buttons label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.toggle input {
    display: none;
}

/* .switch-field input:checked+label {
    background-color: transparent;
    border: 1px solid #434343;
    box-shadow: none;
    color: #fff;
} */

/*  contact form switch */

/* arrow click top */

#toTop {
    padding: 5px 3px;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    cursor: pointer;
    text-align: right;
}

#toTop img {
    transform: rotate(180deg);
    background-color: #353535;
    width: 50px;
    height: 45px;
    border-radius: 10px;
}

.contact-link {
    margin-left: 24px;
}

#myForm {
    position: relative;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    /* background-color: var(--red-color); */
    color: var(--red-color);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--inter-font);
    border-radius: 10px;
    border: 1px solid var(--red-color);
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.showSnackbar {
    visibility: visible;
    display: block;
    margin-top: 20px;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.iti {
    width: 100% !important;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
