:root {
	--head-color:#7f5faf;
	--orange-color:#eb733f;
	--white-color:#fffbeb;
    --black-color:#1d1d1d;
}
.lenis {
    height: auto;
  }
body {
	 font-family: "Work Sans", sans-serif;
	font-style: normal;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 1.2;
	position: relative;
	overflow-x: hidden;
	color: var(--black-color);
	position: relative;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
body.sw-body-color {
    background-color: var(--bg-color1);
}

.img-fluid {
	max-width: 100%;
	height: auto;
	width: 100%;
}
.container {
	max-width: 1170px;
}
.row>* {
	padding-right: 15px;
	padding-left: 15px;
}
*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	 font-family: "Work Sans", sans-serif;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0;
	padding: 0;
	word-break: break-word;
}
img {
	max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
	outline: none !important;
	box-shadow: none;
}
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
p {
	margin: 0px;
	padding: 0;
	word-break: break-word;
}
label{
    display: block;
    text-transform: capitalize;
}

/* width */

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: var(--white-color);
}

::-webkit-scrollbar-thumb {
	background: var(--black-color);
	width: 0px;
}
/* ====common btn css */
a.dd-common-btn {
    color: var(--white-color);
    background-color: var(--head-color);
    font-size: 22px;
    transition: all 0.5s;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 50px;
	text-transform: capitalize;
	font-weight: 500;
}
a.dd-common-btn:hover{
    background-color: var(--black-color);
    color: var(--white-color);
}
/* ===== header css start =========*/
.dd-header-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--head-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 40px;
}
.dd-header-social-area ul {
    display: flex;
    align-items: center;
    gap: 40px;
}
.dd-header-social-area ul li {
	color: var(--white-color);
	font-size: 25px;
}
.dd-header-social-area ul li span {
    padding: 0px 10px 0px 0px;
}
.dd-header-text-area p{
	color: var(--white-color);
	font-size: 25px;
}
/* ===== header css end =========*/
/* ======= banner css start =========*/
.dd-banner-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--orange-color);
    padding: 20px 0px 0px;
    border-radius: 0px 0px 40px 40px;
}
.dd-banner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px 0px;
}
.dd-banner-buttons ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dd-banner-buttons ul li:nth-child(1) a{
	background-color: var(--white-color);
	color: var(--head-color);
}
.dd-banner-buttons ul li:nth-child(1) a:hover{
    background-color: var(--black-color);
    color: var(--white-color);
}
.dd-banner-buttons ul li:nth-child(3) a{
	background-color: var(--white-color);
	color: var(--head-color);
}
.dd-banner-buttons ul li:nth-child(3) a:hover{
    background-color: var(--black-color);
    color: var(--white-color);
}
a.dd-common-btn{
	color: var(--white-color);
	background-color: var(--head-color);
	font-size: 22px;
	transition: all 0.5s;
}
.dd-banner-content{
	text-align: center;
}
.dd-banner-content h6 {
    font-size: 35px;
    color: var(--white-color);
	font-weight: 300;
}
.dd-banner-content h6 span{
    padding-right: 10px;
    position: relative;
    top: -4px;
}
.dd-banner-content h6 span svg {
    width: 40px;
    height: 40px;
}
.dd-banner-content h1 {
    font-size: 75px;
    color: var(--white-color);
    max-width: 1380px;
    margin: 30px auto 30px;
    font-weight: 700;
}
.dd-banner-content h5 {
    font-size: 40px;
    color: var(--white-color);
    max-width: 1320px;
    margin: 0 auto;
    font-weight: 300;
}
.dd-banner-content a.dd-common-btn {
    margin: 60px auto 0;
}
.dd-dashboard-img {
    text-align: center;
    padding: 80px 0px 0px 0px;
    position: relative;
    z-index: 1;
}
.dd-dashboard-img:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0px;
    width: 100%;
    height: 100%;
    background: #fffbeb;
    z-index: -1;
    top: 480px;
    border-radius: 20px 20px 0px 0px;
}
/* ======= banner css end =========*/
.dd-dashboard-wrapper {
    padding: 0px 40px 100px;
    background-color:var(--orange-color);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.dd-serve-food-wrapper {
    text-align: center;
    padding: 150px 0px 0px;
}
.dd-serve-food-wrapper h2 {
    font-size: 75px;
    color: var(--orange-color);
    font-weight: 800;
}
.dd-serve-food-wrapper h5 {
    font-size: 40px;
    color: var(--black-color);
    padding: 20px 0px 0px;
}
.dd-serve-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s;
    margin: 0px 0px 15px;
}
.dd-serve-box:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #00000087;
    border-radius: 10px;
    top: auto;
    transition: all 0.5s;
    transform: scale(0);
}
.dd-serve-box:hover::after{
 transform: scale(1);
}
.dd-serve-flex {
    display: grid;
    grid-template-columns:  repeat(auto-fit, minmax(250px, 1fr));;
    gap: 10px;
    padding: 80px 0px 80px;
}
.dd-serve-box a img {
    width: 100%;
}
.dd-serve-box a p {
    font-size: 28px;
    color: var(--white-color);
    position: absolute;
    bottom: 30px;
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 500;
}
.dd-serve-bottom-head h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--black-color);
}
.dd-schedule-demo-btn a {
    background-color: var(--orange-color);
    padding: 10px 30px;
    margin: 100px auto 0px;
}
.dd-schedule-demo-btn a.dd-common-btn{
    text-transform: uppercase;
}







/* ======== work css start ============*/
.dd-work-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--orange-color);
    padding: 0px 0px 0px;
    border-radius: 30px 30px 0px 0px;
}
.dd-work-heading {
    text-align: center;
    background-image: url(../images/work-shape1.png);
    background-repeat: no-repeat;
    padding: 150px 0px;
    background-position: top center;
    background-size: 100%;
    margin: 0px 0px 110px;
}
.dd-work-heading h2{
	font-size: 75px;
	font-weight: 700;
	color: var(--white-color);
}
.dd-work-heading h3{
	font-size: 40px;
	color: var(--white-color)
}
.dd-work-heading h3 {
    font-size: 40px;
    color: var(--white-color);
    font-weight: 400;
    padding: 20px 0px 0px 0px;
}
.dd-work-img {
    padding: 0px 0px 30px;
}
.dd-work-content {
	padding: 170px 0px 0px;
}
.dd-work-content h2{
	font-size: 60px;
	color: var(--white-color);
}
.dd-work-content p {
    font-size: 35px;
    color: var(--white-color);
    padding: 30px 0px 0px 0px;
    line-height: 1.5;
}
.dd-work-wrap1 {
    position: relative;
    z-index: 1;
    padding: 0px 40px;
}
.dd-work-wrap2 {
    background-image: url(../images/work-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -110px;
    z-index: 0;
	padding: 0px 40px 100px;
}
.dd-work-wrap2-head {
    text-align: center;
}
.dd-work-wrap2-head > img {
    padding: 200px 0px 60px 0px;
}
.dd-work-wrap2-head h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 500;
    background-color: var(--orange-color);
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px 60px;
    border-radius: 50px;
}
.dd-work-wrap2-head p {
    font-size: 35px;
    color: var(--white-color);
    max-width: 1210px;
    margin: 50px auto 60px;
    font-weight: 300;
}
.dd-work-box{
	margin: 0px 0px 30px 0px;
}
.dd-work-box img {
    width: 100%;
}
.dd-free-trial a {
    background-color: var(--white-color);
    color: var(--black-color);
    font-weight: 600;
	margin: 60px auto 0;
}
/* ======== work css end ============*/
/*============= benifits section css start =============*/
.dd-benifits-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--orange-color);
    padding: 100px 40px 70px;
}
.dd-benifits-head h2 {
    font-size: 60px;
    background-color: var(--head-color);
    color: var(--white-color);
    padding: 10px 40px;
    border-radius: 100px;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
}
.dd-benifits-head p {
    font-size: 35px;
    color: var(--white-color);
    text-align: center;
    padding: 50px 0px 50px;
}
.dd-benifits-line-shape {
    text-align: center;
}
.dd-benifits-box {
    position: relative;
    background-color: var(--white-color);
    padding: 230px 70px 50px;
    border-radius: 10px;
    margin: 250px 0px 45px;
}
.dd-benifits-box:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 10px;
    height: 340px;
    background-color: var(--head-color);
    border-radius: 0px 20px 20px 0px;
}
.dd-benifits-box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    width: 340px;
    height: 25px;
    background-color: var(--head-color);
    border-radius: 0px 0px 20px 20px;
    margin: 0 auto;
}
.dd-benifit-content h1 {
    font-size: 50px;
    color: var(--black-color);
    font-weight: 600;
    padding: 30px 0px 40px;
}
.dd-benifit-img {
    text-align: center;
    position: absolute;
    top: -200px;
}
.dd-benifit-img img {
    width: 100%;
}
.dd-benifit-content ul li {
    font-size: 30px;
    position: relative;
    padding: 0px 0px 60px 35px;
    transition: all 0.5s;
}

.dd-benifit-content ul li:last-child{
    padding-bottom: 0;
}
.dd-benifit-content ul li b {
    font-weight: 600;
}
.dd-benifit-content ul li span {
    position: absolute;
    left: 0;
    top: -3px;
}
.dd-benifit-content ul li span svg {
    fill: #7f5faf;
    width: 10px;
    height: 10px;
}
.dd-benifit-content ul li:hover{
    transform: translateX(-5px);
}
.dd-benifit-content ul li:hover b{
    color: var(--orange-color);
}
.dd-benifit-content ul li:hover span svg{
    fill: var(--orange-color);
}

.dd-demo-schdule-btn a {
    text-transform: uppercase;
    background-color: var(--white-color);
    color: var(--black-color);
    margin: 70px auto 40px;
}

.dd-demo-schedule-wrap > h2 {
    font-size: 35px;
    color: var(--white-color);
    font-weight: 400;
    text-align: center;
    padding: 30px 0px 30px;
}
.dd-demo-schedule-wrap > h2 span {
    padding: 0px 10px 0px 0px;
}
.dd-demo-schedule-wrap > h2 span svg {
    width: 30px;
    height: 30px;
}
.dd-demo-schedule-wrap  > h1 {
    font-size: 75px;
    color: var(--white-color);
    font-weight: 700;
    max-width: 1610px;
    text-align: center;
    margin: 20px auto 50px;
}
.dd-demo-schedule-wrap h3{
    color: var(--white-color);
    font-weight: 300;
    font-size: 40px;
    text-align: center;
}
.dd-demo-schedule-wrap  h4 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    padding: 40px 0px 0px;
}
.dd-demo-schedule-wrap  h5 a{
    color: var(--white-color);
}
.dd-demo-schedule-wrap h5 a {
    margin: 40px auto 0;
    text-transform: uppercase;
}
.dd-footer-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}
.dd-footer-left ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dd-footer-left ul li{
    font-size: 25px;
    color: var(--black-color);
}
.dd-footer-left ul li:nth-child(3) {
    position: relative;
    top: -6px;
}
.dd-footer-left ul li:nth-child(5) {
    position: relative;
    top: -6px;
}
.dd-footer-left ul li:nth-child(7) {
    position: relative;
    top: -6px;
}
.dd-footer-left ul li a{
    color: var(--black-color);
} 
.dd-footer-left ul li:hover a{
    color: var(--orange-color);
}
.dd-footer-righ p{
    font-size: 25px;
    color: var(--black-color);
}
/* popup css start */
.dd-demo-model .modal-body {
    padding: 0px 20px 40px;
}
.dd-demo-model-body > h1 {
    text-transform: capitalize;
    font-size: 30px;
    text-align: center;
    font-weight: 500;
}
.dd-demo-model-body > p {
    text-align: center;
    padding: 5px 0px 40px;
    font-size: 20px;
    font-weight: 400;
    color: #7e7e7e;
}
.dd-demo-logo {
    text-align: center;
    padding: 0px 0px 20px;
}
.dd-demo-logo img {
    width: 100%;
    max-width: 130px;
}
.dd-form-flex {
    display: flex;
    gap: 15px;
    padding: 0px 0px 20px;
    justify-content: space-between;
}
.dd-demo-field label {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
}
.dd-demo-field input {
    height: 45px;
    border: 1px solid #7e7e7e3b;
    color: var(--black-color);
}
.form-control:focus {
    border-color: #7e7e7e3b;
    box-shadow: unset;
}
.dd-register-button button {
    background-color: var(--head-color);
    border: none;
    width: 100%;
    height: 50px;
    text-transform: capitalize;
    color: var(--white-color);
    font-size: 20px;
    border-radius: 5px;
    margin: 15px 0px 0px;
}
.dd-demo-field .select2-container {
    display: block;
    z-index: 11;
}
.select2-container--open {
    z-index: 9999; /* Even higher than Bootstrap modal */
  }
.dd-demo-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
}
.dd-demo-field .select2-container .select2-selection--single {
    height: 45px;
}
.dd-demo-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 8px;
}
.dd-demo-field .select2-container--default .select2-selection--single{
    border: 1px solid #7e7e7e3b;
}
.dd-demo-field .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #7e7e7e3b !important;
    border-radius: 5px;
    height: 45px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #7e7e7e3b !important;
    border-radius: 5px;
    height: 45px;
}
.select2-dropdown{
    border: 1px solid #7e7e7e3b !important;
}
.select2-container--open .select2-dropdown {
    left: 0;
    top: 5px;
}
.dd-demo-model .modal-header {
    border: none;
    padding: 0px;
    justify-content: flex-end;
    margin: 4px 4px 0px 0px;
}
.modal-header button{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--head-color);
    border: none;
    border-radius: 5px;
}
.modal-header button svg {
    width: 15px;
    height: 15px;
    fill: var(--white-color);
}
/*============= benifits section css end =============*/
/* media css start */
@media(max-width:1800px){
    .dd-dashboard-img img {
        max-width: 1300px;
    }
    .dd-work-content h2 {
        font-size: 50px;
    }
    .dd-work-wrap2-head h2{
        font-size: 50px;
    }
}
@media(max-width:1600px){
    .dd-footer-righ {
        text-align: center;
        padding: 10px 0px 0px;
    }
    .dd-footer-righ p{
        color: var(--orange-color);
    }
    .dd-footer-left ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    .dd-footer-wrap {
        display: block;
    }
    .dd-work-content h2 {
        font-size: 40px;
    }
    .dd-work-content p {
        font-size: 30px;
        padding: 20px 0px 20px 0px;
    }
    .dd-work-wrap2-head h2 {
        font-size: 40px;
    }
}
@media(max-width:1400px){
    .dd-benifits-line-shape img {
        max-width: 600px;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 60px;
    }
    .dd-header-text-area p {
        font-size: 20px;
    }
    .dd-header-social-area ul li {
        font-size: 20px;
    }
    .dd-banner-logo img {
        max-width: 150px;
    }
    .dd-banner-content h1 {
        font-size: 60px;
    }
    .dd-banner-content h5 {
        font-size: 32px;
        max-width: 930px;
    }
    .dd-dashboard-img img {
        max-width: 1000px;
    }
    .dd-serve-food-wrapper {
        padding: 0px 0px 0px;
    }
    .dd-serve-bottom-head h2 {
        font-size: 45px;
    }
    .dd-dashboard-img:after {
        top: 280px;
    }
    .dd-work-heading {
        padding: 40px 0px;
    }
}
@media(max-width:1200px){
    .dd-banner-content h1 {
        font-size: 50px;
    }
    .dd-header-wrapper {
        display: block;
    }
    .dd-header-social-area ul {
        justify-content: center;
        padding: 0px 0px 10px;
    }
    .dd-header-text-area {
        text-align: center;
    }
    .dd-dashboard-img img {
        max-width: 880px;
    }
    .dd-benifits-box {
        padding: 50px 70px 50px;
        margin: 0 0px 45px;
    }
    .dd-benifit-img {
        position: relative;
        top: 0;
    }
    .dd-benifits-box {
        padding: 50px 30px 50px;
    }
    .dd-benifit-content h1 {
        font-size: 40px;
    }
    
}
@media(max-width:991px){
    .dd-footer-left ul li:nth-child(1) {
        display: block;
        width: 100%;
        text-align: center;
    }
    .dd-benifits-head h2 {
        font-size: 40px;
    }
    .dd-benifits-line-shape {
        text-align: center;
        display: none;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 40px;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    .dd-dashboard-img img {
        max-width: 600px;
    }
    .dd-banner-buttons ul li:nth-child(1){
        display: none;
    }
    .dd-banner-buttons ul li:nth-child(2){
        display: none;
    }
    .dd-banner-content h1 {
        font-size: 40px;
    }
    .dd-serve-food-wrapper {
        padding: 60px 0px 0px;
    }
    .dd-serve-food-wrapper h5 {
        font-size: 30px;
    }
    .dd-serve-food-wrapper h2 {
        font-size: 70px;
    }
    .dd-serve-flex {
        padding: 80px 0px 50px;
    }
    .dd-work-heading {
        background-image: none;
        margin: 0 0 40px;
    }
    .dd-work-wrap2 {
      margin-top: 0;
        background-color: #7f5faf;
        background-image: none;
    }
    .dd-work-wrap2-head > img {
        padding: 100px 0 40px;
    }
    .dd-work-wrap2-head h2 {
        font-size: 35px;
    }
    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
    .order3{
        order: 3;
    }
    .order4{
        order: 4;
    }
    .order5{
        order: 5;
    }
    .order6{
        order: 6;
    }
    .dd-work-content {
        padding: 0;
    }
   
    .dd-work-content img {
        padding: 0px 0px 40px 0px;
    }
    .dd-work-wrap1 {
        padding: 0px 40px 50px;
    }
    .dd-work-wrap2-head h2 {
        font-size: 32px;
        padding: 10px 50px;
    }
    .dd-work-wrap2-head > img {
        max-width: 100px;
    }
    .dd-work-wrap2-head p {
        font-size: 30px;
    }
    .dd-work-heading h2 {
        font-size: 60px;
    }
}

@media(max-width:767px){
    .dd-benifits-head h2 {
        font-size: 30px;
    }
    .dd-benifits-head p {
        font-size: 30px;
        padding: 30px 0px 40px;
    }
    .dd-benifit-content h1 {
        font-size: 30px;
    }
    .dd-benifit-content ul li {
        font-size: 25px;
        padding: 0px 0px 20px 35px;
    }
    .dd-demo-schdule-btn a {
        margin: 40px auto 20px;
    }
    .dd-demo-schedule-wrap > h2 {
        font-size: 27px;
    }
    .dd-work-img img {
        max-width: 300px;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 30px;
    }
    .dd-demo-schedule-wrap h3 {
        font-size: 30px;
    }
    .dd-banner-content {
        padding: 0px 40px;
    }
    .dd-demo-schedule-wrap  h4 {
        font-size: 30px;
    }
    .dd-dashboard-img img {
        max-width: 500px;
    }
    .dd-banner-content h1 {
        font-size: 30px;
    }
    .dd-banner-content h6 {
        font-size: 30px;
    }
    .dd-banner-content h5 {
        font-size: 25px;
    }
    .dd-serve-food-wrapper h2 {
        font-size: 50px;
    }
    .dd-serve-bottom-head h2 {
        font-size: 30px;
    }
    .dd-work-content h2 {
        font-size: 30px;
    }
    .dd-work-content p {
        font-size: 25px;
    }
    .dd-work-wrap2-head h2 {
        font-size: 26px;
        border-radius: 70px;
    }
}
@media(max-width:580px){
    .dd-benifits-wrapper {
        padding: 40px 40px 40px;
    }
    .dd-dashboard-img img {
        max-width: 360px;
    }
    .dd-banner-logo img {
        max-width: 110px;
    }
    .dd-benifits-head h2 {
        font-size: 25px;
    }
    .dd-demo-schdule-btn a {
        margin: 10px auto 0px;
    }
    .dd-benifit-content ul li {
        font-size: 18px;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 25px;
    }
    .dd-demo-schedule-wrap > h2 {
        font-size: 22px;
    }
    .dd-demo-schedule-wrap h3 {
        font-size: 25px;
        font-weight: 400;
    }
    .dd-demo-schedule-wrap  h4 {
        font-size: 20px;
        padding: 20px 0px 0px;
    }
    .dd-demo-schedule-wrap h5 a {
        margin: 30px auto 0;
        font-size: 18px;
    }
    .dd-footer-left ul li {
        font-size: 22px;
    }
    
    .dd-footer-wrap {
        background-color: var(--black-color);
    }
    .dd-footer-left ul li {
        font-size: 22px;
        color: var(--white-color);
    }
    .dd-footer-left ul li a {
        color: var(--white-color);
    }
    .dd-footer-righ p {
        font-size: 18px;
        color: var(--orange-color);
        padding: 25px 0px 0px;
        border-top: 1px solid #ffffff66;
        margin: 20px 0px 0px;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 25px;
        margin: 0px auto 20px;
    }
    .dd-benifit-content h1 {
        font-size: 25px;
        padding: 20px 0px 30px;
    }
    .dd-benifits-head p {
        font-size: 25px;
        padding: 20px 0px 30px;
    }
    .dd-banner-logo-wrap {
        padding: 0px 40px 40px;
    }
    .dd-banner-content h6 {
        font-size: 24px;
    }
    .dd-dashboard-img {
        padding: 60px 0px 0px 0px;
    }
    .dd-serve-food-wrapper {
        padding: 40px 0px 0px;
    }
    .dd-serve-food-wrapper h2 {
        font-size: 40px;
    }
    .dd-serve-food-wrapper h5 {
        font-size: 25px;
        padding: 10px  40px 0;
    }
    .dd-serve-flex {
        padding: 50px 0px 30px;
    }
    .dd-serve-box a p {
        font-size: 25px;
    }
    .dd-serve-bottom-head h2 {
        font-size: 22px;
        text-align: center;
        font-weight: 500;
    }
    .dd-schedule-demo-btn a {
        margin: 30px auto 0px;
    }
    .dd-dashboard-wrapper {
        padding: 0px 40px 40px;
    }
    .dd-work-heading h2 {
        font-size: 40px;
    }
    .dd-work-heading h3 {
        font-size: 30px;
        padding: 10px 0px 0px 0px;
    }
    .dd-work-content {
        padding: 0 0 40px;
    }
    .dd-work-wrap1 {
        padding: 0px 40px 0px;
    }
    .dd-work-wrap2-head > img {
        padding: 50px 0 40px;
    }
    .dd-work-wrap2-head h2 {
        font-size: 22px;
    }
    .dd-work-wrap2-head p {
        font-size: 20px;
        margin: 0 auto 40px;
    }
    .dd-work-wrap2-head h2 {
        margin: 0 auto 30px;
    }
    .dd-free-trial a {
        margin: 10px auto 0;
    }
    .dd-work-wrap2 {
        padding: 0px 40px 40px;
    }
}
@media(max-width:480px){
    .dd-demo-logo img {
        max-width: 90px;
    }
    .dd-demo-model-body > h1 {
        font-size: 24px;
        font-weight: 600;
    }
    .dd-demo-model-body > p {
        font-size: 18px;
    }
    .modal-header button {
        width: 30px;
        height: 30px;
        border-radius: 3px;
    }
    .modal-header button svg {
        width: 10px;
        height: 10px;
    }
    .dd-register-button button {
        margin: 0;
    }
    .dd-demo-field {
        padding: 0px 0px 20px;
    }
    .dd-form-flex {
        display: block;
        padding: 0;
    }
    .dd-benifits-box:before {
        bottom: -7px;
        width: 210px;
        height: 7px;
    }
    .dd-benifits-box:after {
        width: 7px;
    }
    .dd-benifits-head h2 {
        font-size: 20px;
        padding: 10px 20px;
    }
    .dd-benifits-wrapper {
        padding: 40px 20px 40px;
    }
    .dd-demo-schedule-wrap  > h1 {
        font-size: 20px;
    }
    .dd-demo-schedule-wrap > h2 {
        font-size: 20px;
    }
    .dd-demo-schedule-wrap h5 a {
        font-size: 18px;
        text-align: center;
    }
    .dd-footer-left ul li {
        font-size: 18px;
        line-height: 1.5;
    }
    .dd-benifits-box {
        padding: 50px 20px 30px;
    }
    .dd-work-wrap2 {
        padding: 0px 20px 40px;
    }
    .dd-benifit-content h1 {
        font-size: 22px;
    }
    .dd-dashboard-img img {
        max-width: 280px;
    }
    .dd-header-social-area ul {
        display: block;
        text-align: center;
    }.dd-header-social-area ul li {
        font-size: 18px;
        padding: 0px 0px 10px;
    }
    .dd-header-social-area ul li span img {
        width: 20px;
    }
    .dd-work-img img {
        max-width:250px;
    }
    .dd-banner-logo-wrap {
        padding: 0px 20px 40px;
    }
    .dd-banner-buttons ul li:nth-child(3) a {
        
        font-size: 16px;
        padding: 10px 18px;
    }
    .dd-banner-content {
        padding: 0px 20px;
    }
    .dd-banner-content h1 {
        font-size: 22px;
        margin: 20px auto 20px;
    }
    .dd-banner-content h5 {
        font-size: 22px;
    }
    .dd-banner-content a.dd-common-btn {
        margin: 30px auto 0;
    }
    a.dd-common-btn {
        font-size: 16px;
        padding: 10px 15px;
    }
    .dd-dashboard-img {
        padding: 40px 0px 0px 0px;
    }
    .dd-serve-food-wrapper h5 {
        font-size: 22px;
        padding: 0;
    }
    .dd-dashboard-wrapper {
        padding: 0px 20px 30px;
    }
    .dd-serve-box a p {
        font-size: 20px;
    }
    .dd-serve-food-wrapper h2 {
        font-size: 35px;
        padding: 0px 0px 10px;
    }
    .dd-serve-flex {
        padding: 40px 0px 30px;
    }
    .dd-work-heading {
        margin: 0px;
    }
    .dd-work-heading h2 {
        font-size: 30px;
    }
    .dd-work-heading h3 {
        font-size: 22px;
    }
    .dd-work-wrap1 {
        padding: 0px 20px 0px;
    }
    .dd-work-content h2 {
        font-size: 24px;
    }
    .dd-work-content p {
        font-size: 22px;
        line-height: 1.2;
    }
    .col-lg-4.align-self-center.order6 .dd-work-content img {
        padding: 20px 0px 0px 0px;
    }
    .dd-work-wrap2-head > img {
        padding: 40px 0 30px;
    }
    .dd-work-wrap2-head h2 {
        margin: 0 auto 30px;
        border-radius: 10px;
        padding: 10px 10px;
    }
    .dd-work-wrap2-head > img {
        max-width: 70px;
    }
    .dd-serve-bottom-head h2 {
        font-size: 20px;
    }
    .dd-header-text-area p {
        font-size: 16px;
    }
    .dd-header-social-area ul li {
        font-size: 16px;
        padding: 0px 0px 10px;
    }
}