.industry-section {
    padding: 100px 0;
    background-color: var(--dark-gunmetal);
    color: var(--white);
}

.industry-section .h2,
.still-box .h4 {
    font-family: 'RedHatDisplay Bold';
}

.industry-section :where(.h2, p),
.why-teams .h3,
.web-faq .h3 {
    margin-bottom: 30px;
}

.industry-btns,
.sh-right {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
}

.video-box {
    width: 100%;
    height: 720px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-block: 60px;
}

.video-box::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    width: calc(100% - 24px);
    height: 100%;
    background-color: rgba(50, 64, 75, 0.70);
    border-radius: 20px;
    z-index: -1;
}

.show-video.video-box::after,
.show-video-iframe .video-box::after {
    display: none;
}

.video-box video,
.video-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 20px;
}

.iframe-loader {
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: rgba(50, 64, 75, 0.70);
    border-radius: 20px;
}

.iframe-loader img {
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-btn {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 100%;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
    position: absolute;
    padding: 0;
    border: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.video-btn:hover {
    background-color: var(--fiery-rose);
}

.video-btn img {
    width: 100px;
    height: 100px;
    transition: all 1s ease;
}

.video-btn:hover img {
    filter: brightness(0.5);
}

header:has(.announcement-wrap)+main .industry-section {
    margin-top: 166px;
}

.sound-section,
.help-section {
    padding: 100px 0 60px;
}

.sound-section .h3,
.help-top .h3 {
    margin-bottom: 25px;
}

.service-item {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10);
    border: 1px solid;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    background-color: var(--white);
    align-items: flex-start;
    margin-bottom: 40px;
    height: calc(100% - 40px);
    width: 100%;
}

.sound-cards [class*='col']:nth-child(4n - 3) .service-item,
.help-left [class*='col']:first-child .service-item {
    border-color: var(--pale-cerulean);
}

.sound-cards [class*='col']:nth-child(4n - 2) .service-item,
.help-left [class*='col']:last-child .service-item {
    border-color: var(--miller-pink);
}

.sound-cards [class*='col']:nth-child(4n - 1) .service-item,
.help-right [class*='col']:first-child .service-item {
    border-color: var(--tangerine-yellow);
}

.sound-cards [class*='col']:nth-child(4n - 0) .service-item,
.help-right [class*='col']:last-child .service-item {
    border-color: #7ED0F3;
}

.service-item img {
    width: 113px;
    margin-right: 45px;
}

.service-content .h4,
.service-content .h5 {
    font-family: 'RedHatDisplay Bold';
    color: var(--dark-gunmetal);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-content a:hover .h4,
.service-content a:hover .h5 {
    color: var(--fiery-rose);
}

.service-content p {
    color: var(--charcoal);
    margin-bottom: 20px;
}

.service-content p:last-child {
    margin-bottom: 0;
}

.web-faq {
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.web-faq .h3 {
    text-align: center;
}

.web-faq .accordion {
    text-align: left;
    max-width: 1130px;
    margin: 50px auto 0;
}

.web-faq .accordion-item {
    padding: 0 0 20px 0;
    margin-bottom: 24px;
}

.web-faq .accordion-button:hover,
.web-faq .accordion-button:not(.collapsed) {
    color: var(--metallic-seaweed);
}

.web-faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.web-faq .accordion-button:not(.collapsed)::before {
    content: none;
}

.web-faq .accordion-button .h4 {
    margin-bottom: 0;
}

.web-faq .accordion-body {
    padding: 15px 0 0 0;
    color: var(--black);
    font-family: 'RedHatDisplay Medium';
}

.web-faq .accordion-button {
    box-shadow: none !important;
    padding: 0 70px 0 0;
    font-family: 'RedHatDisplay Bold';
    color: var(--black);
}

.web-faq .accordion-button::before {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    background-size: unset;
    transition: unset;
    background-color: var(--charcoal);
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
    transition: var(--bs-accordion-transition);
}

.web-faq .accordion-button::after {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    background-size: unset;
    transition: unset;
    background-color: var(--charcoal);
    position: absolute;
    right: 15px;
    transition: var(--bs-accordion-transition);
}

.web-faq .accordion-button:hover::before,
.web-faq .accordion-button:hover::after,
.web-faq .accordion-button:not(.collapsed)::before,
.web-faq .accordion-button:not(.collapsed)::after {
    background-color: var(--metallic-seaweed);
}

.web-faq .circle-border span::before {
    content: "\e91a";
    font-size: 105%;
    top: 0;
    left: -8px;
    font-weight: bold;
}

.help-section .container {
    position: relative;
}

.help-section .container::before {
    content: "";
    position: absolute;
    width: calc(100% - 24px);
    height: 1px;
    top: -100px;
    left: 12px;
    background-color: var(--pattens-blue);
}

.help-top {
    text-align: center;
    margin-bottom: 60px;
}

.help-section .video-box {
    margin: 0;
}

.help-section .video-box>img {
    width: 100%;
}

.why-choose {
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--alice-blue);
}

.why-choose .why-text {
    padding-right: 45px;
}

.why-choose .why-text .h3 span:not(.busywork .why-text .h3 span) {
    color: #37afa9;
}

.why-text .h3,
.non-profits .h6,
.sound-section .h3,
.help-top .h3,
.why-teams .h3 {
    font-family: 'RedHatDisplay Medium';
}

.why-text .h3 span {
    display: block;
}

.why-text .why-sub-content {
    margin: 35px 0 0;
}

.why-text p {
    color: var(--charcoal);
    font-family: 'RedHatDisplay Medium';
}

.why-text .h3 span,
.sound-section .h3 span,
.help-top .h3 span,
.why-teams .h3 span {
    font-family: 'RedHatDisplay Black';
}

.why-text img,
.why-sub-content p {
    margin-bottom: 30px;
}

.why-choose img {
    max-width: 100%;
}

.why-choose .why-img {
    width: 100%;
}

.served-section .circle-border span::before {
    display: none;
}

.sh-left {
    flex: 1;
    padding-right: 30px;
}

.counts-wrap .count-item,
.non-profits .h6 {
    text-align: center;
}

.count-item .h1 {
    font-family: 'RedHatDisplay Black';
    color: var(--white);
    margin-bottom: 0;
    display: block;
}

.count-item .h4 {
    font-family: 'RedHatDisplay Medium';
    color: var(--pattens-blue);
    display: block;
    margin-bottom: 8px;
}

.why-teams {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.why-teams div {
    max-width: 750px;
    margin-inline: auto;
}

.count-item p {
    margin-bottom: 0;
    color: var(--white);
}

.busywork {
    background-color: var(--dark-gunmetal);
    color: var(--white);
    margin-top: 120px;
}

.busywork p {
    color: var(--white);
    max-width: 700px;
}

.busywork.why-choose .why-img {
    border-radius: 20px;
    max-width: 473px;
    float: right;
}

.still-section {
    padding: 100px 0;
    background-color: var(--alice-blue);
}

.still-box {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    padding: 40px;
    background-color: var(--white);
    width: 100%;
    text-align: center;
}

.still-content,
.still-box img,
.non-profits .h6 {
    margin-bottom: 30px;
}

.still-box .h4 {
    margin-bottom: 20px;
}

.non-profits .swiper-wrapper {
    transition-timing-function: linear !important;
}

.non-profits .swiper-wrapper {
    align-items: center;
}

.four-logos .swiper-wrapper {
    justify-content: center;
}

.non-profits .swiper-slide {
    text-align: center;
}

.non-profits .swiper-slide img {
    max-height: 70px;
    max-width: 200px;
}

.non-profits .swiper::before,
.non-profits .swiper::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    background: linear-gradient(90deg, var(--dark-gunmetal), transparent);
    z-index: 2;
    left: 0;
}

.non-profits .swiper::after {
    background: linear-gradient(270deg, var(--dark-gunmetal), transparent);
    right: 0;
    left: auto;
}

.industry-section .circle-border span::before {
    content: "\e90a";
    color: var(--metallic-seaweed);
    top: -7px;
    font-size: 118%;
    font-weight: bold;
}

.sound-cards {
    margin-top: 60px;
}

.video-section {
    padding: 120px 0 0;
    position: relative;
    z-index: 9;
}

.video-section::before {
    content: "";
    position: absolute;
    background-color: var(--dark-gunmetal);
    background-image: url(https://gotechark.com/wp-content/themes/gotechark/assets/images/background-line-new.svg);
    background-size: cover;
    background-position: center;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 35.33%);
    z-index: -1;
}

.counts-wrap {
    margin-bottom: 60px;
}

.client-logo-wrap {
    background-color: var(--pattens-blue);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 70px 70px 0;
}

.client-logo {
    width: 20%;
    margin: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.client-logo img {
    width: auto;
    max-width: 85%;
    display: inline-block;
}

.help-section .service-item {
    flex-direction: column;
}

.help-section .service-item img {
    margin-right: 20px;
    max-width: 62px;
    align-self: flex-start;
    flex: 1;
    margin-bottom: 0;
}

.our-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.help-section .our-icon-title .h6 {
    font-family: 'RedHatDisplay Bold';
    margin-bottom: 0;
}

.help-section .our-icon-title .h6:not(:hover) {
    color: var(--dark-gunmetal);
}

.still-box img {
    max-height: 65px;
}

.client-tv {
    display: flex;
    width: 100%;
}

.client-tv .h4 {
    flex: 1;
}

.client-vd {
    width: calc(33.33% - 12px);
    position: relative;
    padding-right: 12px;
}

.client-vd>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-tv .video-btn {
    width: 80px;
    height: 80px;
}

.client-tv .video-btn img {
    width: 55px;
    height: 55px;
}

.modal .modal-content iframe {
    width: 100%;
    height: 622px;
}

.modal-dialog {
    max-width: 1140px;
}

.industry-btns .primary-btn:first-child:not(:hover) {
    background-color: var(--white);
    border-color: var(--white) !important;
}

.animate-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.animate-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.animate-content .h2 {
    font-family: 'RedHatDisplay Black';
    color: var(--white);
}

.animate-content h4 {
    color: var(--white);
}

.panel-section .swiper-pagination-bullet-active {
    background: var(--cyan) !important;
}

.panel-section .swiper-pagination-bullet {
    background-color: var(--pale-cerulean);
}

@media (min-width: 576px) {
    .sound-cards {
        margin-left: -25px;
        margin-right: -25px;
    }

    .sound-cards>* {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 768px) {
    .client-vd {
        border-bottom: 1px solid #466178;
    }
}

@media (min-width: 1200px) {
    .help-section .service-item {
        padding: 20px;
    }

    .help-section .video-box {
        height: calc(100% - 25px);
    }

    .panel-section {
        min-height: 100dvh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

    .panel-section {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
    }

    .animate-box {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        pointer-events: none;
        transform-origin: center center;
    }

    .animate-img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
    }

    .animate-content {
        position: relative;
        z-index: 9;
    }

    .animate-content {
        position: relative;
        z-index: 9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100dvh;
    }

    .panelSwiper .swiper-wrapper {
        display: block;
    }

    .panelSwiper .swiper-slide {
        width: 100% !important;
        height: auto;
        display: unset;
    }

    .panelSwiper {
        width: 100%;
        height: 100%;
    }

    .non-profits .swiper.four-logos::before,
    .non-profits .swiper.four-logos::after {
        display: none;
    }

    .four-logos .swiper-wrapper .swiper-slide:last-child {
        margin-right: 0 !important;
    }
}

@media (min-width: 1500px) {
    .help-section .service-item {
        padding: 30px;
    }

    .help-section .video-box {
        height: calc(100% - 40px);
    }

    .help-section .our-icon-title .h6 {
        font-size: 20px !important;
    }
}

@media (min-width: 1800px) {
    .served-left {
        margin-left: calc((100% - 1618px) / 2);
    }

    .container {
        max-width: 1618px;
    }

    .help-section .service-content p {
        font-size: 18px;
    }
}

@media (max-width: 1799px) {

    .industry-section,
    .web-faq,
    .why-choose,
    .still-section {
        padding: 80px 0;
    }

    .sound-section,
    .help-section {
        padding: 80px 0 40px;
    }

    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 159px;
    }

    .help-section .container::before {
        top: -80px;
    }

    .counts-wrap {
        margin-bottom: 50px;
    }

    .client-logo-wrap {
        padding: 50px 50px 0;
    }

    .client-logo {
        margin-bottom: 50px;
    }

    .busywork {
        margin-top: 80px;
    }

    .modal .modal-content iframe {
        height: 590px;
    }

    .modal-dialog {
        max-width: 1082px;
    }
}

@media (max-width: 1699px) {
    .modal .modal-content iframe {
        height: 540px;
    }

    .modal-dialog {
        max-width: 993px;
    }
}

@media (max-width: 1599px) {
    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 143px;
    }

    .service-content .h4,
    .service-content .h5 {
        margin-bottom: 15px;
    }

    .web-faq .accordion-button::before,
    .web-faq .accordion-button::after {
        width: 30px;
    }

    .why-choose .why-text {
        padding-right: 20px;
    }

    .sound-cards {
        margin-top: 50px;
    }

    .video-section {
        padding: 80px 0 0;
    }

    .modal .modal-content iframe {
        height: 511px;
    }

    .modal-dialog {
        max-width: 942px;
    }
}

@media (max-width: 1499px) {
    .video-box {
        height: 730px;
    }

    .industry-section :where(.h2, p) {
        margin-bottom: 20px;
    }

    .video-btn {
        width: 120px;
        height: 120px;
    }

    .video-btn img {
        width: 80px;
        height: 80px;
    }

    .industry-section,
    .why-choose,
    .still-section {
        padding: 70px 0;
    }

    .sound-section,
    .help-section {
        padding: 70px 0 45px;
    }

    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 132px;
    }

    .service-item {
        padding: 30px;
        margin-bottom: 25px;
        height: calc(100% - 25px);
    }

    .service-item img {
        width: 100px;
        margin-right: 30px;
    }

    .help-section .container::before {
        top: -70px;
    }

    .still-box {
        padding: 30px;
    }

    .sound-cards {
        margin-top: 40px;
    }

    .client-logo-wrap {
        padding: 40px 40px 0;
    }

    .client-logo {
        margin-bottom: 40px;
    }

    .busywork {
        margin-top: 70px;
    }
}

@media (max-width: 1399px) {
    .video-box {
        height: 630px;
    }

    .modal .modal-content iframe {
        height: 440px;
    }

    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 118px;
    }

    .modal-dialog {
        max-width: 815px;
    }
}

@media (max-width: 1199px) {
    .video-box {
        height: 530px;
    }

    .video-btn img,
    .video-btn {
        transition: none;
    }

    .industry-section,
    .web-faq,
    .why-choose,
    .still-section {
        padding: 50px 0;
    }

    .sound-section,
    .help-section {
        padding: 50px 0 30px;
    }

    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 117px;
    }

    .service-item {
        padding: 20px;
    }

    .service-content .h4,
    .service-content .h5 {
        margin-bottom: 10px;
    }

    .web-faq .accordion {
        margin: 40px auto 0;
    }

    .help-section .container::before {
        top: -50px;
    }

    .help-section .row .col-xl-6 {
        order: -1;
        margin-bottom: 30px;
    }

    .why-choose .row [class*=col-]:first-child {
        order: 1;
        margin-top: 30px;
    }

    .why-text .why-sub-content {
        margin: 20px 0 0;
    }

    .why-choose .why-text {
        padding-right: 0;
    }

    .why-text img,
    .why-sub-content p,
    .still-content,
    .still-box img {
        margin-bottom: 20px;
    }

    .still-box {
        padding: 20px;
    }

    .video-section {
        padding: 50px 0 0;
    }

    .counts-wrap {
        margin-bottom: 40px;
    }

    .client-logo-wrap {
        padding: 30px 30px 0;
    }

    .client-logo {
        margin-bottom: 30px;
        width: 33.33%;
        padding: 0 12px;
    }

    .busywork {
        margin-top: 50px;
    }

    .service-item img {
        margin-right: 20px;
    }

    .modal .modal-content iframe {
        height: 360px;
    }

    .modal-dialog {
        max-width: 674px;
    }

    .panel-section {
        position: relative;
        overflow: hidden;
    }

    .panel-section,
    .panel-box {
        height: 600px;
    }

    .animate-img {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
    }

    .animate-content {
        position: absolute;
        z-index: 9999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 30px);
        text-align: center;
        padding: 100px 0;
    }
}

@media (max-width: 1169px) {
    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 122px;
    }
}

@media (max-width: 991px) {
    .video-box {
        height: 400px;
    }

    .industry-section :where(.h2, p) {
        margin-bottom: 10px;
    }

    .video-btn {
        width: 80px;
        height: 80px;
    }

    .video-btn img {
        width: 55px;
        height: 55px;
    }

    .video-box {
        margin-block: 30px;
    }

    .web-faq .accordion {
        margin: 30px auto 0;
    }

    .web-faq .accordion-button::before,
    .web-faq .accordion-button::after {
        width: 25px;
    }

    .web-faq .circle-border span::before {
        left: -5px;
    }

    .help-top,
    .why-teams {
        margin-bottom: 30px;
    }

    .served-head:has(.sh-left) {
        flex-direction: column;
        align-items: flex-start;
    }

    .sound-section .h3,
    .help-top .h3,
    .industry-section :where(.h2, p),
    .why-teams .h3,
    .still-box .h4,
    .non-profits .h6,
    .web-faq .h3 {
        margin-bottom: 10px;
    }

    .industry-section .circle-border span::before {
        top: -4px;
        font-size: 108%;
    }

    .sound-cards {
        margin-top: 10px;
    }

    .counts-wrap .count-item:nth-child(3),
    .counts-wrap .count-item:nth-child(4) {
        margin-top: 15px;
    }

    .service-item,
    .our-icon-title {
        flex-direction: column;
    }

    .service-item img {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .help-section .our-icon-title .h6 {
        margin-top: 20px;
    }

    .modal .modal-content iframe {
        height: 310px;
    }

    .modal-dialog {
        max-width: 585px;
    }
}

@media (max-width: 767px) {
    .video-box {
        height: 300px;
    }

    .industry-section br {
        display: none;
    }

    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 137px;
    }

    .service-item img {
        width: 80px;
        margin-bottom: 20px;
    }

    .web-faq .accordion {
        margin: 20px auto 0;
    }

    .web-faq .accordion-button::before,
    .web-faq .accordion-button::after {
        width: 20px;
    }

    .client-logo-wrap {
        padding: 30px 20px 10px;
    }

    .client-logo {
        margin-bottom: 20px;
        width: 50%;
    }

    .help-section .our-icon-title .h6 {
        margin-top: 15px;
    }

    .modal .modal-content iframe {
        height: 288px;
    }

    .modal-dialog {
        max-width: 545px;
    }

    .client-vd {
        width: calc(100% - 12px);
        padding-left: 12px;
        margin-top: 30px;
        padding-right: 0;
    }

    .client-tv {
        flex-direction: column-reverse;
    }

    .panel-section,
    .panel-box {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .video-box {
        height: 310px;
    }

    .modal .modal-content iframe {
        height: 220px;
    }

    .modal-dialog {
        max-width: 425px;
        margin: 0 auto;
    }
}

@media (max-width: 479px) {
    .video-box {
        height: 230px;
    }

    .modal .modal-content iframe {
        height: 189px;
    }

    .modal-dialog {
        max-width: 370px;
    }
}

@media (max-width: 425px) {
    .video-box {
        height: 220px;
    }
}

@media (max-width: 399px) {
    .modal .modal-content iframe {
        height: 144px;
    }

    .modal-dialog {
        max-width: 290px;
    }
}

@media (max-width: 390px) {
    .video-box {
        height: 210px;
    }
}

@media (max-width: 375px) {
    .video-box {
        height: 200px;
    }
}

@media (max-width: 324px) {
    header:has(.announcement-wrap)+main .industry-section {
        margin-top: 160px;
    }
}

@media (max-width: 320px) {
    .video-box {
        height: 170px;
    }

    .count-item {
        width: 100%;
    }

    .counts-wrap .count-item:nth-child(2) {
        margin-top: 15px;
    }
}