/*  default css  */

body,
ul,
li{
	margin: 0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	color: #fff;
	transition: 0.3s all;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a,h1,h2,h3,h4,h5,h6,div,body,input,lable,p{
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
}

img {
    max-width: 100%;
}
body{
    position: relative;
}
.container{
	max-width: 1320px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}
/*    Header Css   */
.min-header{
    background: #000;
}
.logo img{
    max-width: 150px;
}
.header-div {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.min-menu ul {
    display: flex;
    align-items: center;
    gap: 38px;
}
.min-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.72px;
}
.min-menu ul li a:hover {
    color: #96bf48;
}
.header-icon.mobile-header-ion {
    display: none;
}
.mobile-menu-iccon {
    display: none;
    cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

/*   Banner Css    */

.tow-box {
    display: flex;
    align-items: center;
}
.banner-image {
    height: 400px;
    width: 100%;
}
.main-banner {
    height: 999px;
    display: flex;
}
.left-side-div {
    width: 55%;
}
.right-side-banner {
    width: 45%;
}
.top-button {
    display: flex;
    gap: 20px;
}
.button-top {
    background: #2f2f2f;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: -1.04px;
    padding: 15px 20px;
    border-radius: 100px;
    display: inline-block;
    font-size: 26px;
}
.second-button p.button-top {
    background: transparent;
    color: #2f2f2f;
    border: 2px solid #0a0a0a30;
}
.banner-title h1 {
    font-size: 82px;
    letter-spacing: -3.28px;
    line-height: 82px;
    font-weight: 800;
}
.banner-details p {
    font-size: 20px;
    padding: 54px 0 50px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.8px;
    line-height: 28px;
    color: #2f2f2f;
}
.banner-button a {
    color: #2f2f2f;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.8px;
    font-weight: 500;
    background: #96bf48;
    padding: 24px 32px;
    border-radius: 100px;
    display: inline-block;
    transition: 0.5s all;
}
.banner-button a svg {
	background: #fff;
    border-radius: 100%;
    vertical-align: middle;
    margin-left: 20px;
    padding: 0;
}
section.hero-banner {
    background: #f8f2e6;
    position: sticky;
    top: 0;
}
section.hero-banner ~ section {
    position: relative;
    z-index: 1;
}
.banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}
/*    Text Loop Section css     */
section.text-loop-section {
    background: #2f2f2f;
    padding: 18px 0;
}
span.item-txt {
    color: #fff;
    font-weight: 600;
    line-height: 64px;
    font-size: 34px;
    letter-spacing: -1.36px;
    font-family: "Montserrat", sans-serif;
}
span.item-txt b {
    color: #96bf48;
    font-weight: 600;
}
.text-loop-list {
    display: flex;
    align-items: top;
    -webkit-animation: loop 20s infinite linear;
    animation: loop 20s infinite linear;
}
section.text-loop-section .container {
    display: flex;
    white-space: nowrap;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 26%, rgb(0, 0, 0) 74%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
    max-width: 98%;
}
.text-loop-item {
    display: flex;
    gap: 70px;
    align-items: center;

}
@keyframes loop {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}


/*  Logo section css   */

section.our-logo-section {
    background: #f8f2e6;
    padding: 40px 0;
}
section.our-logo-section .container {
	max-width: 970px;
}
.our-logo-title h2 {
    font-size: 48px;
    text-align: center;
    letter-spacing: -1.6px;
    font-weight: 700;
    line-height: 56px;
    padding-bottom: 60px;
}
.logo-svg img {
    max-width: 60px;
    border-radius: 10px;
}
.logo-svg {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-flow: wrap;
}

/*  Featured work section css  */

section.featured-work-section {
    background: #2f2f2f;
    padding: 40px 0 40px;
}
section.featured-work-section .title h2 {
    color: #fff;
    font-size: 60px;
    text-align: center;
    letter-spacing: -1.6px;
    font-weight: 700;
    line-height: 56px;
    padding-bottom: 60px;
}
.featured-work-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    gap: 30px;
}
.featured-work-detail-box {
    width: calc(50% - 30px);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.featured-work-detail {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 20px;
}
.work-info {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
    background: #96bf4894;
}
.featured-work-detail-box:hover .work-info{
	opacity: 1;
	visibility: visible;
}
.work-info h3 {
    color: #fff;
    font-size: 40px;
}
.work-imaage img {
    vertical-align: bottom;
}
.featured-work-detail.button a {
    display: block;
    width: 100%;
    text-align: center;
    /* background: red; */
    font-size: 40px;
    font-weight: 700;
}
/*  Our services section css   */
section.our-services-secction {
    padding: 60px 0 0;
    background: #f8f2e6;
}
section.our-services-secction .title h2 {
    font-size: 75px;
    color: #111111;
    padding-bottom: 60px;
    letter-spacing: -3px;
}
.our-services-info {
    padding: 0 0 0 50px;
}
.service-details h2 {
    color: #111111;
    font-size: 40px;
    letter-spacing: -2.6px;
    line-height: 48px;
}
.service-details h2 b {
    font-weight: 700;
    color: #96bf48;
}
.service-details p {
    padding: 20px 0;
    font-size: 20px;
    letter-spacing: -0.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 28px;
    color: #666666;
}
.service-button a {
    font-size: 20px;
    color: #111;
    line-height: 20px;
    font-weight: 500;
    background: #96bf48;
    border-radius: 35px;
    padding: 15px 27px;
    display: inline-block;
}
.service-info {
    padding-bottom: 70px;
}
section.our-services-secction.our-apps-info {
    background: #111;
}
section.our-services-secction.our-apps-info .title h2,
.our-apps-info .service-details h2 ,
.our-apps-info .service-details p {
    color: #fff;
}
/*  Testimonial section css  */
.customer-img {
    max-width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 100px;
}
.star-icon {
    display: flex;
    align-items: center;
}
.star-icon p {
    margin-right: 10px;
    font-size: 14px;
    color: #fff;
}
.top-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonials-icon {
    transform: rotate(170deg);
}
p.customer-rivew {
    padding: 36px 0;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}
.customer-desginer {
    background: #121212;
    border-radius: 14px;
    padding: 50px;
}
.customer-name p {
    font-size: 17px;
    color: #fff9;
    font-weight: 600;
    letter-spacing: -0.56px;
}
.customert-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
section.customer-section {
    padding: 30px 0 160px 0;
    background: #f8f2e6;
}
section.customer-section .title {
    text-align: center;
}
section.customer-section .title h2 {
    font-size: 90px;
    letter-spacing: -3.6px;
    font-weight: 700;
    line-height: 99px;
    color: #111;
    padding: 0 0 24px 0;
}
section.customer-section .title h2 span {
    display: block;
}
section.customer-section .title p {
    font-size: 17px;
    letter-spacing: -0.51px;
    color: #111;
    padding-bottom: 90px;
}
section.customer-section .title p span{
    color: #96bf48;
}
section.customer-section .slick-track {
    display: flex;
    gap: 30px;
    height: 100%;
}
section.customer-section .container {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 17%, rgb(0, 0, 0) 83%, rgba(0, 0, 0, 0) 100%);
    max-width: 100%;
    padding: 0;
}
/*  Footer css  */
footer {
    background: #111;
    position: relative;
    z-index: 1;
    
}
.footer-info {
    padding: 130px 0;
}
.footer-info .left-side-div h2 {
    font-size: 96px;
    color: #fff;
    letter-spacing: -4.8px;
    line-height: 96px;
    font-weight: 700;
}
.footer-info .left-side-div h2 span{
    color: #96bf48;
}
.footer-info .left-side-div p {
    color: #f8f2e699;
    padding: 60px 0 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.88px;
    line-height: 30.8px;
    font-family: "Montserrat", sans-serif;
}
.footer-logo {
    max-width: 300px;
}
.footer-details {
    padding: 0 0 0 90px;
}
.foorter-mail {
    padding: 70px 0 0;
}
.foorter-mail h5 {
    color: #fff6;
    font-size: 15px;
    line-height: 19.5px;
    letter-spacing: -.6px;
    padding: 0 0 14px;
    font-family: "Montserrat", sans-serif;
}
.foorter-mail > a {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: -1.2px;
    margin: 0 0 43px;
    display: inline-block;
}
.foorter-mail > a span{
    color: #96bf48;
}
.foorter-mail p {
    color: #f7f2e699;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.88px;
    margin-bottom: 70px;
    max-width: 56%;
}
.footer-info .left-side-div {
    width: 50%;
}
.footer-info .right-side-div {
    width: 50%;
}
.footer-button.banner-button a {
    padding: 7px 21px;
}
.banner-button a:hover svg {
    transform: rotate(45deg);
    transition: 0.5s;
}
.footer-copyright p {
    color: #f8f2e6;
    font-size: 15px;
    padding: 30px 0;
    letter-spacing: -0.45px;
    line-height: 15px;
    font-weight: 600;
}
.footer-copyright{
    border-top:1px solid #ffffff1a ;
}
@media screen and (max-width:1200px){
    .footer-info .left-side-div h2{
        font-size: 76px;
        line-height: 76px;
    }
    .foorter-mail > a{
        font-size: 30px;
    }
    .banner-button a svg{
        padding: 0;
    }
}
@media screen and (max-width: 991px){
    .footer-info .tow-box {
        flex-direction: column;
        gap: 48px;
        justify-content: center;
        align-items: center;
    }
    .footer-info .left-side-div,.footer-info .right-side-div {
        width: 100%;
        text-align: center;
    }
    .footer-details {
        padding: 30px 0 0;
        border-top: 1px solid #ffffff1a;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .foorter-mail p {
        margin: 0 auto 44px;
        max-width: 54%;
        font-size: 18px;
    }
    .footer-info .left-side-div h2 {
        font-size: 52px;
        line-height: 52px;
        max-width: 50%;
        margin: 0 auto;
        letter-spacing: -2.6px;
    }
    .footer-info {
        padding: 50px 0;
    }
    .footer-logo {
        max-width: 250px;
    }
    .foorter-mail > a {
        font-size: 24px;
    }
    .foorter-mail {
        padding: 44px 0 0;
    }
    .footer-button.banner-button a {
        padding: 19px 22px;
    }
    .footer-copyright p{
        text-align: center;
    }
}
@media screen and (max-width: 768px){
    .header-icon.desktop-header-ion {
        display: none;
    }
    .header-menu {
        display: none;
        position: absolute;
        top: 80px;
        background: #000;
        width: 100%;
        left: 0;
        padding: 20px 0;
        height: 100vh;
        transition: 0.5s all;
    }
    .mobile-menu-iccon {
        display: block;
    }
    .min-menu ul {
        flex-direction: column;
     }
}
@media screen and (max-width:600px){
    .footer-info .left-side-div h2{
        max-width: 100%;
    }
    .foorter-mail p{
        max-width: 65%;
    }
}