/*Main Css */
:root {
    --primary: #FB923C;
    --bg-light: #F4F4F4;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "CoolveticaRg" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
   
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #FB923C;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #FB923C;
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 400;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}



span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
   
    
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}


/* Padding Classes */


.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}


/* Heading Classes */

.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}



.highlighted {
    color: #ff5e14;
}


/* Custom Slick Css */

.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/

header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    background: #F8F8F8;
}
header.sticky{
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}

.logo img {
    display: block;
    max-width: 160px;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}



.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}


/* Menu Css */

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}

.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 20px 40px;
    font-weight: 400 !important;
    border-radius: 20px;
    box-shadow: 0px 0px 54px 0px rgba(251, 146, 60, 0.70);
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}
@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */

.has-child {
    position: relative;
    z-index: 1;
}

.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}

.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}


/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.mainBanner:before {
    content: '';
    display: block;
    position: absolute;
    height: 58%;
    width: 18%;
    top: -124px;
    left: 0;
    background-image: url(../images/banner/1.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
}
.mainBanner:after {
    content: '';
    display: block;
    position: absolute;
    height: 58%;
    width: 14%;
    top: -124px;
    right: 0;
    background-image: url(../images/banner/2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.mainBanner.mb2:before {
    content: '';
    display: block;
    position: absolute;
    height: 58%;
    width: 25%;
    top: 32%;
    left: 3%;
    background-image: url(../images/banner/3.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
}
.mainBanner.mb2:after {
    content: '';
    display: block;
    position: absolute;
    height: 58%;
    width: 25%;
    top: 32%;
    right: 3%;
    background-image: url(../images/banner/4.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.banner-content {
    padding: 150px 0 100px;
    max-width: 56%;
    margin: 0 auto;
}
h1.banner-heading {
    font-size: 66px;
    line-height: 86px;
    margin-bottom: 2rem;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 2rem;
    color: #5F5F5F;
}
ul.banner-portfolio {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
}
.banner-portfolio li img {
    width: 100%;
    height: 100%;
}

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
    border-radius: 20px;
    background: #F1FFBE;
    padding: 20px 25px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.testi-slider-2 .testi-slide.bg-green{
    background: #D0FFDE;
}
.testi-slider-2 .testi-slide.bg-orange{
    background: #FFD9BA;
}
.testi-slider-2 .testi-slide.bg-purple{
    background: #EEDBFF;
}
.testi-slider-2 .testi-slide.bg-skyblue{
    background: #BEE0FF;
}
.testi-slider-2 .testi-slide.bg-3{
    background: #EEDBFF;
}
.testi-slider-2 .testi-slide.bg-4{
    background: #FFE5E2;
}
.testi-slider-2 .testi-slide.bg-5{
    background: #D0FFDE;
}
.testi-slider-2 .testi-slide p {
    color: #14171C;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.testi-slide img {
    display: flex;
    margin: 0 auto;
    height: 180px;
}
.testi-slide h3 {
    color: #222;
    font-size: 30px;
    padding: 1.5rem 0;
}
/* Testimonials 2 */

.product-card {
    border-radius: 20px;
    background: #F0FFBE;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
}
.product-card.bg-green{
    background: #D0FFDE;
}
.product-card.bg-orange{
    background: #FFD9BA;
}
.product-card.bg-purple{
    background: #EEDBFF;
}
.product-card h4 {
    font-size: 24px;
    padding: 1.5rem 0;
}
.product-card p {
    font-size: 18px;
    line-height: 28px;
}
.product-image {
    text-align: end;
}
.arrow-btn {
    position: absolute;
    top: 40%;
    color: #000;
    font-size: 30px;
    z-index: 1;
}
.arrow-btn.right{
    right: 1%;
}
.arrow-btn.left{
    left: 1%;
}
/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 2px solid #000;
}
ul.overview-nav.d2 a {
    padding: 30px 18px;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    width: 100%;
}
.overview-nav:first-child > li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -3px;
    background: var(--primary);
    transition: .5s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.overview-nav:first-child > li {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.overview-nav:first-child > li:hover:before {
    width: 100%;
}
/* Portfolio */

/* Testimonials */
.testi-card {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 5rem;
}
.testi-card.bb-0 {
    border-bottom: 0;
}
.testi-card p {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    font-family: 'CoolveticaRg';
}
.testi-card .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.testi-card .client {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.testi-card .client .det .name {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #0B0B0B;
    display: block;
}
.testi-card .client .det .des {
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}
.testi-card .bottom .stars {
    color: #00F000;
    display: flex;
    font-size: 20px;
    gap: 8px;
}
/* Testimonials 2 */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;
    
}
.sec-heading h2 {
    font-size: 40px;
    line-height: 48px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #5F5F5F;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 4rem 0 1rem;
}
.btn-wrap .theme-btn {
    padding: 30px 60px;
    background: var(--primary);
    color: white;
    font-size: 20px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
    border-radius: 20px;
    box-shadow: 0px 0px 54px 0px rgba(251, 146, 60, 0.70);
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 35px 35px 35px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    background: #EEF3FD;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #000;
    font-size: 26px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    /* position: absolute; */
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}
/* Accordian */

/* footer */
footer {
    background: #2D1400;
    padding: 4rem 0 1rem;
}
.footer-para p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    background: #2D1400;
    padding-top: 2rem;
}
.foot-hdng h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 1rem;
}
.f-menu li a {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
}
.foot-hdng a {
    color: #fff;
    margin-bottom: 18px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    border-top: 2px solid #f1eded82;
}
.copyright p {
    color: white;
    text-align: center;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
.brd {
    padding-bottom: 4rem;
}
/* footer */

/* portfolio-page */
.banner-content.portfolio-page {
    max-width: 64%;
}
.testi-slide {
    border-radius: 20px;
    background: #F1FFBE;
    padding: 20px 25px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.testi-slide p {
    color: #14171C;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.testi-slide.bg-green{
    background: #D0FFDE;
}
.testi-slide.bg-orange{
    background: #FFD9BA;
}
.testi-slide.bg-purple{
    background: #EEDBFF;
}
.testi-slide.bg-3{
    background: #EEDBFF;
}
.testi-slide.bg-4{
    background: #FFE5E2;
}
.testi-slide.bg-5{
    background: #ffcbe5;
}
.services {
    text-align: center;
    margin-bottom: 4rem;
}
.services h5 {
    font-size: 18px;
    padding-top: 2rem;
}
.core-values {
    text-align: left;
}
.core-values span {
    color: #9C0;
    font-size: 24px;
    font-weight: 500;
}
.core-values h3 {
    font-size: 32px !important;
    padding: 1rem 0 !important;
}
.core-values span.green {
    color: #1BC84F;
}
.core-values span.orange {
    color: #EB7B20;
}
.core-values span.purple {
    color: #8A2BDE;
}
.mainBanner.innerbanner:before {
    display: none;
}
.mainBanner.innerbanner:after {
    display: none;
}
.field label {
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.field input, .field textarea {
    background: #FFF;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #D1D1D1;
    padding: 20px 14px;
    margin-bottom: 28px;
    outline: none !important;
    border-radius: 20px;
    border: 1px solid #D6D6D6;
}
.field textarea {
    height: 160px;
    resize: none;
}

.portfolio-images .portfolio-image1 {
    position: absolute;
    top: 30%;
    left: 0;
}
.portfolio-images .portfolio-image2 {
    position: absolute;
    top: 60%;
    left: 0;
}
.portfolio-images .portfolio-image3 {
    position: absolute;
    top: 25%;
    right: 3%;
}
.portfolio-images .portfolio-image4 {
    position: absolute;
    bottom: 0;
    right: 16%;
}
.portfolio-images .portfolio-image5 {
    position: absolute;
    bottom: 0;
    right: 0;
}


/* 404 */
.error-text {
    font-size: 100px;
    line-height: 104px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 5rem;
}
/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
}
.terms ul {
    padding-left: 40px;
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
}
.terms p {
    margin-bottom: 2rem;
}
/* terms */


@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    
    .container {
        position: relative;
    }
    
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .portfolio-images .portfolio-image1, 
    .portfolio-images .portfolio-image2, 
    .portfolio-images .portfolio-image3, 
    .portfolio-images .portfolio-image4, 
    .portfolio-images .portfolio-image5{
        display: none;
    }
}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
}
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
/* Styles */
    h1.banner-heading {
        font-size: 56px;
        line-height: 66px;
        margin-bottom: 1rem;
    }
    .banner-content {
        padding: 136px 0 76px;
        max-width: 79%;
    }
    .arrow-btn {
        display: none !important;
    }
    .testi-slide h3 {
        font-size: 24px;
        padding: 1rem 0;
    }
    .testi-slider-2 .testi-slide p{
        font-size: 16px;
        line-height: 20px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .sec-heading p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .product-card{
        padding: 1rem 1rem;
    }
    .product-card h4 {
        font-size: 20px;
        padding: 1rem 0;
    }
    .product-card p{
        font-size: 14px;
        line-height: 20px;
    }
    ul.overview-nav.d2 a {
        padding: 16px 8px;
        font-size: 16px;
    }
    ul.overview-nav.d2 {
        gap: 2rem;
        margin-bottom: 40px;
    }
    .f-menu li a {
        font-size: 14px;
        line-height: 20px;
    }
    .footer-para p {
        font-size: 14px;
        line-height: 26px;
        padding-top: 1rem;
    }
    .foot-hdng a {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .foot-hdng h4 {
        font-size: 20px;
    }
    .brd {
        padding-bottom: 2rem;
    }
    .accordion-list li h3 {
        font-size: 22px;
    }
    .banner-content.portfolio-page {
        max-width: 100%;
    }
    .testi-slide img {
        width: 26%;
    }
    .core-values {
        margin-top: 2rem;
    }
    .portfolio-images .portfolio-image1, 
    .portfolio-images .portfolio-image2, 
    .portfolio-images .portfolio-image3, 
    .portfolio-images .portfolio-image4, 
    .portfolio-images .portfolio-image5{
        display: none;
    }






}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
/* Styles */
    .banner-content {
        padding: 136px 0 56px;
        max-width: 90%;
    }
    h1.banner-heading {
        font-size: 54px;
        line-height: 64px;
    }
    p.banner-text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0rem;
    }
    .mainBanner:before , .mainBanner:after{
        top: -15px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .arrow-btn {
        display: none !important;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 42px;
    }
    .sec-heading p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
    }
    .product-image {
        display: none;
    }
    ul.overview-nav.d2 {
        gap: 1rem;
        margin-bottom: 24px;
        border-bottom: 0;
    }
    ul.overview-nav.d2 a {
        padding: 12px 14px;
        font-size: 16px;
    }
    .testi-card p {
        font-size: 24px;
    }
    .testi-card {
        gap: 14px;
        padding-bottom: 2rem;
    }
    .accordion-list li h3 {
        font-size: 22px;
    }
    .f-menu li a {
        font-size: 14px;
        line-height: 18px;
    }
    .footer-para p {
        font-size: 16px;
        padding-top: 1rem;
    }
    .brd {
        padding-bottom: 1rem;
    }
    footer {
        padding: 2rem 0 1rem;
    }
    .banner-content.portfolio-page {
        max-width: 100%;
    }
    .mainBanner.mb2:before, .mainBanner.mb2:after{
        display: none;
    }
    .contact-us{
        display: none;
    }
    .abt-us {
        display: none;
    }
    .testi-slide img {
        width: 40%;
    }
    .core-values {
        margin-top: 2rem;
    }
    .portfolio-images .portfolio-image1, 
    .portfolio-images .portfolio-image2, 
    .portfolio-images .portfolio-image3, 
    .portfolio-images .portfolio-image4, 
    .portfolio-images .portfolio-image5{
        display: none;
    }


}


/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}



/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}



/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

/* Iphone X */
@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}
@media only screen
and (min-width : 320px)
and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 100px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .logo img {
        width: 150px;
    }
    .banner-content {
        max-width: 100%;
    }
    .mainBanner:before{
        display: none;
    }
    .mainBanner:after{
        display: none;
    }
    .btn-wrap .theme-btn {
        padding: 18px 16px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .arrow-btn {
        display: none !important;
    }
    .testi-slider-2 .testi-slide{
        margin-bottom: 0;
    }
    ul.overview-nav.d2{
        gap: 1rem;
        margin-bottom: 22px;
        border-bottom: 0;
        flex-direction: column;
    }
    .testi-card .client .det .name {
        font-size: 22px;
    }
    .testi-card .client .det .des {
        font-size: 14px;
        line-height: 16px;
    }
    .testi-card p {
        font-size: 20px;
        line-height: 30px;
    }
    .testi-card {
        padding: 20px 12px;
        gap: 14px;
        padding-bottom: 2rem;
    }
    .accordion-list li h3 {
        font-size: 20px;
        line-height: 24px;
    }
    .accordion-list li {
        padding: 24px 18px 24px 20px;
    }
    .brd {
        padding-bottom: 1rem;
    }
    footer {
        padding: 2rem 0 1rem;
    }
    .footer-para p {
        padding-top: 1rem;
    }
    .foot-hdng {
        margin-top: 1rem;
    }
    .f-menu li a {
        line-height: 16px;
    }
    .banner-content.portfolio-page {
        max-width: 100%;
    }
    .mainBanner.mb2:before, .mainBanner.mb2:after{
        display: none;
    }
    .contact-us{
        display: none;
    }
    
    .core-values h3 {
        font-size: 26px !important;
    }
    .core-values {
        margin-top: 2rem;
    }
    .abt-us {
        display: none;
    }
    .portfolio-images .portfolio-image1, 
    .portfolio-images .portfolio-image2, 
    .portfolio-images .portfolio-image3, 
    .portfolio-images .portfolio-image4, 
    .portfolio-images .portfolio-image5{
        display: none;
    }

}