/*
Theme Name: DCAC
Theme URI: https://github.com/arshadshah440/DCAC-Theme
Author: Your Name
Author URI: https://arshadwpdev.com/
Description: A modern, flexible WordPress theme with custom blocks and comprehensive styling options. Features the DCAC Hero Block with 7 different variants for various content sections.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dcac
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, custom-blocks, acf-blocks, responsive, modern

This theme, like WordPress, is licensed under the GPL.
Use it to create beautiful, modern websites with the power of custom blocks.

DCAC Theme - Built for modern WordPress development with custom blocks and comprehensive styling options.
*/

* {
    margin: 0;
    padding: 0;
}

body,
html {
    overflow-x: hidden;
    font-family: var(--primary-font-gotham);
    box-sizing: border-box;
}

/* Add your font-face declaration */
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham/Gotham.woff2') format('woff2'),
        url('./fonts/Gotham/Gotham.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Serifa';
    src: url('./fonts/Serifa/Serifa.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Primary Colors  */
    --primary-color-white: #ffffff;
    --primary-color-black: #333333;
    --primary-color-grey: #E6E6E6;
    --primary-color-dark-grey: #6A6A6B;
    --primary-color-red: #E11B22;
    --primary-color-blue: #009ADB;
    --primary-color-green: #58B947;
    --primary-color-yellow: #F0AF13;
    /* Secondary Colors  */
    --secondary-color-light-blue: #CCECFF;
    --secondary-color-light-blue-half: rgba(204, 236, 255, 0.5);
    /* Global Fonts  */
    --primary-font-gotham: 'Gotham', Arial, sans-serif;
    --primary-font-serifa: 'Serifa', 'Gotham', sans-serif;
}

.container {
    max-width: 1200px !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
    width: 100%;
}

p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--primary-color-white);
    font-family: var(--primary-font-gotham);
}

h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 95%;
    color: var(--primary-color-white);
    font-family: var(--primary-font-gotham);
}

h2 {
    font-size: 80px;
    font-weight: 500;
    line-height: 95%;
    color: var(--primary-color-black);
    font-family: var(--primary-font-gotham);
}

h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 105%;
    color: var(--primary-color-black);
    font-family: var(--primary-font-gotham);
}

.primary-btn {
    font-size: 20px;
    font-weight: 500;
    line-height: 95%;
    color: var(--primary-color-white);
    font-family: var(--primary-font-gotham);
    background-color: var(--primary-color-red);
    padding: 14px 9px 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn svg {
    margin: 0px 0px -10px 25px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #C81016;
    transition: all 0.3s ease;
}

.primary-btn:hover svg {
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.secondary-btn {
    font-size: 20px;
    font-weight: 500;
    line-height: 95%;
    color: var(--primary-color-white);
    font-family: var(--primary-font-gotham);
    background-color: var(--primary-color-black);
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--primary-color-dark-grey);
    transition: all 0.3s ease;
}

.secondary-2-btn {
    font-size: 20px;
    font-weight: 500;
    line-height: 95%;
    color: var(--primary-color-black);
    font-family: var(--primary-font-gotham);
    background-color: var(--primary-color-white);
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-2-btn:hover {
    background-color: var(--primary-color-grey);
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }
}

.primary1-btn:hover {
    background-color: #C81016;
    transition: all 0.3s ease-in-out;
}

.primary1-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: var(--primary-color-white);
    font-family: var(--primary-font-gotham);
    background-color: var(--primary-color-red);
    padding: 15px 32px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

/* Top Header */
section.top-header .col-md-12 {
    position: relative;
}

.top-content p img {
    padding-left: 8px;
}

section.top-header .col-md-12 button {
    position: absolute;
    right: -210px;
}

.top-content {
    padding-right: 170px;
}

section.top-header {
    position: absolute;
    z-index: 999999;
    height: 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(70px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-header a {
    color: var(--primary-color-white);
    font-size: 16px;
    font-weight: 500;
    text-decoration: unset;
}

.top-content p {
    margin: 0px;
    font-size: 16px;
}

.top-content {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* End Top Header */
/* Top Header Responsive */
@media (max-width: 767px) {
    section.top-header .col-md-12 button {
        position: absolute;
        right: 0px;
    }

    .top-content {
        padding-right: 100px;
    }

    .top-content p {
        font-size: 15px;
        text-align: left;
    }

    section.top-header {
        height: 89px;
        position: unset;
        justify-content: flex-start;
    }

    section.top-header .col-md-12 {
        padding: 10px;
    }
}

/* End Top Header Responsive */

/* Header Css */
header {
    background-color: transparent;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
    margin-top: 60px;
}

header .container {
    max-width: 1480px !important;
    margin: 0 auto;
    padding: 0px 20px !important;
}

a.navbar-brand {
    padding: 0px;
    margin: 0px;
}

nav.navbar.navbar-expand-lg .container,
#navbarSupportedContent {
    align-items: flex-start;
}

nav.navbar.navbar-expand-lg .container {
    justify-content: space-between !important;
}

#navbarSupportedContent {
    align-items: flex-start;
    justify-content: space-evenly;
}

.donate-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

header img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

nav.navbar.navbar-expand-lg .container {
    padding: 0px !important;
}

nav.navbar.navbar-expand-lg {
    padding: 0px;
}

ul.navbar-nav li a {
    padding: 0px 0px 0px 20px !important;
    font-size: 16px;
    line-height: 130%;
    color: var(--primary-color-dark-grey);
    font-weight: 500;
}

ul.navbar-nav li:first-child a {
    padding: 0px 0px 0px 0px !important;
}

ul.navbar-nav {
    background-color: #FFFFFF;
    border-radius: 100px;
    padding: 15px 30px 14px 30px;
}

.donate-main-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

span.want-type {
    font-size: 16px;
    color: #fff;
}

.language-toggle center {
    display: flex;
    align-items: center;
}

.donate-main-content a {
    text-decoration: none;
}

/* Toggle Header Button CSS */
.switch {
    position: relative;
    display: inline-block;
}

.switch>span {
    position: absolute;
    top: 15px;
    pointer-events: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    font-weight: 500;
    text-align: center;
}

input.check-toggle-round-flat:checked~.off {
    color: (--primary-color-white);
}

input.check-toggle-round-flat:checked~.on {
    color: #fff;
}

.switch>span.on {
    left: 0px;
    padding-left: 2px;
    color: #FFF !important;
}

.switch>span.off {
    right: 0;
    padding-right: 1px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    padding: 2px;
    width: 88px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    border: 1px solid #d5d5d5;
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:after {
    top: 50%;
    left: 5px;
    bottom: 4px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
    transform: translateY(-50%);
}

input.check-toggle-round-flat:checked+label {}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 41px;
}

/* End Toggle Button CSS */
/* Responsive Header */
@media (max-width: 767px) {
    .navbar-toggler:focus {
        box-shadow: unset !important;
    }

    .navbar-toggler {
        border: unset;
    }

    .navbar-collapse collapse {
        display: flex;
        flex-direction: column-reverse;
    }

    nav.navbar.navbar-expand-lg .container {
        align-items: center;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: -20px;
        right: 0;
        width: 110.5%;
        padding: 0 !important;
        margin: 0 !important;
        background: #fff;
        z-index: 999;
    }

    header {
        margin-top: 15px;
    }

    header img {
        width: 184px;
        height: 78px;
    }
}


/* End Responsive Header */
/* End Header Css */

/* Hero Section Start   */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero .content p {
    padding: 30px 0 42px 0;
}
.padd-0 p{
    padding: 0px !important;
}
.martop-30{
    margin-top: 30px;
}
.martop-12 {
    margin-top:12px;
}
.marbot-36{
    margin-bottom: 36px;
}
.martop-36{
    margin-top: 36px;
}
#left-aligned-content{
    margin: unset;
    text-align: left;
    max-width: 780px;
}
@media screen and (max-width: 768px) {
    .hero {
        height: 520px;
        display: flex;
        align-items: end;
        position: relative;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .content {
        margin-bottom: -20px;
    }
}
/* alongside hero */
.alongsideimage-hero{
    background-image: url('./assets/img/pattern.png');
    background-position: center;
    background-size: cover;
    position: relative;
}
.alongsideimage-hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
}
.dcadalongsidehero{
    position: relative;
    z-index: 2;
    display: flex;
    padding-left: calc((100% - 1200px)/2);
    padding-top: 160px;
}
.dcadalongsidehero .content{
    padding: 73px 0px 150px 0px;
}
/* Hero Section End   */


/* Counter Section Start   */
.counter {
    padding: 60px 0;
}

.counter .counter-item {
    padding-inline: 82px;
}

.counter hr {
    width: 36px;
    height: 6px;
    border: none;
    background: red;
    opacity: 1;
    margin: 20px auto;
}

.counter h2 {
    color: var(--primary-color-dark-grey);
}

.counter p {
    font-size: 20px;
    color: var(--primary-color-dark-grey);
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .counter .counter-item {
        padding-inline: 0px;
    }

    .counter-item {
        display: flex;
        flex-direction: row;
        align-items: start;
        gap: 24px !important;
    }

    .counter-item h2 {
        width: 30%;
        font-size: 40px;
    }

    .counter-item .counter-content {
        width: 70%;
        display: flex;
        flex-direction: column-reverse;
        text-align: start;
    }

    .counter-item .counter-content hr {
        margin: 0px 0 60px;
    }
}

/* Counter Section End   */
/* How we help Section Start  */
.how-we-help {
    padding: 98px 0px 98px 0px;
    background-color: var(--secondary-color-light-blue-half);
    border-left: 14px solid var(--primary-color-red);
    position: relative;
}

.how-we-help .icon-box {
    border-radius: 10px;
    display: flex;
    gap: 30px;
    text-decoration: none;
    padding: 30px 50px 30px 30px;
}

.how-we-help .icon-box:hover {
    background-color: var(--primary-color-white);
}

.how-we-help .icon-box .icon {
    width: 48px;
    position: relative;
}

.how-we-help .icon-box .icon:after {
    content: "";
    width: 36px;
    height: 36px;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    top: 6px;
    right: 0px;
    z-index: 99;
    position: absolute;
}

.how-we-help .icon-box h3 {
    font-size: 28px;
}

.how-we-help .icon-box p {
    font-size: 16px;
    color: var(--primary-color-black);
}

.how-we-help .icon-box a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--primary-color-red);
}

.how-we-help .how-we-help-image {
    position: absolute;
    bottom: 0;
    left: -14px;
    width: 33%;
    height: 510px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .how-we-help {
        padding: 64px 0px 0px;
        background-color: var(--secondary-color-light-blue-half);
        border-left: 4px solid var(--primary-color-red);
        position: relative;
    }

    .how-we-help .how-we-help-image {
        position: relative !important;
        width: 90%;
        border-radius: 0 10px 0 0;
        margin-top: 52px;
        height: 312px;
    }

    .how-we-help .icon-box {
        border-radius: 0;
        display: flex;
        gap: 30px;
        text-decoration: none;
        padding: 0;
        margin-top: 30px;
    }

    .how-we-help .icon-box:hover {
        background-color: unset;
    }
}

/* How we help Section end  */
/* event-tester section start  */
.event-tester {
    padding: 128px 0;
    position: relative;
}

.event-tester .title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.event-tester .title h2 {
    margin-bottom: 0px;
    font-size: 64px;
    width: 75%;
}

.event-tester .event-boxes {
    margin-top: 50px;
}

.event-tester .event-boxes .event-box {
    min-height: 493px;
    border-radius: 10px;
    padding: 24px 10px 10px 10px;
    color: var(--primary-color-white);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
}


.event-tester .event-boxes .event-box:before {
    content: "";
    position: absolute;
    top: 24px;
    right: 10px;
    background: url('/assets/images/arrow.svg') center center / cover no-repeat;
    z-index: 99;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.event-tester .event-boxes .event-box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 3%, rgb(255, 255, 255, 0) 29%);
}

.event-tester .event-boxes .event-box:hover:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.event-tester .event-boxes .event-box:hover:before {
    opacity: 1;
    transition: all 0.5s ease;
}

.event-tester .event-boxes .event-box h3 {
    font-size: 36px;
    color: var(--primary-color-white);
    padding-right: 110px;
    z-index: 2;
}

.event-tester .event-boxes .event-box .event-detail {
    font-size: 16px;
    padding: 20px 20px 24px 20px;
    background: var(--primary-color-blue);
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.event-tester .event-boxes .event-box .event-detail .detail-btn {}

.event-tester .event-boxes .event-box .event-detail h4 {
    font-size: 18px;
}

.event-tester .event-boxes .event-box .event-detail ul {
    padding-left: 12px;
    font-size: 14px;
}

.event-tester .event-boxes .event-box .event-detail .detail-btn {
    text-decoration: none;
    color: var(--primary-color-black);
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 500;
    background-color: var(--primary-color-white);
}

.event-tester .event-boxes .event-box .event-detail .detail-btn-box {
    margin-bottom: -54px;
    transition: all 0.5s ease;
}

.event-tester .event-boxes .event-box .event-detail:hover .detail-btn-box {
    margin-bottom: 0px;
    transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
    .event-tester {
        padding: 144px 0;
    }

    .event-tester .title h2 {
        font-size: 38px;
        width: 100%;
    }

    .event-tester .event-boxes .event-box .event-detail .detail-btn-box {
        margin-bottom: 0px;
    }

    .event-tester .event-boxes .event-box:before {
        opacity: 1;
    }

    .event-tester .event-boxes .event-box:after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.6) 100%);
    }

    .event-tester .title .secondary-btn {
        position: absolute;
        bottom: 68px;
        left: 20px;
        display: block;
        width: 91%;
        text-align: center;
    }
}

/* event-tester section end  */
/* mid-page-cta Section Start   */
.mid-page-cta {
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mid-page-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.mid-page-cta .content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mid-page-cta .content p {
    max-width: 550px;
    margin: 36px auto;
}

/* mid-page-cta Section End   */
/* Input Subscribe From BG Red CSS */
section.subscribe-form-bg-red {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-color: var(--primary-color-red);
    padding: 72px 0px;
}

.subscribe-form-bg-red .subscribe-form-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe-form-bg-red .subscribe-form-left h3 {
    color: var(--primary-color-white);
    margin: 0px;
}

.subscribe-form-bg-red .subscribe-form-left p {
    padding: 0px;
    padding-top: 12px;
    margin: 0px;
}

.subscribe-form-bg-red .subscribe-form-right form {
    background-color: var(--primary-color-white);
    padding: 14px 14px 14px 28px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-form-bg-red .subscribe-form-right form .input-mail {
    border: unset;
    background-color: transparent;
    padding-right: 146px;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: var(--primary-color-dark-grey);
    opacity: 0.7;
}

.subscribe-form-bg-red .subscribe-form-right form .input-mail::placeholder {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color-dark-grey);
}

.subscribe-form-bg-red .subscribe-form-right form input:focus,
.subscribe-form-bg-red .subscribe-form-right form input:active {
    border: unset;
    outline: none;
    box-shadow: none;
}

.subscribe-form-bg-red .submit-button {
    width: 44px;
    height: 44px;
    position: relative;
    display: inline-block;
}

.subscribe-form-bg-red .submit-button::before {
    position: absolute;
    content: '';
    width: 44px;
    height: 44px;
    background: url(../images/input-icon.svg) no-repeat center center / contain;
    top: 0;
    left: 0;
    z-index: 2;
}

.subscribe-form-bg-red .submit-button input {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 3;
    /* icon ke upar click register hoga */
    cursor: pointer;
}

.subscribe-form-bg-red .subscribe-form-right form img {
    width: 44px;
    height: 44px;
}

/* Responsive */
@media (max-width: 767px) {
    .subscribe-form-bg-red .subscribe-form-main {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .subscribe-form-bg-red .subscribe-form-left h3 {
        font-size: 32px;
    }

    .subscribe-form-bg-red .subscribe-form-left p {
        font-size: 16px;
        max-width: 250px;
    }

    .subscribe-form-bg-red .subscribe-form-right form .input-mail {
        padding-right: 30px;
    }

    .subscribe-form-bg-red .subscribe-form-right form {
        justify-content: space-between;
    }

    .subscribe-form-bg-red .subscribe-form-right form {
        padding: 14px 0px 14px 24px;
    }

    .subscribe-form-bg-red .subscribe-form-left p {
        font-size: 16px;
    }

    .subscribe-form-bg-red .subscribe-form-right,
    .subscribe-form-bg-red .subscribe-form-left {
        width: 100%;
    }

    .subscribe-form-bg-red .submit-button::before {
        top: 0%;
        left: -22px;
    }

    .subscribe-form-bg-red .subscribe-form-left,
    .subscribe-form-bg-red .subscribe-form-right {
        width: 100%;
    }

}

/* End Input Subscribe From CSS */


/* Start testimonials CSS */
.testimonials {
    border-right: 14px solid var(--primary-color-red);
    background-color: var(--secondary-color-light-blue);
}

.testimonials .testimonials-right img {
    width: 100%;
}

.testimonials .testimonials-right .image {
    margin-right: -14px;
}

.testimonials .testimonials-left {
    display: flex;
    justify-content: end;
    margin-top: -20px;
}

/* .testimonials .slick-slide img {
    margin-top: -20px;
} */

.testimonials .testimonials-left .slides {
    max-width: 860px;
    padding-left: 20px;
    padding-bottom: 96px;
}

.testimonials .testimonials-left .slides p {
    color: var(--primary-color-black);
    font-size: 18px;
    margin-bottom: 0;
}

.testimonials .testimonials-left .slides .review {
    margin: 72px 0 42px;
    font-size: 34px;
    padding-right: 60px;
}

.testimonials button.slick-prev.slick-arrow {
    bottom: 0;
    top: auto;
    left: auto;
    right: 20px;
}

.testimonials button.slick-next.slick-arrow {
    bottom: 120px;
    right: 70px;
    top: auto;
}

.testimonials .slick-next:before {
    content: '';
    background-image: url(../images/left-icon.svg);
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 50%;
    bottom: -20px;
    position: absolute;
}

.testimonials .slick-prev:before {
    opacity: 0 !important;
}

.testimonials .slick-prev:after {
    content: '';
    background-image: url(../images/right-icon.svg);
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 50%;
    right: 0px;
    position: absolute;
    top: -60px;
}

/* End testimonials CSS */


/* Start About-dcac Subscribe From CSS */

.about-dcac {
    padding-bottom: 128px;
}

.about-dcac .about-left img {
    width: 100%;
    height: 625px;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}

.about-dcac .about-right {
    padding: 0 20px 0 60px;
}

.about-dcac .about-right .content {
    max-width: 390px;
}

.about-dcac .about-right .content h2 {
    color: var(--primary-color-black);
    font-size: 48px;
}

.about-dcac .about-right .content p {
    font-size: 20px;
    color: var(--primary-color-black);
    margin: 24px 0 42px 0;
}

@media screen and (max-width: 768px) {
    .about-dcac .about-left img {
        width: 90%;
        height: 200px;
        object-fit: cover;

    }

    .about-dcac .about-left {
        width: 100%;
    }

    .about-dcac .about-right {
        padding: 30px 20px 0 20px;
    }
}

/* End About-dcac Subscribe From CSS */


/* How Can Help Section */
.how-can-section h2 {
    padding-bottom: 46px;
    margin: 0px;
}

section.how-can-section {
    padding: 128px 0px;
    position: relative;
}

section.how-can-section::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 100%;
    background-color: var(--primary-color-red);
    top: 0;
    right: 0;
}

section.how-can-section a {
    text-decoration: none;
}

.accordins-img {
    display: flex;
    gap: 30px;
    align-items: center;
}

.inner-help-accordin {
    display: flex;
    width: 100%;
    border: 1px solid var(--primary-color-dark-grey);
    border-radius: 10px;
    align-items: center;
    padding: 24px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.accordin-content h4 {
    font-size: 34px;
    font-weight: 400;
    line-height: 120%;
    color: var(--primary-color-black);
}

.accordin-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: var(--primary-color-dark-grey);
    padding-top: 11px !important;
}

.inner-help-accordin svg {
    background-color: var(--primary-color-grey);
    border-radius: 100px;
}

.inner-help-accordin svg {
    width: 64px;
    height: 64px;
    padding: 7px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 20px;
}

.inner-help-accordin svg path {
    fill: #6A6A6C;
    transition: all 0.3s ease-in-out;
}

.accordin-content h4,
.accordin-content p {
    margin: 0px;
    padding: 0px;
}

.inner-help-accordin:hover svg {
    background-color: var(--primary-color-black);
}

section.how-can-section .col-md-4 h2 {
    max-width: 310px;
}

.inner-help-accordin:hover svg path {
    fill: var(--primary-color-white);
}

.accordin-content {
    margin-left: 30px;
}

.accordins-img1 {
    width: 114px;
    height: 114px;
    -webkit-mask-image: url("../images/icon-union1.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/icon-union1.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background: #6A6A6C;
    transition: all 0.4s ease;
}

.accordins-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: all 0.4s ease;
}

.inner-help-accordin:hover .accordins-img1 img {
    opacity: 1;
}

.accordins-img2 {
    width: 114px;
    height: 114px;
    -webkit-mask-image: url("../images/icon-union1.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/icon-union1.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background: #6A6A6C;
    transition: all 0.4s ease;
}

.accordins-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: all 0.4s ease;
}

.inner-help-accordin:hover .accordins-img2 img {
    opacity: 1;
}

.accordins-img3 {
    width: 114px;
    height: 114px;
    -webkit-mask-image: url("../images/icon-union2.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/icon-union2.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background: #6A6A6C;
    transition: all 0.4s ease;
}

.accordins-img3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: all 0.4s ease;
}

.inner-help-accordin:hover .accordins-img3 img {
    opacity: 1;
}

/* Responsive How Can Help Sectioon */
@media (max-width:767px) {
    section.how-can-section {
        padding: 64px 0px;
    }

    section.how-can-section::before {
        display: none;
    }

    section.how-can-section .col-md-4 h2 {
        max-width: 100%;
        font-size: 40px;
    }

    .inner-help-accordin svg {
        width: 36px;
        height: 36px;
    }

    .accordins-img3,
    .accordins-img2,
    .accordins-img1,
    .accordins-img1 img,
    .accordins-img2 img,
    .accordins-img3 img {
        width: 80px;
        height: 80px;
    }

    .accordin-content h4 {
        font-size: 26px;
    }

    .accordin-content p {
        font-size: 16px;
        padding-top: 8px !important;
        max-width: 150px;
    }

    section.how-can-section a.secondary-btn {
        display: none;
    }

    .inner-help-accordin {
        align-items: flex-start;
        padding: 20px;
    }
}

/* End Responsive How Can Help Sectioon */
/* End How Can Help Section */
/* Footer CSS */
/* Slider Gallery CSS */
section.gallery-slider {
    background-color: #E6E6E6;
    padding: 50px 0px;
}

.gallery-slider {
    display: flex;
    justify-content: space-between;
}

section.gallery-slider button {
    display: none !important;
}

.gallery-slider .slick-list.draggable img {
    height: 70px;
    width: auto !important;
}

.gallery-slider .slick-track {
    display: flex;
    justify-content: space-between;
}

.gallery-slider .slick-track:before,
.gallery-slider .slick-track:after {
    display: none;
}

/* End Slider Gallery CSS */
/* Responsive Slider Gallery CSS */
@media (max-width: 767px) {
    .gallery-slider .slick-list.draggable img {
        width: 100% !important;
    }

    .gallery-slider .slick-track {
        justify-content: unset;
    }
}


/* Responsive End Slider Gallery CSS */
/* Input Subscribe From CSS */
section.subscribe-form {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-color: var(--primary-color-dark-grey);
    padding: 72px 0px;
}

.subscribe-form-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe-form-left h3 {
    color: var(--primary-color-white);
    margin: 0px;
}

.subscribe-form-left p {
    padding: 0px;
    padding-top: 12px;
    margin: 0px;
}

.subscribe-form-right form {
    background-color: var(--primary-color-white);
    padding: 14px 14px 14px 28px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-form-right form .input-mail {
    border: unset;
    background-color: transparent;
    padding-right: 146px;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: var(--primary-color-dark-grey);
    opacity: 0.7;
}

.subscribe-form-right form .input-mail::placeholder {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color-dark-grey);
}

.subscribe-form-right form input:focus,
.subscribe-form-right form input:active {
    border: unset;
    outline: none;
    box-shadow: none;
}

.submit-button {
    width: 44px;
    height: 44px;
    position: relative;
    display: inline-block;
}

.submit-button::before {
    position: absolute;
    content: '';
    width: 44px;
    height: 44px;
    background: url(../images/input-icon.svg) no-repeat center center / contain;
    top: 0;
    left: 0;
    z-index: 2;
}

.submit-button input {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 3;
    /* icon ke upar click register hoga */
    cursor: pointer;
}

.subscribe-form-right form img {
    width: 44px;
    height: 44px;
}

/* Responsive */
@media (max-width: 767px) {
    .subscribe-form-main {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .subscribe-form-left h3 {
        font-size: 32px;
    }

    .subscribe-form-left p {
        font-size: 16px;
        max-width: 250px;
    }

    .subscribe-form-right form .input-mail {
        padding-right: 30px;
    }

    .subscribe-form-right form {
        justify-content: space-between;
    }

    .subscribe-form-right form {
        padding: 14px 0px 14px 24px;
    }

    .subscribe-form-left p {
        font-size: 16px;
    }

    .subscribe-form-right,
    .subscribe-form-left {
        width: 100%;
    }

    .submit-button::before {
        top: 0%;
        left: -22px;
    }

    .subscribe-form-left,
    .subscribe-form-right {
        width: 100%;
    }

}

/* End Input Subscribe From CSS */

/* Footer Css */

footer {
    background-color: var(--primary-color-black);
    padding: 72px 0px 96px;
}

.left-footer-dallas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left-footer-toogle {
    display: flex;
    gap: 20px;
    align-items: center;
}

.left-footer-toogle center {
    display: flex;
}

.left-footer-toogle center label,
.left-footer-toogle input.check-toggle-round-flat+label:before {
    background-color: transparent;
}

.left-footer-toogle label {
    border: 1px solid var(--primary-color-grey);
}

.left-footer-dallas img {
    width: 255.84400939941406px;
    height: 85.99967193603516px;
}

.left-footer-dallas p {
    font-size: 15px;
    line-height: 150%;
    max-width: 270px;
}

.left-footer-toogle a.primary1-btn {
    text-decoration: none;
}

footer .row .footer-dallas {
    padding: 0px;
    display: flex;
}

.services-menu-list.col-md-8 {
    display: flex;
    flex-wrap: wrap;
}

.services-menu-list .services-lsit h5 {
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    color: var(--primary-color-white);
    padding-bottom: 24px;
}

.services-menu-list .services-lsit ul {
    padding: 0px;
    padding-right: 70px;
}

.services-menu-list .services-lsit ul li {
    list-style-type: none;
    padding-bottom: 20px;
}

.services-menu-list .services-lsit ul li a {
    padding: 0px;
}

.services-menu-list .services-lsit ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #d5d5d5;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.services-menu-list .services-lsit ul li a:hover {
    color: var(--primary-color-dark-grey);
}

.left-services-list-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0px;
}

.left-services-list-item.list-about {
    padding-left: 65px;
}

.left-services-list-item.list-about ul {
    padding: 0px;
}

.services-lsit.icons-list a {
    background-color: var(--primary-color-white);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-lsit.icons-list a:hover {
    transform: translateY(-5px);
}

.icon-item-list {
    display: flex;
    gap: 12px;
}

/* Responsive Header */
@media (max-width: 767px) {
    footer .row .footer-dallas {
        flex-wrap: wrap;
    }

    .services-menu-list.col-md-8 {
        padding-top: 44px;
    }

    .col-md-6.services-lsit {
        width: 50%;
    }

    .left-footer-dallas p {
        max-width: 100%;
    }

    .footer-dallas .row.col-md-4 {
        width: 100%;
    }

    .icon-item-list {
        flex-wrap: wrap;
    }

    .left-services-list-item {
        padding: 0px 20px;
    }

    .left-services-list-item.list-about {
        padding-left: 20px;
        padding-right: 0px !important;
    }

    .left-services-list-item.list-about .col-md-12.services-lsit {
        width: 50%;
    }

    footer {
        padding: 44px 0px 52px;
    }

    .services-menu-list .services-lsit ul {
        padding-right: 0px;
    }

    .left-footer-dallas {
        padding: 0px 10px;
    }
}

/* End Responsive Header */
/* Footer CSS End */
/* Copyright Css */
.copyright-main {
    background-color: var(--primary-color-dark-grey);
    padding: 19px 0px;
}

.copyright-main p {
    margin: 0px;
}

.copyright-main .col-md-4,
.copyright-main .col-md-8 {
    padding: 0px;
}

.copyright-main a {
    text-decoration: unset;
    font-size: 16px;
    line-height: 130%;
    color: var(--primary-color-white);
    transition: all 0.3s ease-in-out;
}

.copyright-main a:hover {
    color: var(--primary-color-black);
}

.copyright-main .col-md-8 {
    display: flex;
    gap: 30px;
    margin-left: -10px;
}

.copyright-main p {
    margin: 0px;
    font-size: 16px;
}

@media (max-width: 767px) {
    section.copyright-main {
        padding: 20px;
    }

    section.copyright-main .col-md-8.col-sm-12 {
        margin-left: 0px !important;
        margin-top: 16px;
    }

    .copyright-main .col-md-8 {
        margin-left: 0px;
        padding-top: 16px;
    }
}

/* End Copyright Css */



/* Container Media Query */
@media (max-width: 767px) {
    .container {
        padding: 0px 20px !important;
    }
}

@media (max-width: 1300px) and (min-width: 767px) {
    footer .container {
        padding: 0px 20px !important;
    }
}