@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/*
Light: 300
Regular: 400
Medium: 500
Semi bold: 600
Bold: 700
*/

html{scroll-padding-top: 50px;}

body, html{
    height: 100%;
}

body{
    font-family: "Poppins", serif;
    line-height: 24px;
    font-size: 14px;
    background-color: #10100F;
    overflow-x: hidden;
}

*, *::after, *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a:hover, a:visited, A:focus, a:active, img, button{
    border:none;
    outline: none;
    text-decoration: none;
}

a, :hover{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}

::-moz-selection { /* Code for Firefox */
    color: #10100f;
    background: #FFAE00;
}
  
::selection {
    color: #10100f;
    background: #FFAE00;
}

.wrapper{
    position: relative;
    min-height: 100%;
    width: 100%;
    float: left;
}
.main-content{
    width: 100%;
    float: left;
}
.footer{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 80px 0 40px;
}

header{
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 249, 235, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    background-color: rgba(16,16,15,0.6);
}
header.sticky{
    padding: 0;
    backdrop-filter: blur(10px);
}
header .nav-item{
    padding-left: 17px;
    padding-right: 17px;
}
header .nav-link{
    color: #ffffff;
}
header .navbar-nav .nav-link.active
,header .nav-link:hover{
    color: #FFAE00;
}


.yellow-btn{
    font-size: 14px;
    font-weight: 500;
    background: #FFAE00;
    border: 1px solid #FFAE00;
    color: #10100F;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 100px;
}
.yellow-btn:hover{
    background: transparent;
    border: 1px solid #FFAE00;
    color: #FFAE00;
}
.btn-hover{
    overflow: hidden;
    position: relative;
    text-decoration: none;
}
.btn-hover > span{ z-index: 20;}
.btn-hover::after{
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 0;
}
.btn-hover:hover::after{
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

/*hero section*/
.hero{
    padding: 80px 0 160px;
}
.hero-title{
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}
.hero-desc{
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.25;
}
a.hreo-btn {
    display: inline-block;
    text-decoration: none;
    color: #FFAE00;
    font-size: 14px;
    padding: 15px 30px;
    border: 1px solid #FFAE00;
    border-radius: 50px;
}
a.hreo-btn:hover{
    background-color: #FFAE00;
    color: #10100F;
}

/*Counter section*/
section.counter {
    background-color: #171716;
    border-top: 1px solid rgba(255, 249, 235, 0.1);
    border-bottom: 1px solid rgba(255, 249, 235, 0.1);
    padding: 30px 0;
}
.counter-cotainer {
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-number {
    font-size: 36px;
    color: #FFAE00;
    font-weight: 600;
    margin: 0;
}
.counter-desc {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    margin-left: 15px;
}

/*About section*/
.aboutus{
    padding: 160px 0 80px;
}
.section-small-title {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: #FFAE00;
    letter-spacing: 4px;
    line-height: normal;
    margin-bottom: 15px;
}
.section-big-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}
.section-big-title > span{color: #FFAE00;}
.section-desc {
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
}
.about-img{
    border-radius: 15px;
    margin-top: 30px;
}
.about-logo:hover{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    animation-name: headShake;
}

/*What we do*/
.what-we-do{
    padding: 80px 0;
}
.service-container {
    border-radius: 50px;
    padding: 40px;
    margin-top: 30px;
    background-color: #171716;
    border: 1px solid rgba(255, 249, 235, 0.1);
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.service-container:hover{
    border-color: #FFAE00;
    transform: translateY(-5px);
}
.service-container:hover .service-img{border-color: rgba(255, 249, 235, 0.1);}
.service-container:hover .service-img path{fill: #FFAE00;}
.service-img {
    display: inline-block;
    padding: 26px;
    border-radius: 25px;
    border: 1px solid #FFAE00;
    margin-bottom: 30px;
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.service-container .service-img path{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.service-title {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.service-sub-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffaf01;
}
.service-desc {
    font-size: 16px;
    color: #A4A4A6;
    margin: 0;
}

/*Workfolio*/
.workfolio{
    padding: 80px 0;
}
.workfolio-item {
    display: inline-block;
    margin-top: 30px;
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    color: #ffffff;
    text-decoration: none;
}
.workfolio-item:hover{color: #FFAE00;}
.workfolio-item > figure {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}
.workfolio-item:hover > figure{border-color: #FFAE00;}
.workfolio-item > figure::before{
    position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.workfolio-item:hover > figure::before{
    -webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

/*Testimonail*/
.testimonial{padding: 80px 0;}

.testimonail-container{
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
.testimonial-arrow {
    width: 50px;
    height: 50px;
    bottom: -80px;
    top: unset;
    transform: translate(0px, 0px);
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.slick-prev.testimonial-arrow {
    left: calc(50% - 55px);
}
.slick-next.testimonial-arrow {
    right: calc(50% - 55px);
}
.testimonial-arrow > circle, .testimonial-arrow > path{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.testimonial-arrow > circle{stroke: #FFECC2;}
.testimonial-arrow > path{fill: #FFECC2;}
.testimonial-arrow:hover > circle{stroke: #FFAE00;}
.testimonial-arrow:hover > path{fill: #FFAE00;}
.testimonial-slider .slick-dotsP{bottom: -35px;}
.testimonial-slider .slick-dots li{width: 15px; height: 15px;}
.testimonial-slider .slick-dots li.slick-active button {
    background-color: #ffaf01;
    border-color: #ffaf01;
}
.testimonial-slider .slick-dots li button {
    border-radius: 100%;
    height: 15px;
    width: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.testimonial-item {
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    background-color: #171716;
    border: 1px solid rgba(255, 249, 235, 0.1);
}
.testimonial-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 40px;
}
.testimonial-auther {
    display: flex;
    gap: 15px;
    align-items: center;
}
.testimonial-auther > img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.testimonial-name > span {
    font-size: 14px;
    font-weight: 300;
}

/*Footer*/
.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}
.footer-txt {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    margin-bottom: 30px;
}
h3.footer-bottom-title {
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 18px;
}
h3.footer-bottom-title:hover{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    animation-name: headShake;
}
h3.footer-bottom-title:last-child{
    margin-bottom: 0;
}
.footer-bottom-title > span {
    color: #FFAE00;
    font-weight: 400;
}
.footer-container {
    padding: 30px;
    border-radius: 15px;
    background-color: #171716;
    border: 1px solid rgba(255, 249, 235, 0.1);
}
.footer-link-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #FFAE00;
}
.footer-half-list{
    display: flex;
    gap: 15px;
}
.footer-half-list > ul.footer-links{width: 50%;}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links > li{
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.footer-links > li > a{
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.footer-links > li > a:hover, .footer-links > li:hover{
    color: #FFAE00;
    text-decoration: underline;
}
.footer-contact-links {
    list-style: none;
    padding: 0;
}
.footer-contact-links > li {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer-contact-links > li > svg {
    margin-right: 10px;
}
.footer-contact-links > li > a {
    color: #ffffff;
    text-decoration: none;
}
.footer-contact-links > li > a:hover{
    color: #FFAE00;
    text-decoration: underline;
}
.brdr-top {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 20px;
}
.copy-txt {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}
.copy-txt > a {
    color: #FFAE00;
    text-decoration: none;
}
ul.footer-social-media {
    list-style: none;
    display: flex;
    padding: 0;
    justify-content: end;
    gap: 20px;
    margin: 0;
}
.footer-social-media li{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.footer-social-media li:hover{transform: translateY(-5px);}

/*contact us*/
.contact{
    padding: 80px 0;
}
.contact-form .form-label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}
.contact-form .form-label > span.star{
    color:#FFAE00;
}
.contact-form .form-control::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.30);
}
.contact-form .form-control {
    margin-bottom: 20px;
    background-color: #10100f;
    border-radius: 5px;
    border: 1px solid rgba(255, 249, 235, 0.3);
    padding: 15px;
    color: #ffffff;
}
.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #FFAE00;
}
.btn-submit {
    background-color: #FFAE00;
    border-radius: 100px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}
.btn-submit:hover {
    background-color: #FFAE00;
}

/*Collabrate*/
.collabrate{padding: 80px 0;}
/*.collabrate-container {
    padding: 40px;
    background-color: #121211;
    border: 1px solid rgba(255, 249, 235, .05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.collabrate-container > h4 {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    margin: 0;
}
.call-btn {
    font-size: 14px;
    font-weight: 500;
    background-color: #FFAE00;
    padding: 15px 30px;
    border-radius: 100px;
}
.call-btn:hover{background-color: #FFAE00;}*/
.collabrate-container {
    padding: 40px;
    background-color: #ffae00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.collabrate-container > h4 {
    font-weight: 600;
    font-size: 36px;
    color: #10100f;
    margin: 0;
}
.call-btn {
    font-size: 14px;
    font-weight: 500;
    background-color: #10100f;
    border: 1px solid #10100F;
    padding: 15px 30px;
    border-radius: 100px;
    color: #ffae00;
}
.call-btn:hover{
    border: 1px solid #10100F;
    color: #10100F;
    background-color: #FFAE00;
}

/*process*/
.process{padding: 80px 0;}
.process-name {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
}
.process-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}
.procss-item {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    align-items: center;
    gap: 10px;
}
.process-img{
    width:100px;
    height: 100px;
    border-radius: 25px;
    border: 1px solid #FFECC2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.process-container > svg, .process-container > span > svg {
    margin-top: 80px;
}
.procss-item svg path{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.procss-item:hover .process-img{
    border-color: #FFAE00;
}
.procss-item:hover svg path{
    fill: #FFECC2;
}

/*Pricing module*/
.pricing-container{
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing{padding: 80px 0;}
.service-title > span{font-size: 18px;}
.service-btn {
    color: #FFAE00;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #FFAE00;
    border-radius: 100px;
    padding: 15px 30px;
    width: fit-content;
}
.service-btn:hover{
    border: 1px solid #FFAE00;
    color: #10100F;
    background-color: #FFAE00;
}
.service-price {
    color: #FFAE00;
    font-weight: 800;
    font-size: 48px;
    line-height: normal;
    margin: 20px 0;
}
.service-price > span {
    color: #ffffff;
    font-size: 25px;
}
.service-info {
    font-size: 16px;
    color: #fff;
}
.service-info {
    font-size: 16px;
    color: #fff;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.service-list > li{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 32px;
}
.service-list > li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/check-mark.svg);
    position: absolute;
    top: 3px;
    left: 0;
}
.price-yellow-btn {
    font-size: 14px;
    background-color: #ffae00;
    border: 1px solid #FFAE00;
    color: #10100F;
    border-radius: 100px;
    width: fit-content;
    padding: 15px 30px;
    line-height: normal;
    margin-top: 30px;
    font-weight: 500;
}
.price-yellow-btn:hover {
    background-color: #171716;
    color: #FFAE00;
    border: 1px solid #FFAE00;
}

/*Model*/
.modal-fullscreen .modal-content{
    background-color: rgba(16, 16, 15, 0.5);
    backdrop-filter: blur(6px);
}
.modal-btn-close {
    background-color: transparent;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 30px;
    right: 30px;
}
.modal-btn-close > svg {
    width: 100%;
    height: 100%;
}
.modal-btn-close:hover > svg  path{
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}
.modal-btn-close:hover > svg  path{
    fill: #FFAE00;
}
.modal-btn {
    position: fixed;
    bottom: 40px;
    background-color: #FFAE00;
    color: #10100F;
    border: 1px solid #FFAE00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 100px;
    left: calc(50% - 61.215px);
}
.modal-btn:hover{
    background-color: #10100F;
    border: 1px solid #10100F;
    color: #FFAE00;
}


/*Media Queries*/
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {  }

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {  }

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }


/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .what-we-do, .workfolio, .testimonial,.pricing,.collabrate{padding: 50px 0;}
    .aboutus{padding: 100px 0 50px;}
    .hero{padding: 70px 0 100px;}
    .process{padding: 80px 0 50px;}

    .logo{width: 180px;}
    header .nav-item{padding-left: 7px; padding-right: 7px;}

    .hero-title{font-size: 65px;}
    .hero-desc{font-size: 25px;}

    .footer-container{padding: 20px;}
    .footer-links > li{font-size: 12px;}
    .footer-contact-links > li{font-size: 12px;}
    .footer-contact-links > li > svg{margin-right: 5px;}
    .footer{padding: 50px 0 40px;}
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    

    header{padding: 8px 0; background-color: #10100F;}
    .logo{width: 170px;}
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 174, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler:focus{box-shadow: none;}
    button.navbar-toggler {
        padding: 0;
        border: none;
    }
    .btn-container{justify-content: center;}
    .navbar-collapse{padding: 10px 10px; backdrop-filter: blur(10px);}
    .navbar-nav{text-align: center; font-size: 18px;}

    
    .hero-title{font-size: 55px;}
    .hero-desc{font-size:24px; margin-bottom: 30px;}

    
    .section-big-title{font-size: 40px;}
    .section-desc{font-size: 18px;}
    .about-logo{width: 55%;}

    .service-container{padding: 20px; border-radius: 20px;}
    .service-img{padding: 20px; border-radius: 15px; margin-bottom: 20px;}
    .service-title{font-size: 25px; margin-bottom: 10px;}

    .workfolio-item{font-size: 25px; line-height: normal;}
    .workfolio-item > figure{margin-bottom: 10px;}

    .testimonial-item{margin-top: 10px; padding: 20px;}
    .testimonial-text{font-size: 16px; line-height: normal; margin-bottom: 20px;}
    .testimonial-auther > img{width: 55px; height: 55px;}
    .testimonial-name{line-height: 1.3;}

    
    .process-img{width: 85px; height: 85px; border-radius: 20px;}
    .process-img > svg{width: 40px; height: 40px;}
    .process-name{font-size: 14px;}
    .procss-item{margin-top: 90px;}

    .collabrate-container{gap: 70px;}
    .footer-container{margin-bottom: 24px;}

    .footer{background-color: rgba(255, 255, 255, 0.05); padding: 40px 0;}
    .brdr-top{margin-top: 0;}
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .logo{width: 150px;}
    a.hreo-btn,.btn-submit,.call-btn,.modal-btn,.price-yellow-btn,.service-btn{padding: 15px 40px;}
    .what-we-do,.workfolio,.testimonial, .pricing, .collabrate,.footer{padding: 40px 0;}

    .hero-title{font-size: 42px;}
    .hero-desc{font-size: 20px;}
    .hero{padding: 50px 0 80px;}
    
    .counter-desc{margin-left: 10px;}

    .aboutus, .process{padding: 80px 0 40px;}
    .section-small-title{font-size: 18px; margin-bottom: 10px;}
    .section-big-title{font-size: 35px;}
    .section-desc{font-size: 16px; line-height: 1.3;}
    .about-logo{width: 60%;}

    .service-container{margin-top: 24px; border-radius: 35px; padding: 30px;}
    .service-img{padding: 18px; border-radius: 16px; margin-bottom: 25px;}
    .service-title{font-size: 28px;}

    .workfolio-item{margin-top: 20px; line-height: normal; font-size: 25px;}
    .workfolio-item > figure{margin-bottom: 5px;}

    .testimonial-item{margin-top: 10px;padding: 30px;}
    .testimonial-text{font-size: 16px; line-height: normal; margin-bottom: 25px;}
    .testimonial-auther > img{width: 50px; height: 50px;}
    .testimonial-name{font-size: 14px; line-height: 1.3;}

    .procss-item{position: relative; margin-top: 100px;}
    .process-img{width: 80px; height: 80px; border-radius: 15px;}
    .process-img > svg{width: 35px; height: 35px;}
    .process-name{font-size: 14px;}
    .process-container > svg {display: none;}
    .process-number {
        margin: 0;
        font-size: 74px;
        color: #fff;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        left: -15px;
        z-index: -1;
        opacity: 0.1;
    }

    .collabrate-container{padding: 30px 25px; gap: 28px;}
    .collabrate-container > h4{font-size: 25px;}

    .footer-container{margin-bottom: 24px;}
    .brdr-top{margin-top: 0;}
}

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .logo{width: 130px;}
    a.hreo-btn,.btn-submit,.call-btn,.modal-btn,.price-yellow-btn,.service-btn{padding: 10px 40px;}
    .modal-btn{left:calc(50% - 72.215px);}
    .modal-btn-close{width: 20px; height: 20px; right: 20px; top: 20px;}

    .hero{padding: 50px 0;}
    .hero-title{font-size: 30px; margin-bottom:15px;}
    .hero-desc{font-size: 16px; line-height: 1.45; margin-bottom: 20px;}

    .counter-cotainer{flex-direction: column; gap: 10px; text-align: center;}
    .counter-desc{margin: 0;}

    .aboutus{padding:50px 0 25px;}
    .what-we-do,.workfolio,.testimonial,.process,.contact,.footer,.pricing{padding: 25px 0;}
    .collabrate{padding: 25px 0 50px;}

    .section-small-title{font-size: 14px; margin-bottom:10px}
    .section-big-title{font-size: 24px;}
    .section-desc{font-size: 14px;}
    .about-img{margin-top: 0;}

    .service-container{border-radius: 20px; padding: 20px; margin-top: 12px; margin-bottom: 12px;}
    .service-img{padding: 16px; border-radius: 12px; margin-bottom: 15px;}
    .service-img > svg{width: 35px; height: 35px;}
    .service-title{font-size: 22px; margin-bottom: 10px;}
    .service-desc{font-size: 14px; line-height: 1.4;}
    .service-price{font-size: 36px; line-height: normal; margin: 5px 0;}
    .service-info{margin-bottom: 5px;}
    .service-list > li{margin-bottom: 5px; font-size: 12px; padding-left: 30px;}
    
    .workfolio-item{margin-top: 20px; font-size: 20px; line-height: normal;}
    .workfolio-item > figure{margin-bottom: 10px;}

    .testimonial-item{margin-top: 0; padding: 20px;}
    .testimonial-text{font-size: 14px; line-height: 1.4; margin-bottom: 15px;}
    .testimonial-auther > img{height: 45px; width: 45px;}
    .testimonial-name{font-size: 14px; line-height: 1.2;}
    .testimonial-name > span{font-size: 12px;}

    .process-container{margin-top: 20px; gap:10px;}
    .process-container > svg{display: none;}
    .procss-item{position: relative;}
    .process-img{height: 50px; width: 50px; border-radius: 10px;}
    .process-img > svg{width: 30px; height: 30px;}
    .process-name{text-align: center; font-size: 14px;}
    .process-number {
        margin: 0;
        font-size: 74px;
        color: #fff;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        left: -15px;
        z-index: -1;
        opacity: 0.1;
        stroke: white;
    }

    .collabrate-container{flex-direction: column; padding: 20px; align-items: center; gap: 20px;}
    .collabrate-container > h4{font-size: 25px; text-align: center;}

    .footer{background-color: rgba(255, 255, 255, 0.05);}
    .footer-txt{font-size: 12px; margin-bottom:10px; line-height: normal;}
    h3.footer-bottom-title{font-size: 20px; margin-bottom: 5px;}
    h3.footer-bottom-title:last-child{margin-bottom: 15px;}
    .footer-container{padding: 20px; margin-bottom: 15px;}
    .footer-link-title{font-size: 18px; padding-bottom: 10px; margin-bottom: 15px;}
    .footer-links, .footer-contact-links{margin: 0;}
    .footer-links > li{margin-bottom: 0; font-size: 12px;}
    .footer-links > li > a{font-size: 12px; line-height: normal;}
    .footer-contact-links > li{font-size: 12px; margin-bottom: 5px;}
    .footer-contact-links > li > svg{width: 15px; height: 15px;margin-right: 5px;}
    .brdr-top{margin-top: 0; padding-top: 10px;}
    .copy-txt{text-align: center; margin-bottom: 8px;}
    ul.footer-social-media{justify-content: center;}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    .counter-cotainer{margin-bottom: 30px;}

    .service-container{margin-bottom: 0;}

    

    .process-container{flex-flow: wrap; margin-top: 20px; justify-content: center; gap: 30px;}
    .process-container > svg{display: none;}
    .procss-item{margin-top: 0; position: relative;}
    
    
    .process-number {
        margin: 0;
        font-size: 74px;
        color: #fff;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        right: unset;
        left: -15px;
        z-index: -1;
        opacity: 0.1;
        stroke: white;
    }
    .process-img{width: 100px; height: 100px; border-radius: 25px;}
    .process-img > svg{width: 48px; height: 48px;}
}








