
/* Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --first-color: #fd6a11;
    --second-color: #000;
    --third-color: #fff;
    --fourth-color: #121212;
    --fifth-gradient: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
}

body{
    overflow-x: hidden;
    overflow-y: hidden;

}

html{
    overflow-x: hidden;
}

*{
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    padding: 0; margin: 0;
    outline: none; border: 0;
    box-sizing: border-box;
}

a:hover{
    text-decoration: none !important;
}
body .cta-new ul li i {
    color: white;
    font-size: 39px;
}

/* Global CSS */

.text-white{
    color: #fff;
}

.bg-white{
    background-color: #fff;
}

.text-black{
    color: #000;
}

.bg-black{
    background-color: #000;
}

.bg-first{
    background-color: var(--first-color);
}

.first-color{
    color: var(--first-color);
}

.border-color{
    border: 1px solid var(--first-color);
}

.home-banner{
	background-image: url("../../assest/images/Home-banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

h1.brand-name {
    font-size: 35px;
    color:  #fff;
}

/* .container{
    width: 1170px;
} */

.home-banner .title{
    font-size: 90px;
    font-weight: 700;
    padding-top: 275px;
    line-height: 96px;
}

.home-banner .title span{
    color: #fd6a11 !important;
}

.text-primary, .text-secondary {
    display: block;
}

.text-primary {
    animation: moveLeft 1.5s ease-in;
}

.text-secondary {
    animation: moveRight 1.5s ease-in;
}

@keyframes moveLeft {
  0% {
    opacity: 0;
    transform: translatex(-100px);
  }
  80% {
    transform: translatex(10px);
  }
  100% {
    opacity: 1;
    transform: translatex(0);
  }
}

@keyframes moveRight {
  0% {
    opacity: 0;
    transform: translatex(100px);
  }
  80% {
    transform: translatex(-10px);
  }
  100% {
    opacity: 1;
    transform: translatex(0);
  }
}

.home-banner p {
    font-size: 17px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    padding-top: 50px;
}

.home-banner .buttons a{
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    background: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
    padding: 15px 30px;
    margin-top: 70px;
    border-radius: 5px;
    margin-right: 10px;
    border: 1px solid transparent;
}

.home-banner .buttons a:hover{
    text-decoration: none;
    transition: all 0.5s linear;
    border: 1px solid white;
    background: transparent;
    color: #fff;
}

.home-banner .buttons .child {
    background: #fff;
    color: #000;
}
.home-banner .buttons {
    margin-top: 70px;
}

.navigation__checkbox {
display: none;
}
.navigation__button {
    position: fixed;
    top: 10%;
    right: 95px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: transparent;
    z-index: 2000;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}
.navigation__icon {
    position: relative;
    margin-top: 26px;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 39px;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.3s;
}
.navigation__icon::before, .navigation__icon::after {
content: "";
position: absolute;
left: 0;
}
.navigation__icon::before {
top: 0.8rem;
}
.navigation__background {
    position: fixed;
    top: 10%;
    right: 95px;
    background: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    text-align: center;
    height: 100vh;
    opacity: 0;
    width: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.navigation__list {
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.navigation__item {
    margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
    color: #000;
    background-size: 225%;
    text-decoration: none;
    padding: 1rem 2rem;
    display: inline-block;
    font-size: 4rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
    transition: all 0.4s;
}
.navigation__link:hover, .navigation__link:active {
    background-position: 100%;
    color: #0ea5e9;
    transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
    transform: scale(70);
}
.navigation__checkbox:checked ~ .navigation__nav {
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon {
    background-color: transparent;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon::before {
    transform: rotate(135deg);
    top: 0;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon::after {
    transform: rotate(-135deg);
    top: 0;
}

.header {
    position: absolute;
    max-width: 1720px;
    margin: auto;
    right: 30px;
    left: 30px;
    top: 5%;
        z-index: 9999;
}

.home-banner .down-arrow {
    display: flex;
    justify-content: center;
    margin-top: 115px;
    animation: moveArrow 1.5s ease-in-out;
    animation-iteration-count: infinite
}
.home-banner .counter {
    position: absolute;
    right: 160px;
    bottom: 60px;
}

.home-banner .counter span:nth-child(1) {
    font-size: 70px;
    font-weight: 700;
    color: var(--first-color);
    display: inline;
}

.home-banner .counter span:nth-child(2) {
    font-size: 70px;
    font-weight: 700;
    color: var(--first-color);
}

.home-banner .counter span:nth-child(3) {
    font-size: 17px;
    color:  #fff;
    display: block;
}

.home-about {
    margin: 100px 0;
}

.home-about .content {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    align-items: flex-start;
}

.home-about h2 {
    font-size: 50px;
    font-weight: 800;
    color: #282828;
    text-transform: capitalize;
    padding-bottom: 100px;
    padding-right: 300px;
}

@keyframes moveArrow{
 0%{
    transform: translateY(-5px);
 }
 100%{
    transform: translateY(5px);
 }
}

section.client-name {
    padding: 40px 15px;
    background-color: var(--first-color);
}

section.client-name span {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    padding : 0 50px;
}

.client-name .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    width: auto !important;
}

.about-btn {
    display: block;
    width: 150px;
    height: 150px;
    background-color: var(--first-color);
    clip-path: circle();
}

.about-btn a {
    height: 140px;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #Fff;
    font-size: 17px;
    transition: all 0.5s linear;
    padding-left: 5px;
}

.about-btn a:hover {
    color: #fff;
    transition: all 0.5s linear;
    list-style: none !important;
    transform: translateY(-3px);
}

.about-btn i {
    padding-left: 10px;
    font-size: 16px;
}


/* testing */
.text-center {
    text-align: center;
  }
  .text-large {
    font-size: 2em;
    margin-top: 120px;
  }
  .social-button {
    font-size: 16px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    background: var(--fifth-gradient);
    background: var(--fifth-gradient);
    color: #fff;
    border: 0 none;
    padding: 0;
    text-align: center;
    width: 140px;
    height: 140px;
    line-height: 3em;
    position: relative;
    transition: all 0.25s ease-in-out;
  }
  .social-button:hover {
    background-color: var(--first-color);
    color: #fff;
  }
  .social-button:before {
    -webkit-animation: social-button-beat 1.5s ease-out infinite;
            animation: social-button-beat 1.5s ease-out infinite;
  }
  .social-button:after {
    -webkit-animation: social-button-beat 1.5s ease-out 0.4s infinite;
            animation: social-button-beat 1.5s ease-out 0.4s infinite;
  }
  .social-button:before,
  .social-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--first-color);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease-in-out;
  }
  @-webkit-keyframes social-button-beat {
    0% {
      opacity: 0.8;
      transform: scale(1);
    }
    70% {
      opacity: 0;
      transform: scale(1.5);
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes social-button-beat {
    0% {
      opacity: 0.8;
      transform: scale(1);
    }
    70% {
      opacity: 0;
      transform: scale(1.5);
    }
    100% {
      opacity: 0;
    }
}

.social-button i {
    padding-left: 8px;
}

.after-box::before {
    content: '';
    background-image: url(../../assest/images/after-box.jpg);
    position: absolute;
    top: 0;
    width: 60px;
    height: 61px;
    background-repeat: no-repeat;
    left: 950px;
    top: 600px;
}

.home-about .after-box{
    position: relative;
}

img.sub-img {
    display: block;
}
section.home-about .after-text {
    position: relative;
}

section.home-about .after-text::after {
    content: 'About Us';
    position: absolute;
    width: max-content;
    font-size: 200px;
    font-weight: 700;
    left: 200px;
    z-index: -1;
    top: 640px;
    -webkit-text-stroke: 1px #00000061;
    -webkit-text-fill-color: white;
}

@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    background: white;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    background-color: var(--first-color);
  }
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  .slide-track .slide {
    font-size: 30px;
    font-weight: 600;
    padding: 40px 50px;
    color: #fff
}
.Home-service{
    background-image: url(../../assest/images/service-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

section.Home-service {
    padding: 100px 0;
}

section.Home-service .title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

section.Home-service p, section.Home-service span  {
    font-size: 17px;
    color: #fff;
}

section.Home-service .sub-content {
    padding-top: 70px;
}

section.Home-service .sub-content span:nth-child(1) {
    font-size: 35px;
    font-weight: bold;
    padding-right: 70px;
}

section.Home-service .sub-content span:nth-child(2) h5 {
    font-size: 20px;
    font-weight: 600;
    padding-right: 50px;
    display: inline;
}

section.Home-service .sub-content span:nth-child(3) {
    font-size: 14px;
    padding-right: 90px;
}

section.Home-service a {
    color: #Fff;
    font-size: 16px;
    background-color: var(--first-color);
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle();
}

section.Home-service .sub-content {
    padding: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ffffff8f;
    cursor: pointer;
}

section.Home-service p, section.Home-service span  {
    font-size: 17px;
    color: #fff;
}

.service-btn{
    margin-left: auto;
    width: max-content;
}

section.Home-service .sub-content i {
    font-size: 35px;
    transform: rotate(45deg);
}

.pt-70{
    padding-top: 70px;
}

.pb-70{
    padding-bottom: 70px;
}

section.Home-service .service-img {
    position: relative;
}

section.Home-service .service-img {
    position: absolute;
    left: -70px;
}

section.Home-service {
    position: relative;
}

section.Home-service::before {
    content: '';
    position: absolute;
    background-image: url(../../assest/images/arrow-downs.png);
    width: 200px;
    height: 345px;
    top: 40%;
    background-repeat: no-repeat;
    -webkit-animation: side-shape 1s infinite alternate;
    animation: side-shape 1s infinite alternate;
}


section.platforms {
    background: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
    padding: 95px 0;
}

section.platforms .content p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

section.platforms .content h4 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.platforms-slider img {
    padding: 8px;
}

section.platforms .fa-angle-left {
    position: relative;
}

section.platforms .fa-angle-left {
    position: absolute;
    top: 120px;
    left: -292px;
    font-size: 22px;
    background-color: #fff;
    padding: 13px 25px;
    clip-path: circle(40%)
}

section.platforms .fa-chevron-right {
    position: absolute;
    top: 120px;
    left: -235px;
    font-size: 22px;
    color: #fff;
    background-color: #000;
    padding: 13px 25px;
    clip-path: circle(40%);
}

section.portfolio {
    background-image: url(../../assest/images/pattern-bg.png);
    padding: 100px 0;
}

section.portfolio .content h3 {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
}

section.portfolio .content p {
    font-size: 16px;
    text-align: center;
}

.portfolio .gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 0;

}

.portfolio .portfolio-text{
    position: relative;
}

.portfolio .portfolio-text::before{
    content: 'Portfolio';
    position: absolute;
    width: max-content;
    font-size: 200px;
    font-weight: 700;
    left: 550px;
    z-index: -1;
    top: -135px;
    -webkit-text-stroke: 1px #00000061;
    -webkit-text-fill-color: white;
}

.gallery-slider{
    display: none;
}

section.portfolio .view-gallery {
    font-size: 16px;
    color: #Fff;
    background: var(--fifth-gradient);
    padding: 20px 30px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    width: max-content;
    margin: auto;
    border: 1px solid var(--first-color);
    
    transition: all 0.5s linear;
}

section.portfolio .view-gallery:hover{
    background: transparent;
    color: var(--first-color);
    border: 1px solid var(--first-color);
    transition: all 0.5s linear;
    list-style: none;
}
.gallery img:hover {
    filter: brightness(0.5);
}

section.work {
    background-image: url(../../assest/images/work-bg.png);
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

section.work .content p {
    font-size: 16px;
    text-align: center;
    color: var(--first-color);
}

section.work .content h3 {
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

section.work .sub-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 70px;
}

section.work .sub-content hr {
    width: 90%;
    height: 1px;
    color: #fff !important;
    background-color: #fff;
    margin: 35px 0;
}

section.work .sub-content h5 {
    font-size: 20px;
    padding-bottom: 10px;
}

section.work .sub-content hr {
    position: relative;
}

section.work .sub-content hr::before {
    content: '';
    position: absolute;
    top: -11px;
    width: 20px;
    height: 20px;
    background-color: var(--first-color);
    clip-path: circle();
    left: 49%;
}

section.work .sub-content p:nth-child(2) {
    font-size: 15px;
    padding-top: 30px;
}

section.work .sub-content .steps {
    margin: 0 20px;
}

section.work .sub-content span {
    font-size: 15px;
    color: #ffffffc2;
}

section.client {
    padding: 115px 0 100px 0;
}

.client .center-content p {
    font-size: 16px;
    color: var(--first-color);
    margin-bottom: 0;
}

.client .center-content h3 {
    font-size: 50px;
    font-weight: 600;
    padding: 35px 0;
    margin-bottom: 0;
}

.client .content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--first-color);
    padding-top: 30px;
    margin-bottom: 0;
}

.client .content p {
    font-size: 14px;
}
section.client {
    position: relative;
}

section.client::before {
    position: absolute;
    content: '';
    background-image: url(../../assest/images/Testimonials.png);
    background-repeat: no-repeat;
    width: 150px;
    height: 872px;
    left: 115px;
}

section.client .content {
    position: relative;
    z-index: 1;
}

section.client .content::before {
    content: '';
    position: absolute;
    width: 270px;
    height: 374px;
    background-image: url(../../assest/images/chient-after.png);
    background-repeat: no-repeat;
    top: -42px;
    left: 40px;
    background-size: contain;
    z-index: -1;
    -webkit-animation: shape 1s infinite alternate;
    animation: shape 1s infinite alternate;
    
}

section.mobile-testimonial .content {
    position: relative;
    z-index: 1;
}

section.mobile-testimonial .content::before {
    content: '';
    position: absolute;
    width: 270px;
    height: 374px;
    background-image: url(../../assest/images/chient-after.png);
    background-repeat: no-repeat;
    top: -42px;
    left: 40px;
    background-size: contain;
    z-index: -1;
    -webkit-animation: shape 1s infinite alternate;
    animation: shape 1s infinite alternate;
}

section.mobile-testimonial .content img {
    margin: auto;
}

section.mobile-testimonial .content {
    margin: 60px 0 40px 0;
}

section.mobile-testimonial .content h6 {
    text-align: center;
    color: var(--first-color);
    padding-top: 15px;
}

section.mobile-testimonial .content p{
    text-align: center;
    padding-top: 0;
    color: #000;
}

section.client .pre-content {
    position: relative;
    z-index: 1;
}

.mobile-testimonial p {
    text-align: center;
    padding-top: 30px;
    color: var(--first-color);
}

.mobile-testimonial h3 {
    text-align: center;
    font-size: 26px;
}

section.client .pre-content::before {
    content: '';
    position: absolute;
    width: 270px;
    height: 374px;
    background-image: url(../../assest/images/chient-after.png);
    background-repeat: no-repeat;
    top: -42px;
    left: 75px;
    background-size: contain;
    z-index: -1;
    -webkit-animation: shape 1s infinite alternate;
    animation: shape 1s infinite alternate;   
}

.client .pre-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--first-color);
    padding-top: 30px;
    margin-bottom: 0;
}

@-webkit-keyframes shape {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-15px);
    }
  }
  @keyframes shape {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-15px);
    }
}

section.blog{
    background-image: url(../../assest/images/blog-bg.png);
    padding: 120px 0;
}
section.blog span {
    font-size: 16px;
    font-weight: 600;
    color: var(--first-color);
}

section.blog h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 28px 0;
}

.blog .content p:nth-child(2) {
    font-size: 16px;
    text-align: left;
    padding: 30px 0 20px 0;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--first-color);
}

 .content p:nth-child(3) {
    font-size: 20px;
    text-align: left;
    font-weight: 600;
    line-height: 26px;
}

.blog .content img {
    width: 100%;
}

section.blog .content img:hover {
    filter: hue-rotate(70deg);
}

section.inline-form {
    padding: 100px 0;
    background: var(--fifth-gradient)
}

section.inline-form span {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

section.inline-form h2 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    padding: 35px 0 60px 0;
    margin-bottom: 0;
    line-height: 56px;
    padding-right: 30px;
}

section.inline-form p {
    font-size: 16px;
    color: #fff;
}

section.inline-form form input {
    display: block;
    width: 530px;
    height: 50px;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    border-radius: 5px;
}

section.inline-form form .content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

section.inline-form form textarea {
    width: 530px;
    height: 190px;
    padding: 20px;
    border-radius: 5px;
}

section.inline-form form button {
    font-size: 16px;
    display: block;
    margin: 40px auto 0 auto;
    font-weight: 500;
    color: #fff;
    width: 200px;
    height: 50px;
    background-color: #000;
    border: 1px solid transparent;
}

section.inline-form form button:hover {
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.5s linear;
}

section.inline-form {
    position: relative;
}

section.inline-form::before {
    content: 'Contact Us';
    position: absolute;
    width: max-content;
    height: 200px;
    font-size: 130px;
    font-weight: 800;
    bottom: -30px;
    left: 30%;
    -webkit-text-stroke: 1px #ffffff1f;
    -webkit-text-fill-color: transparent;
}

section.logo-slider .content {
    display: flex;
    justify-content: center;
}

footer.footer {
    padding: 80px 0 185px 0;
    background: url(../../assest/images/footer-bg.jpg);
    color: #Fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    position: relative;
}
footer.footer::before {
    position: absolute;
    content: '';
    background: url(../../assest/images/circle-btn.png);
    top: 310px;
    width: 250px;
    height: 244px;
    right: 144px;
    clip-path: circle();
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    cursor: pointer;
}

footer.footer .ft-1,.ft-2,.ft-3 {
    padding-top: 85px;
}

footer.footer .ft-1 span {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 50px;
}

footer.footer .ft-1 p {
    font-size: 16px;
    font-weight: 200;
    padding-top: 50px;
    margin-bottom: 0;
}

footer.footer .ft-1 social {
    padding-top: 55px;
    margin-bottom: 0;
}

footer.footer .ft-1 .social {
    margin-top: 50px;
}

footer.footer .ft-1 .social i {
    color: #999999;
    font-size: 30px;
    margin-right: 20px;
    transition: all 0.5s linear;
}

footer.footer .ft-1 .social i:hover {
    color: var(--first-color);
}

footer.footer .ft-2 h4, .ft-3 h4 {
    font-size: 20px;
    margin-bottom: 0;
}

footer.footer .ft-2 ul li a {
    font-size: 16px;
    color: #999999;
    transition: all 0.5s linear;
}

footer.footer .ft-2 ul li a:hover {
    color: var(--first-color);
    list-style: none;
}

footer.footer .ft-2 ul li {
    padding: 0 45px 40px 0;
}

footer.footer .ft-2 ul {
    padding-top: 45px;
}
footer.footer .ft-3 h5 {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    padding: 40px 0;
}

footer.footer .ft-3 a:nth-child(3) {
    display: block;
    color: #fff;
    cursor: pointer;
}

footer.footer .ft-3 a:nth-child(3):hover {
    list-style: none;
}

footer.footer .ft-3 a:nth-child(4) {
    display: block;
    padding-top: 40px;
    color: #Fff;
}

footer.footer .ft-3 a:nth-child(4):hover {
    color: var(--first-color);
}
footer.footer .ft-2 {
    padding-left: 85px;
}
.col-12.col-md-5.col-lg-5.col-xxl-5.ft-3 {
    padding-left: 50px;
}
section.pre-footer {
    padding: 45px 0;
    background-color: #000;
    color: #fff;
}

section.pre-footer .content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
footer.footer .ft-4 {
    position: absolute;
    right: 0;
    top: 8400px;
    background-color: #1d1d1d;
    height: 755px;
    width: 445px;
}

footer.footer .ft-4 h3 {
    font-size: 40px;
    text-align: center;
    padding-top: 70px;
}

footer.footer .ft-4 img {
    padding-top: 75px;
    display: block;
    margin: auto;
}

footer.footer .ft-4 img:hover {
    filter: drop-shadow(2px 4px 6px black);
}

footer.footer .ft-4 span {
    text-align: center;
    display: block;
    padding-top: 70px;
}  

@-webkit-keyframes side-shape {
    0% {
        transform: matrix(2, 0, 0, 2, 0, 0);
    }
    100% {
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
  }
  @keyframes side-shape {
    0% {
        transform: matrix(2, 0, 0, 2, 0, 0);
    }
    100% {
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
}

.sub-content.translate-one.active{
    transform: translateX(20px);
    filter: brightness(0.5);
    transition: all 0.3s linear;
}
.sub-content.translate-two.active{
    transform: translateX(20px);
    filter: brightness(0.5);
    transition: all 0.3s linear;
}
.sub-content.translate-three.active{
    transform: translateX(20px);
    filter: brightness(0.5);
    transition: all 0.3s linear;
}
.sub-content.translate-four.active{
    transform: translateX(20px);
    filter: brightness(0.5);
    transition: all 0.3s linear;
}
img.service-img.two{
    display: none;
}
img.service-img.three{
    display: none;
}
img.service-img.four{
    display: none;
}

/* scroll bar design Start */

body::-webkit-scrollbar {
    width: 5px;
}
   
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
background: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
}

section.client-name.black-slide {
    background-color: #000 !important;
}

section.client-name.black-slide span{
    font-weight: 400px ;
}

.service-banner{
    background-image: url(../../assest/images/service-banner.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

section.service-banner .container {
    padding-top: 290px;
    padding-bottom: 180px;
    position: relative;
}

section.service-banner .content span {
    font-size: 60px;
    font-weight: 700;
}

section.service-banner .content ul li span:nth-child(1) {
    padding-right: 20px;
}

section.service-banner .content ul li span img{
    -webkit-animation: moveButton 1s infinite alternate;
    animation: moveButton 1s infinite alternate;

}

.service-banner img.service-line {
    display: block;
    margin-left: auto;
    transform: translateX(-10px);
}


@-webkit-animationkeyframes moveButton{
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateY(-10px);
    }
  }
  @keyframes moveButton{
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

section.service-banner .container::before {
    content: '';
    position: absolute;
    background: url(../../assest/images/emogi.png);  
    width: 70px;
    height: 69px;
    background-repeat: no-repeat;
    top:54%;
    left: 370px;
    -webkit-animation: emoji 1.5s infinite alternate;
    animation: emoji 1.5s infinite alternate;
}

@-webkit-animationkeyframes emoji{
    0% {
        transform: rotate(283deg);
    }
    100% {
        transform: rotate(347deg);
    }
  }
  @keyframes emoji{
    0% {
        transform: rotate(283deg);
    }
    100% {
        transform: rotate(347deg);
    }
}

section.service-banner .sub-content p:nth-child(1) {
    font-size: 16px;
    color: #666666;
    padding-right: 200px;
}
section.service-banner .sub-content {
    display: flex;
    padding-top: 105px;
}

section.marketing-cards span {
    font-size: 16px;
    color: var(--first-color);
    display: flex;
    justify-content: center;
}

section.marketing-cards .content h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding: 25px -0;
}

section.marketing-cards .content p {
    text-align: center;
    font-size: 16px;
    font-weight: normal;
}
section.service-banner .content ul {
    margin-bottom: 0;
}
section.marketing-cards .content {
    padding: 0 0 50px 0;
}
section.marketing-cards {
    padding: 100px 0;
}


section.marketing-cards .grid-template {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

section.marketing-cards .grid-template .grid-item {
    width: 270px;
    height: 390px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
section.marketing-cards .grid-template .grid-item h5{
    font-size: 40px;
    font-weight: 700;
    justify-content: left;
    margin-top: 60px;
    margin-left: 20px;
    color: var(--first-color);
}

section.marketing-cards .grid-template .grid-item h4 {
    font-size: 21px;
    font-weight: 700;
    padding: 25px 0 15px 20px;
}

section.marketing-cards .grid-template .grid-item p {
    font-size: 16px;
    padding-left: 20px;
}  
section.marketing-cards .grid-template .card-btn {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    margin-top: 60px;
}

section.marketing-cards .grid-template .card-btn a {
    font-size: 16px;
    color: grey;
}

section.marketing-cards .grid-template .card-btn a:hover {
    color: var(--third-color);
}

section.marketing-cards .grid-template .grid-item {
    transition: all 0.4s linear;
}
section.marketing-cards .grid-template .grid-item:hover {
    background: linear-gradient(58deg, rgba(253,106,17,1) 0%, rgba(193,73,0,1) 53%);
    transition: all 0.4s linear;
    color: #fff;
}
section.marketing-cards {
    position: relative;
}

section.marketing-cards:before {
    position: absolute;
    content: 'Services';
    width: max-content;
    height: 800px;
    left: -73px;
    top: 243px;
    transform: rotate(270deg);
    font-size: 235px;
    font-weight: 800;
    -webkit-text-stroke: 1px #00000052;
    -webkit-text-fill-color: #fff;
    z-index: -1;
}   

section.project-cta{
    background-image: url(../images/cta-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section.project-cta {
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

section.project-cta h2 {
    font-size: 40px;
    font-weight: 600;
    padding: 25px;
}
section.project-cta a {
    color: #000;
    background-color: #fff;
    padding: 15px 25px;
    display: block;
    width: max-content;
    margin: auto;
    margin-top: 30px;
    border: 1px solid #fff;
}
section.project-cta a:hover {
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.4s linear;
    color: #FFF;
}

section.happy-client div {
    font-size: 80px;
    font-weight: 700;
    color: #fd6a11;
}

section.happy-client {
    padding: 45px 0 100px 0;
}

section.happy-client ul{
    display: flex;
    justify-content: space-evenly;
}
section.happy-client .count.one {
    position: relative;
}

section.happy-client .count.one::before {
    position: absolute;
    content: 'K';
    left: 96%;
}
section.happy-client .count.two {
    position: relative;
}

section.happy-client .count.two::before {
    position: absolute;
    content: 'K';
    left: 96%;
}
section.happy-client {
    position: relative;
}

section.happy-client:before {
    position: absolute;
    content: 'Connect With Us';
    font-size: 213px;
    font-weight: 800;
    left: 2%;
    -webkit-text-stroke: 1px #0000006e;
    -webkit-text-fill-color: #fff;
    z-index: -1;
    top: -65px;
}
section.home-about.service-about {
    margin-bottom: 0;
}
section .client-counter:before{
    display: none;
}
section.client-counter div {
    font-size: 80px;
    font-weight: 700;
    color: #fd6a11;
}

section.client-counter {
    padding: 45px 0 100px 0;
}

section.client-counter ul{
    display: flex;
    justify-content: space-evenly;
    gap: 160px;
}
section.client-counter .count.one {
    position: relative;
}

section.client-counter .count.one::before {
    position: absolute;
    content: 'K';
    left: 96%;
}
section.client-counter .count.two {
    position: relative;
}

section.client-counter .count.two::before {
    position: absolute;
    content: 'K';
    left: 96%;
}
section.client-counter {
    position: relative;
}
section.about-banner {
    padding: 300px 0 0 0;
}

section.about-banner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}
section.about-banner .content {
    padding: 130px 0 80px 0;
}

section.about-banner .content .about-cta {
    color: #fff;
    font-size: 16px;
    color: #fff;
    background-color: var(--first-color);
    padding: 15px  30px;
    border-radius: 5px;
    align-items: start;
    width: max-content;
}
section.about-banner {
    position: relative;
}

section.about-banner:before {
    position: absolute;
    content: '';
    background: url(../images/about-before.png);
    background-repeat: no-repeat;
    width: 30%;
    height: 90%;
    background-size: 100% 100%;
    top: 0;
    right: 0;
}
section.our-story {
    padding: 100px 0 35px 0;
}

section.our-story .content span {
    font-size: 16px;
    color: var(--first-color);
}

section.our-story .content h3 {
    font-size: 40px;
    font-weight: 700;
    padding-top: 20px;
}
img.about-img3 {
    margin-top: 15px;
}
section.our-story .container .row:nth-child(1) {
    margin-bottom: 80px ;
}
.count.one::after {
    position: absolute;
    content: 'Project completed';
    font-size: 16px;
    text-align: center;
    top: 90%;
    left: 30%;
    color : #666666;
}
.count.two::after {
    position: absolute;
    content: 'Happy customers';
    font-size: 16px;
    text-align: center;
    top: 90%;
    left: 30%;
    color : #666666;
}
.count.three, .count.four {
    position: relative;
}
.count.three::after {
    position: absolute;
    content: 'Years experiences';
    font-size: 16px;
    text-align: center;
    top: 90%;
    left:0;
    color : #666666;
}
.count.four::after {
    position: absolute;
    content: 'Awards achievement';
    font-size: 16px;
    text-align: center;
    top: 90%;
    left: 0;
    color : #666666;
}
section.about-sub-banner {
    position: relative;
}

section.about-sub-banner::before {
    position: absolute;
    content: 'About Us';
    font-size: 235px;
    font-weight: 800;
    -webkit-text-stroke: 1px #0000005c;
    -webkit-text-fill-color: #fff;
    transform: rotate(271deg);
    left: -317px;
    top: 100%;
    z-index: -1;
}
section.contact-banner{
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
section.contact-banner {
    padding: 345px 0 300px 0;
    text-align: center;
}

section.contact-banner .content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

section.contact-banner .content p {
    font-size: 16px;
    padding: 30px 0;
    color: #fff;
}
section.contact-banner .content .start {
    font-size: 16px;
    color: #fff;
    background-color: var(--first-color);
    padding: 15px 30px;
    border: 1px solid transparent;
    margin-right: 20px;
}
section.contact-banner .content .start:hover {
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.5s linear;
}
section.contact-banner .content .live {
    font-size: 16px;
    color: #000;
    background-color: #fff;
    padding: 15px 30px;
    border: 1px solid transparent;
}

section.contact-banner .content .live:hover {
    background-color: transparent;
    border: 1px solid var(--first-color);
    transition: all 0.5s linear;
    color: #fff
}
.contact-banner .contact-bf, .contact-banner .thank-bf {
    position: relative;
}

.contact-banner .contact-bf::before {
    position: absolute;
    content: 'Contact Us';
    color: #fff;
    font-size: 200px;
    font-weight: 800;
    -webkit-text-stroke: 1px #ffffff59;
    -webkit-text-fill-color: transparent;
    left: -580px;
    top: 220px;
    width: max-content;
}
.contact-banner .thank-bf::before {
    position: absolute;
    content: 'Thank You';
    color: #fff;
    font-size: 200px;
    font-weight: 800;
    -webkit-text-stroke: 1px #ffffff59;
    -webkit-text-fill-color: transparent;
    left: -580px;
    top: 220px;
    width: max-content;
}
.thankyou-banner::before {
    position: absolute;
    content: 'Thank You';
    color: #fff;
    font-size: 200px;
    font-weight: 800;
    -webkit-text-stroke: 1px #ffffff59;
    -webkit-text-fill-color: transparent;
    left: -580px;
    top: 220px;
    width: max-content;
}

section.contact-inline-form .title span {
    font-size: 25px;
    font-weight: 400;
    color: var(--first-color);
}

section.contact-inline-form .title h3 {
    font-size: 40px;
    font-weight: 700;
    padding: 15px 0;
}
section.contact-inline-form .title p {
    font-size: 16px;
    padding-bottom: 50px;
}
section.contact-inline-form {
    padding: 100px 0 135px 0;
}

section.contact-inline-form form input {
    display: block;
    width: 530px;
    height: 50px;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    border-radius: 5px;
        outline: 1px solid var(--first-color);
}

section.contact-inline-form form .content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

section.contact-inline-form form textarea {
    width: 530px;
    height: 190px;
    padding: 20px;
    border-radius: 5px;
    outline: 1px solid var(--first-color);
}

.toggle-icon {
    width: 34px !important;
    height: 34px;
}
section.contact-inline-form form button {
    font-size: 16px;
    display: block;
    margin: 40px auto 0 auto;
    font-weight: 500;
    color: #fff;
    width: 200px;
    height: 50px;
    background :var(--fifth-gradient); 
    border: 1px solid transparent;
    transition: all 0.4s linear;
}

section.contact-inline-form form button:hover {
    background: transparent;
    transition: all 0.5s linear;
    border: 1px solid #000;
    color: #000;
}

section.contact-inline-form {
    position: relative;
}

section.contact-inline-form::before {
    content: 'Connect With Us';
    position: absolute;
    width: max-content;
    height: 200px;
    font-size: 140px;
    font-weight: 800;
    bottom: -30px;
    left: 18%;
    -webkit-text-stroke: 1px #0000004f;
    -webkit-text-fill-color: #fff;
}

section.info {
    padding: 50px 0;
    background: linear-gradient(90deg, rgba(56,41,103,1) 0%, rgba(96,54,127,1) 50%);
}

section.info .content {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}
section.info .content .call a {
    color: #fff;
    font-size: 20px;
}

section.info .content .call a:hover {
    color: #ffffffa6;
}

section.info .content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 20px 0;
    margin-bottom: 0;
}

section.info .content p {
    color: #Fff;
    font-size: 16px;
    font-weight: 400;
}


section.contact-contact-inline-form {
    background-color: #fff !important;
}

section.contact-contact-inline-form .title span {
    font-size: 25px;
    font-weight: 400;
    color: var(--first-color);
}

section.contact-contact-inline-form .title h3 {
    font-size: 40px;
    font-weight: 700;
    padding: 15px 0;
}
section.contact-contact-inline-form .title p {
    font-size: 16px;
    padding-bottom: 50px;
}
section.blog {
    position: relative;
}

section.blog::before {
    position: absolute;
    content: 'Blogs';
    font-size: 200px;
    font-weight: 800;
    -webkit-text-stroke: 1px #5f0f7b9e;
    -webkit-text-fill-color: transparent;
    transform: rotate(270deg);
    right: -5%;
    top: 28%;
}
.header .nav-link {
    color: var(--white);
}

.header .nav-link:hover {
    color: var(-orange);
}
.order__btn {
    background-color: var(--orange);
    display: block;
    margin-left: 50px;
    width: 150px;
    text-align: center;
}

.order__btn:hover {
    background-color: var(--white);
    color: var(--orange);
}

@media screen and (max-width: 1600px){
    section.about-sub-banner::before {
        position: absolute;
        content: 'About Us';
        font-size: 150px !important;
        font-weight: 800;
        -webkit-text-stroke: 1px #0000005c;
        -webkit-text-fill-color: #fff;
        transform: rotate(271deg);
        left: -15% !important;
        top: 100%;
    }
    section.about-banner {
        padding: 200px 0 0 0;
    }
    section.marketing-cards:before {
        position: absolute;
        content: 'Services';
        width: max-content;
        height: 800px;
        left: 5%;
        top: 243px;
        transform: rotate(270deg);
        font-size: 150px;
        font-weight: 800;
        -webkit-text-stroke: 1px #00000052;
        -webkit-text-fill-color: #fff;
        z-index: -1;
    }
    section.service-banner .container {
        padding-top: 250px;
        padding-bottom: 180px;
        position: relative;
    }
    section.service-banner .content span {
    font-size: 50px;
    font-weight: 700;
    }
    section.happy-client:before {
        position: absolute;
        content: 'Connect With Us';
        font-size: 150px;
        font-weight: 800;
        left: 10%;
        -webkit-text-stroke: 1px #0000006e;
        -webkit-text-fill-color: #fff;
        z-index: -1;
        top: 0;
    }
    section.client::before {
        position: absolute;
        content: '';
        background-image: url(../../assest/images/Testimonials.png);
        background-repeat: no-repeat;
        width: 309px;
        height: 700px;
        left: 2%;
        background-size: contain;
    }
    .home-banner .title {
        font-size: 70px;
        font-weight: 700;
        padding-top: 275px;
        line-height: 76px;
    }
    .home-banner .down-arrow{
        margin-top: 0;
    }
    .home-banner .down-arrow img {
    width: 80px;
    }
    .portfolio .portfolio-text::before {
        content: 'Portfolio';
        position: absolute;
        width: max-content;
        font-size: 150px;
        font-weight: 700;
        left: 480px;
        z-index: -1;
        top: -108px;
        -webkit-text-stroke: 1px #00000061;
        -webkit-text-fill-color: white;
    }
    section.contact-banner {
    padding-top: 250px;
    text-align: center;
    }
    section.blog::before {
        font-size: 150px;
    }
}
@media screen and (max-width: 1400px){
    section.marketing-cards:before {
        left: 13%;
        top: 32%;
        font-size: 100px;
    }
    section.service-banner .content span {
    font-size: 40px;
    font-weight: 700;
    }
    section.service-banner .container {
        padding-top: 250px;
        padding-bottom: 180px;
        position: relative;
    }
    section.inline-form::before {
    content: 'Contact Us';
    position: absolute;
    width: max-content;
    height: 200px;
    font-size: 100px;
    font-weight: 800;
    bottom: -63px;
    left: 30%;
    -webkit-text-stroke: 1px #ffffff1f;
    -webkit-text-fill-color: transparent;
    }
    .portfolio .portfolio-text::before {
        font-size: 100px;
        left: 480px;
        z-index: -1;
        top: -75px;
    }
    section.home-about .after-text::after {
    font-size: 150px;
    font-weight: 800;
    left: 200px;
    z-index: -1;
    top: 690px;
    }
    .contact-banner .contact-bf::before {
        font-size: 150px;
        font-weight: 800;
        left: -419px;
    }
     .contact-banner .thank-bf::before {
        font-size: 150px;
        font-weight: 800;
        left: -419px;
    }
    section.contact-banner .content p {
    font-size: 16px;
    color: #fff;
    padding: 30px 100px;
    }
    section.contact-inline-form::before {
        font-size: 100px;
        bottom: -7%;
        left: 18%;
    }
    section.blog::before {
    font-size: 100px;
    right: -56px;
    top: 28%;
}
    
}

/* Media Query  */
@media screen and (max-width: 767px){   
    .header .navbar{
        padding : 0;
    }
    .header .navbar-nav {
        padding: 15px;
        border-radius: 20px;
        margin-top: 20px;
        background-color : var(--orange);
    }
     .header .order__btn{
        display: none;
    }
    .header .social {
        margin-left: auto;
        display: none;
    }
    .navigation__button{
        right: 25px;
        width: 50px;
        height: 50px;
    }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after{
        width: 25px;
        height: 3px;
    }
    .navigation__icon {
        position: relative;
        margin-top: 17px;
    }
    .header{
        margin: 0;
        z-index: 999;
    }
    .navigation__background {
        right: 23px;
        width: 50px;
        height: 50px;
    }
    .navigation__link:link, .navigation__link:visited{
        font-size: 26px;
    }
    .home-banner .title {
        font-size: 26px !important;
        font-weight: 700;
        padding-top: 275px;
        line-height: 32px !important;
    }
    .home-banner p {
        font-size: 14px;
        color: #fff;
        text-transform: capitalize;
        font-weight: 400;
        padding-top: 20px;
    }
    .home-banner .buttons {
        margin-top: 40px;
    }
    .home-about h2{
        font-size: 26px;
        padding-bottom: 30px;
        font-weight: 600;
        line-height: 32px;
    }
    .home-about {
        margin: 50px 0;
    }
    .home-about h2 {
        padding-right: 0;
    }
    .home-about .content {
        flex-direction: column;
    }
    .slide-track .slide {
        font-size: 22px !important;
        font-weight: 600;
        padding: 30px 20px !important;
        color: #fff;
    } 
    section.Home-service .title h3 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        padding-top: 20px;
    }
    section.Home-service .sub-content span:nth-child(3){
        display: none;
    }
    section.Home-service .service-img {
        position: relative;
        transform: rotate(352deg);
        left: 0;
        width: 380px;
    }
    .pt-70{
        padding-top: 40px;
    }
    
    .pb-70{
        padding-bottom: 40px;
    }
    section.Home-service::before {
        content: '';
        position: absolute;
        background-image: url(../../assest/images/arrow-down.png);
        width: 200px;
        height: 345px;
        top: 70%;
        background-repeat: no-repeat;
    }
    section.Home-service {
        padding: 50px 0;
    }
    section.Home-service a {
        color: #Fff;
        font-size: 16px;
        background-color: var(--first-color);
        width: 150px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        clip-path: none;
    }
    .service-btn {
        margin-left: 0;
    }
    .portfolio .gallery{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        padding: 40px 0;
    }
    .portfolio .portfolio-text::before {
        content: 'Portfolio';
        font-size: 70px !important;
        font-weight: 700;
        left: 40px !important;
        z-index: -1;
        top: -72px !important;
    }
    section.portfolio {
        background-image: url(../../assest/images/pattern-bg.png);
        padding: 50px 0;
    }
    section.portfolio .content h3 {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    }
    .gallery {
        display: none;
    }
    .gallery-slider{
        display: block;
    }
    .gallery img {
        width: 100%;
        height: auto;
    }
    .portfolio .gallery {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 10px;
    padding: 20px 0;
    }
    section.work .sub-content {
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: #fff;
        text-align: center;
        margin-top: 30px;
        flex-direction: column;
    }
    section.work {
        background-image: url(../../assest/images/work-bg.png);
        padding: 50px 0;
    }
    section.work .content h3 {
    font-size: 26px;
    }
    section.platforms{
        padding: 30px 0;
    }
    section.platforms .content h4{
        margin-bottom: 0;
        font-size: 26px;
    }
    section.platforms .content p {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    section.blog h2{
        font-size: 26px;
        padding: 20px;
    }
    section.blog {
        padding: 30px 0 25px 0;
    }
    section.inline-form {
        padding: 50px 0;
        background: var(--fifth-gradient);
    }
    section.contact-inline-form {
        padding: 50px 0;
    }
    section.inline-form h2 {
        font-size: 26px;
        padding: 10px 0 0px 0;
    }
    section.inline-form::before {
        content: 'Contact Us';
        position: absolute;
        width: max-content;
        height: 200px;
        font-size: 60px !important;
        font-weight: 900;
        bottom: -38px !important;
        left: 7% !important;
        -webkit-text-stroke: 1px #ffffff1f;
        -webkit-text-fill-color: transparent;
    }
    section.Home-service .sub-content{
        display: flex;
        justify-content: space-between;
        margin: 0 25px;
        padding: 20px 0;
    }
    section.Home-service .sub-content span:nth-child(1){
        padding-right: 0;
    }
    section.Home-service .sub-content span:nth-child(2) h5{
        font-size: 16px;
        font-weight: 400;
        padding-right: 0;
    }
    section.Home-service .sub-content i {
        font-size: 20px;
        transform: rotate(45deg);
    }
    footer.footer .ft-2 {
        padding-left: 20px !important;
    }
    .col-12.col-md-5.col-lg-5.col-xxl-5.ft-3 {
        padding-left: 20px !important;
    }
    footer.footer .ft-1, .ft-2, .ft-3 {
        padding-top: 30px;
    }
    footer.footer .ft-2 ul li {
        padding: 0 20px 20px 0;
    }
    footer.footer .ft-3 h5 {
        padding: 20px 0;
    }
    footer.footer .ft-3 a:nth-child(4) {
        padding-top: 20px;
    }
    footer.footer {
        padding: 20px 0 40px 0;
        background-color: var(--fourth-color);
        color: #Fff;
    }
    section.pre-footer .content {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
    }
    section.pre-footer .content span:nth-child(1) {
        padding-bottom: 10px;
    }
    footer.footer .ft-2{
        padding-top: 70px;
    }
    footer.footer .ft-1 p{
        padding-top: 30px;
    }
    section.client-name span {
        font-size: 20px !important;
        font-weight: 500;
        color: #fff;
        padding: 0 20px !important;
    }
    section.client-name {
        padding: 20px 15px;
        background-color: var(--first-color);
    }
    .home-banner .down-arrow {
        display: flex;
        justify-content: center;
        margin-top: 150px;
        animation: moveArrow 1.5s ease-in-out;
        animation-iteration-count: infinite;
    }
    .home-banner .down-arrow img {
        width: 70px;
    }
    .home-banner{
        background-size: auto;
    }
    .home-banner .counter span:nth-child(1), .home-banner .counter span:nth-child(2) {
        font-size: 50px;
    }
    .home-banner .counter {
        position: relative;
        left: 15px;
        bottom: 160px;
    }
    section.service-banner .content span{
        font-size: 26px !important;
    }
    section.service-banner .container::before {
        content: '';
        position: absolute;
        background: url(../../assest/images/emogi.png);
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        top: 50% !important;
        left: 145px !important;
        -webkit-animation: emoji 1.5s infinite alternate;
        animation: emoji 1.5s infinite alternate;
        background-size: contain;
    }
    section.service-banner .container {
        padding-top: 160px !important;
        padding-bottom: 40px !important;
        position: relative;
    }
    .service-banner{
        height: auto;
    }
    section.marketing-cards .grid-template {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 25px;
    }
    section.marketing-cards .grid-template .grid-item{
        margin: auto;
    }
    .grid-template{
        display: none !important;
    }
    section.marketing-cards:before {
        position: absolute;
        content: 'Services';
        width: max-content;
        height: 800px;
        left: 70px !important;
        top: 476px !important;
        transform: rotate(360deg);
        font-size: 50px !important;
        font-weight: 800;
        -webkit-text-stroke: 1px #00000052;
        -webkit-text-fill-color: #fff;
    }
    section.marketing-cards .content h2{
        font-size: 26px;
    }
    section.marketing-cards {
        padding: 50px 0;
    }   
    section.happy-client ul {
        display: flex;
        justify-content: space-around;
    }
    section.happy-client {
        padding: 45px 0 50px 0;
    }
    section.happy-client div {
        font-size: 35px !important;
        font-weight: 700;
        color: #3a2968;
    }
    section.happy-client:before {
        position: absolute;
        content: 'Connect With Us';
        font-size: 35px !important;
        font-weight: 900;
        left: 10% !important;
        -webkit-text-stroke: 1px #0000006e;
        -webkit-text-fill-color: #fff;
        z-index: -1;
        top: 55% !important;
        z-index: -7;
    }
    section.project-cta h2 {
        font-size: 26px;
        font-weight: 600;
        padding: 25px;
    }
    section.client-counter ul {
        display: flex;
        justify-content: space-around;
    }
    section.client-counter {
        padding: 0 0 50px 0;
    }
    section.client-counter div {
        font-size: 35px !important;
        font-weight: 700;
        color: #3a2968;
    }
    section.client-counter:before {
        position: absolute;
        content: 'Connect With Us';
        font-size: 35px !important;
        font-weight: 900;
        left: 10% !important;
        -webkit-text-stroke: 1px #0000006e;
        -webkit-text-fill-color: #fff;
        z-index: -1;
        top: 55% !important;
        z-index: -7;
    }
    section.about-banner h2 {
        font-size: 21px;
        font-weight: 700;
        line-height: 32px;
        padding-top: 30px;
    }
    section.about-banner {
    padding: 150px 0 0 0;
    }
    section.about-banner .content {
        padding: 30px 0 0 0;
    }
    section.about-banner .content .about-cta {
        margin-bottom: 15px;
    }
    section.about-sub-banner::before {
    position: absolute;
    content: 'About Us';
    font-size: 70px !important;
    font-weight: 800;
    -webkit-text-stroke: 1px #0000005c;
    -webkit-text-fill-color: #fff;
    transform: rotate(0deg);
    left: 8% !important;
    top: 100%;
    }
    section.our-story img {
        width: 350px !important;
        height: auto;
        display: block;
        margin: 0 auto 10px auto;
    }
    section.client-counter ul{
        gap: 0;
    }
    .count.one::after , .count.two::after, .count.three::after ,.count.four::after{
        left: 0;
        font-size: 13px;
    }
    header.header img {
        width: 109px;
    }
    .navigation__button , .navigation__background{
        top :7%
    }
    .navigation__button{
        right :23px;
    }
    section.contact-banner .content h2 {
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0;
    }
    section.contact-banner .content p {
        font-size: 16px;
        color: #fff;
        padding: 20px 0;
        text-align: left;
    }
    .contact-banner .contact-bf::before {
    font-size: 50px;
    font-weight: 800;
    left: -140px;
    top: 250px;
    }
     .contact-banner .thank-bf::before {
    font-size: 50px;
    font-weight: 800;
    left: -140px;
    top: 250px;
    }
    section.contact-banner {
        padding: 250px 0 130px 0;
        text-align: center;
        height: auto;
    }
    section.contact-inline-form .title span {
    font-size: 20px;
    font-weight: 400;
    color: var(--first-color);
    }
    section.contact-inline-form .title h3 {
        font-size: 26px;
        font-weight: 700;
        padding: 15px 0;
    }
    section.contact-inline-form .title p {
        font-size: 16px;
        padding-bottom: 0;
    }
    section.contact-inline-form::before {
    font-size: 40px ;
    top: 93%;
    left: 12%;
    font-weight: 900;
    }
    section.info .content {
        flex-direction: column;
    }
    section.info .content p {
    color: #Fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    text-align: center;
    padding: 0 20px;
    }
    ection.info .content .call a {
        color: #fff;
        font-size: 20px;
        display: block !important;
    }

}

@media screen and (max-width: 992px){
    .home-banner .title {
        font-size: 55px;
        padding-top: 140px;
        line-height: 66px;
    }
    .after-box::before{
        display: none;  
    }
    img.sub-img {
        display: none;
    }
    .text-large {
        font-size: 2em;
        margin-top: 80px;
    }
    .home-about h2 {
        padding-right: 0
    }
    section.home-about .after-text::after {
        content: 'About Us';
        position: absolute;
        width: max-content;
        font-size: 60px;
        font-weight: 800;
        left: 40px;
        z-index: -1;
        top: 583px;
        -webkit-text-stroke: 1px #00000061;
        -webkit-text-fill-color: white;
    }
    .slide-track .slide {
    font-size: 25px;
    font-weight: 600;
    padding: 40px 50px;
    color: #fff;
    }
    .portfolio .gallery{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 0;
    }
    .portfolio .portfolio-text::before {
        content: 'Portfolio';
        position: absolute;
        width: max-content;
        font-size: 150px;
        font-weight: 700;
        left: 200px;
        z-index: -1;
        top: -135px;
        -webkit-text-stroke: 1px #00000061;
        -webkit-text-fill-color: white;
    }
    section.inline-form form input {
        display: inline-block;
        width: 100%;
        height: 50px;
    }
    section.inline-form form .content{
        flex-direction: column;
        margin-top: 30px;
    }
    .inline-form .content div:nth-child(2) {
        width: 100%;
    }
    section.inline-form form textarea{
        width: 100%;
        height: 150px;
    }
    section.inline-form::before {
        content: 'Contact Us';
        position: absolute;
        width: max-content;
        height: 200px;
        font-size: 100px;
        font-weight: 900;
        bottom: -76px;
        left: 20%;
        -webkit-text-stroke: 1px #ffffff1f;
        -webkit-text-fill-color: transparent;
    }
    section.contact-inline-form form input {
        display: inline-block;
        width: 100%;
        height: 50px;
    }
    section.contact-inline-form form .content{
        flex-direction: column;
        margin-top: 30px;
    }
    .contact-inline-form .content div:nth-child(2) {
        width: 100%;
    }
    section.contact-inline-form form textarea{
        width: 100%;
        height: 150px;
    }
    
    footer.footer .ft-2 {
        padding-left: 0;
    }
    .col-12.col-md-5.col-lg-5.col-xxl-5.ft-3 {
        padding-left: 0;
    }
    footer.footer::before{
        display: none
    }
    footer.footer{
        background: #121212;
    }
    section.service-banner .content span {
        font-size: 30px;
        font-weight: 700;
    }
    section.service-banner .container {
        padding-top: 200px;
        padding-bottom: 180px;
        position: relative;
    }
    section.service-banner .content ul li span img {
        -webkit-animation: moveButton 1s infinite alternate;
        animation: moveButton 1s infinite alternate;
        width: 65px;
    }
    section.service-banner .sub-content {
        display: flex;
        padding-top: 30px;
        
    }
    section.service-banner .sub-content {
        display: flex;
        padding-top: 30px;
        flex-direction: column;
    }
    .service-banner img.service-line{
        display: none
    }
    section.service-banner .container::before {
        content: '';
        position: absolute;
        background: url(../../assest/images/emogi.png);
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        top: 45%;
        left: 187px;
        -webkit-animation: emoji 1.5s infinite alternate;
        animation: emoji 1.5s infinite alternate;
        background-size: contain;
    }
    section.marketing-cards .grid-template {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    section.marketing-cards:before {
        position: absolute;
        content: 'Services';
        width: max-content;
        height: 800px;
        left: 0;
        top: 243px !important;
        transform: rotate(360deg);
        font-size: 150px;
        font-weight: 800;
        -webkit-text-stroke: 1px #00000052;
        -webkit-text-fill-color: #fff;
        z-index: -1;
    }
    section.happy-client:before {
        position: absolute;
        content: 'Connect With Us';
        font-size: 100px ;
        font-weight: 800 ;
        left: 5% ;
        -webkit-text-stroke: 1px #0000006e;
        -webkit-text-fill-color: #fff;
        z-index: -1;
        top: 21px;
        z-index: -7;
    }
    section.happy-client div {
        font-size: 50px;
        font-weight: 700;
        color: #3a2968;
    }
}















