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


* {
    box-sizing: border-box;
}

:root {
    --gap80: clamp(40px, 5.556vw, 80px);
    --gap110: clamp(40px, 7.639vw, 110px);
    --font18: clamp(16px, 1.25vw, 18px);
    --font19: clamp(16px, 1.319vw, 19px);
    --font20: clamp(17px, 1.389vw, 20px);
    --font21: clamp(17px, 1.458vw, 21px);
    --font22: clamp(17px, 1.528vw, 22px);
    --font23: clamp(17px, 1.597vw, 23px);
    --font24: clamp(17px, 1.667vw, 24px);
    --font25: clamp(18px, 1.736vw, 25px);
    --font26: clamp(18px, 1.806vw, 26px);
    --font27: clamp(18px, 1.875vw, 27px);
    --font28: clamp(19px, 1.944vw, 28px);
    --font29: clamp(19px, 2.014vw, 29px);
    --font30: clamp(19px, 2.083vw, 30px);
    --font31: clamp(20px, 2.153vw, 31px);
    --font32: clamp(20px, 2.222vw, 32px);
    --font33: clamp(21px, 2.292vw, 33px);
    --font34: clamp(22px, 2.361vw, 34px);
    --font35: clamp(23px, 2.431vw, 35px);
    --font36: clamp(25px, 2.5vw, 36px);
    --font42: clamp(28px, 3vw, 42px);
    --font50: clamp(32px, 3.5vw, 50px);
    --black: #000;
    --lightblack: #181818;
    --white: #fff;
    --blue: #053154;
    --yellow: #E98C26;
    --lightgreen: #4AC14B;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--lightblack);
    background: #F5F5F5;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

h2 {
    font-weight: 700;
    font-size: var(--font42);
    line-height: 45px;
    color: var(--blue);
}

h3 {
    color: var(--white);
    font-size: var(--font23);
    font-weight: 600;
    line-height: 1.438rem;
}

h4 {
    font-weight: 700;
    font-size: var(--font20);
    color: #13124D;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 10px;
}

label span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.select {
    position: relative;
}

.select::after {
    content: "\e91b";
    font-family: "Syd";
    color: #000;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 18px;
    pointer-events: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    transition: 0.2s ease all;
    resize: none;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    border: #EEEEEE 1px solid;
    outline: none;
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
    transition: 0.2s ease all;
}

select,
input {
    height: 50px;
}

textarea {
    height: 70px;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

[type="submit"]:hover {
    background: #ea3319;
}


.btns {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid transparent;
    padding: 13px 36px;
}

.primary-btn {
    background: #0655BE;
    color: #FFFFFF;
}

.primary-btn:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

.secondary-btn {
    color: #000000;
    border-color: #000000;
}

.secondary-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.mrg-top-80 {
    margin: clamp(45px, 5.556vw, 80px) 0 0;
}

.mrg-bot-80 {
    margin: 0 0 clamp(45px, 5.556vw, 80px);
}

p {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}

.container {
    max-width: 100%;
    padding: 0 20px;
}



/* font add here */
@font-face {
    font-family: 'Haas Grot Text 65';
    src: url('../fonts/hass-grot-font/HaasGrotText-66MediumItalic.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-66MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Text 55 Roman';
    src: url('../fonts/hass-grot-font/HaasGrotText-56Italic.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-56Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Text 65';
    src: url('../fonts/hass-grot-font/HaasGrotText-65Medium.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-65Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Text 55 Roman';
    src: url('../fonts/hass-grot-font/HaasGrotText-55Roman.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-55Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Text 55 Roman';
    src: url('../fonts/hass-grot-font/HaasGrotText-75Bold.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-75Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Text 55 Roman';
    src: url('../fonts/hass-grot-font/HaasGrotText-76BoldItalic.woff2') format('woff2'),
        url('../fonts/hass-grot-font/HaasGrotText-76BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* creato display */

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Bold.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-BoldItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-BlackItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Black.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Italic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-ExtraBold.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Regular.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Thin.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Light.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-MediumItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-Medium.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-LightItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display-font/CreatoDisplay-ThinItalic.woff2') format('woff2'),
        url('../fonts/creato-display-font/CreatoDisplay-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* web header */

.header {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    z-index: 99;
}

.header-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.web-header-left a img {
    max-width: 223px;
    min-height: 119px;
}

.web-header-menu ul {
    display: flex;
    align-items: center;
    border: 1px solid #FFFFFF1A;
    background: #0404043B;
    border-radius: 18px;
    padding: 9px;
}

.web-header-menu ul li a {
    font-size: var(--font18);
    font-weight: 400;
    font-family: 'Haas Grot Text 65';
    color: var(--white);
    padding: 12px 28px;
    border-radius: 18px;
    transition: all .3s ease-in-out;
}
.menu-item-has-children .sub-menu {display:none !important;}

.menu-item-has-children:hover > .sub-menu {
    display: block !important;
}

.menu-item-has-children ul {
        display: inline !important;
    align-items: center;
    border: 1px solid #FFFFFF1A;
    background: #0404043B;
    border-radius: 18px;
    padding: 9px;
    position: absolute;
}
.menu-item-has-children ul li a{
    
 width:100% !important;
 
}
.footer-box .menu-item-has-children ul {
 
        background: #040404;
}

.web-header-menu ul li a.active {
    background-color: var(--yellow);
    color: var(--white);
}

.web-header-menu ul li a:hover {
    background-color: var(--yellow);
    color: var(--white);
}

.web-header-contact-sec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.whats-app-icon {
    margin-right: 60px;
}

.header-contact-info {
    text-align: center;
}

.header-contact-info p {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Haas Grot Text 65';
    margin-bottom: 6px;
}

.number {
    font-size: var(--font35);
    font-weight: 700;
    color: var(--white);
    font-family: 'Haas Grot Text 65';
    margin-bottom: 6px;
}

.header-contact-info span {
    display: inline-block;
    min-width: 214px;
    background-color: var(--yellow);
    font-family: 'Haas Grot Text 65';
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    padding: 3px 4px;
    border-radius: 3px;
}

.hamburger {
    display: none;
}

.mobile-menu-close-sec {
    display: none;
}


/* bammer sec */

.banner-box {
    width: 100%;
    position: relative;
}

.banner-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(89.93deg, rgba(32, 32, 32, 0.69) 0.06%, rgba(32, 32, 32, 0) 73.68%);
}

.banner-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(181.1deg, #202020 10.28%, rgba(32, 32, 32, 0) 78.09%);
}

.banner-wrapper-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 188px 0 104px 0;
}

.banner-info .banner-top {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Haas Grot Text 65';
}

.banner-info .banner-top img {
    margin-right: 9px;
}

.banner-info h1 {
    font-size: 65px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-info h1 span {
    font-weight: 700;
}

.banner-left {
    width: 735px;
}

.banner-info p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 34px;
    font-family: 'Haas Grot Text 65';
}

.start-btn-sec {
    width: fit-content;
}

.get-btn {
    display: flex;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px 21px;
    font-family: 'Haas Grot Text 65';
    transition: all .3s ease-in-out;
}

.get-btn:hover::before,
.get-btn:hover::after {
    border-color: transparent !important;
    background-color: transparent;
}

.get-btn:hover {
    background-color: var(--lightgreen);
    border-color: var(--lightgreen);
}

.get-btn span {
    margin-right: 33px;
}

.get-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 132%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 0;
    top: -10px;
    right: -13px;
    border-bottom-color: transparent;
    border-right-color: var(--white);
    border-top-color: var(--white);
    border-left-color: transparent;
}

.get-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 113%;
    right: -33px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: scale(0.85);
}

.banner-right {
    width: 439px;
}

.get-form-sec {
    position: relative;
    width: 100%;
    padding: 20px 25px;
    border-radius: 26px;
}

.get-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.get-form-box-wrapper label {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

.get-input-box {
    position: relative;
    margin-bottom: 17px;
}

.get-form-sec input::placeholder,
.get-form-sec textarea::placeholder {
    color: var(--white);
}

.get-input-box input {
    height: 49px;
    background: #FFFFFF24;
    color: var(--white);
    border-radius: 15px;
    padding-right: 46px;
}

.get-select-box {
    margin-bottom: 17px;
}

.get-select-box select {
    height: 49px;
    background: #FFFFFF24;
    color: var(--white);
    border-radius: 15px;
    background-image: url(../img/down-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% 56%;
}

.get-mesage-box textarea {
    height: 94px;
    background: #FFFFFF24;
    color: var(--white);
    border-radius: 15px;
}

.get-input-box img {
    max-width: 18px;
    position: absolute;
    right: 23px;
    top: 16px;
}

.get-btn-box {
    margin-top: 31px;
}

.send-btn {
    width: 100%;
    font-size: var(--font22);
    font-weight: 700;
    border-radius: 15px;
    border: 1px solid var(--white);
    color: var(--white);
    background: var(--yellow);
    transition: all .3s ease-in-out;
}

.send-btn:hover {
    background: var(--white);
    color: var(--yellow);
}

.banner-box .banner-image {
    width: 100%;
    height: 960px;
}

.slick-dots {
    position: absolute;
    bottom: 96px;
    width: 100%;
}

.slick-dots li button {
    width: 6px;
    height: 6px;
    background: #D8D4D4 !important;
}

.slick-dots li.slick-active button {
    width: 22px;
    background-color: #D8D4D4 !important;
    border-radius: 24px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: var(--lightgreen);
    border: 1px solid var(--lightgreen);
    color: #fff !important;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:hover,
.slick-next:hover {
    border: 1px solid #fff;
}

.slick-prev:focus,
.slick-next:focus {
    border: 1px solid #fff;
}

.slick-prev i,
.slick-next i {
    font-size: 24px;
}

.slick-prev {
    bottom: 78px;
    left: 46%;
}

.slick-next {
    bottom: 78px;
    left: 54%;
}



/* Digital marketing services aligned with your goals */

.digital-marketing-services-bg {
    width: 100%;
    height: 100%;
    background-image: url(../img/digital-marketing-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.digital-marketing-services-inner {
    padding-top: 101px;
}

.digital-marketing-services-left-img,
.digital-marketing-services-left-img img {
    height: 100%;
}

.digital-marketing-services-row {
    gap: 26px 0;
}


.our-company p {
    position: relative;
    font-family: 'Creato Display';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--yellow);
    padding-left: 100px;
}

.our-company p::after {
    content: "";
    position: absolute;
    top: 47%;
    left: 1px;
    width: 95px;
    height: 2px;
    background: #117D3E;
    transform: translateY(50%);
}

.digital-marketing-services-title h2 {
    max-width: 646px;
    padding-top: 35px;
}

.digital-marketing-services-title p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75rem;
    color: var(--lightblack);
    padding-top: 35px;
}

.digital-marketing-btn {
    margin-top: 60px;
}

.digital-marketing-btn a {
    color: #2A2929;
    border: 2px solid #117D3E;
}

.digital-marketing-btn a::before {
    top: -10px;
    right: -13px;
    border-right-color: #117D3E;
    border-top-color: #117D3E;
}

.digital-marketing-btn a::after {
    background-color: #117D3E;
}

/* We provide the following services */

.we-provide-the-services {
    width: 100%;
    height: 100%;
    background-image: url(../img/we-provide-the-services-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px 0 114px;
    margin-top: 123px;
}

.we-provide-the-services-title h2 {
    max-width: 543px;
    color: var(--white);
    padding: 31px 0 22px;
}

.we-provide-the-services-title p {
    max-width: 535px;
    color: var(--white);
    font-weight: 400;
    font-size: var(--font18);
    line-height: 1.5rem;

}

.we-provide-the-services-box {
    height: 100%;
    background: rgba(17, 125, 62, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all .3s ease-in-out;
}

.we-provide-the-services-box:hover .we-provide-the-services-btn a {
    background-color: var(--yellow);
}

.we-provide-the-services-box:hover .we-provide-the-services-btn a img {
    transform: rotate(-32deg);
}

.we-provide-the-services-content {
    padding: 40px 25px 50px;
}

.we-provide-the-services-content img {
    padding-bottom: 60px;
}

.we-provide-the-services-content h3 {
    color: var(--white);
    font-size: var(--font23);
    font-weight: 600;
    line-height: 1.438rem;
}

.we-provide-the-services-content p {
    color: var(--white);
    padding: 24px 0 27px;
}

.we-provide-the-services-btn a {
    width: 48px;
    height: 50px;
    background: rgba(17, 125, 62, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.we-provide-the-services-btn a img {
    transition: all .3s ease-in-out;
}

.btn-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.we-provide-the-services-row {
    gap: 39px 0;
}

/* Why business with us */

.Why-business-with-us-inner {
    padding: 51px 0 130px;
}

.Why-business-with-us-title h2 {
    max-width: 734px;
    padding: 31px 0 0;
}

.Why-business-with-us-title p {
    padding-top: 35px;
}

.boost-online-img {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(212, 212, 212, 1);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}


.Why-business-with-us-content-list ul li:last-child::before {
    display: none;
}

.boost-online-title {
    padding-left: 31px;
}

.Why-business-with-us-content-list {
    padding-top: 24px;
}

.Why-business-with-us-content-list ul li {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 25px;
    position: relative;
}

.Why-business-with-us-content-list ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 2px;
    height: 100%;
    background: #D4D4D4;
}

.boost-online-title span {
    font-weight: 700;
    font-size: var(--font19);
    line-height: 1.688rem;
    color: var(--black);
}

.boost-online-title p {
    max-width: 535px;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.438rem;
    color: var(--lightblack);
}

.half-media-half-text {
    align-items: center;
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

/* partners */

.partners {
    background-color: #F9F9F9;
    padding: 23px 0;
}

.partners-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.partners-img {
    max-width: 16.66%;
}

/* quary sec */

.quary-sec {
    width: 100%;
    background-image: url(../img/quary-bg-img.png);
    background-repeat: no-repeat;
}

.quary-box {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 44px 0px #0000000F;
    padding: 50px;
}

.quary-input-box {
    position: relative;
}

.quary-input-box label {
    font-size: 16px;
    color: #282828;
    position: absolute;
    top: -7px;
    left: 18px;
    background: #fff;
    padding: 0 5px;
    font-family: 'Haas Grot Text 65';
	    z-index: 9999;
}

.quary-input-box input,
.quary-input-box select {
    height: 60px;
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 44px 0px #0000000F;
    font-family: 'Haas Grot Text 65';
}

.quary-input-box textarea {
    height: 119px;
    border: 1px solid #EFEFEF;
    padding: 25px 21px !important;
    box-shadow: 0px 4px 44px 0px #0000000F;
    font-family: 'Haas Grot Text 65';
}

.quary-input-box input,
.quary-input-box select,
.quary-input-box textarea {
    padding: 9px 21px;
    border-radius: 0;
}

.quary-input-box input::placeholder,
.quary-input-box textarea::placeholder {
    color: #B0ACAC;
}

.quary-phn-box input {
    padding-left: 104px;
}

.number-box {
    position: absolute;
    top: 19px;
    left: 22px;
}

.number-box-inner {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    color: #B0ACAC;
    padding-right: 12px;
    font-family: 'Haas Grot Text 65';
}

.number-box-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 25px;
    background-color: #E0DCDC;
}

.number-box img {
    margin-right: 5px;
}

.quary-input-box select {
    background-image: url(../img/black-down-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% 56%;
}

.quary-input-box {
    margin-bottom: 30px;
}

.quary-from-btn-sec {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.quary-title {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 68px 0 27px;
}

.quary-title p {
    max-width: 602px;
    padding-top: 28px;
}


/* Industry-we-services sec start----------------------------------------------- */

.Industry-we-services {
    padding: 103px 0 100px;
}

.section-heading {
    padding-bottom: 50px;
}

.industry-service-row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 23px;
}

.industry-service-box {
    height: 100%;
    padding: 34px 22px 43px;
    border: 1px solid #F2F2F2;
    border-radius: 7px;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.industry-service-box-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 12px;
}

.industry-service-box-header h4 {
    padding: 0 0 8px 12px;
}

.industry-service-box-content p {
    color: var(--black);
}

/* Frequently Asked Questions */

.faq-left {
    background: linear-gradient(180deg, #FBEBDD 0%, #FFFFFF 100%);
    border-radius: 38px;
    padding: 0 48px;
}

.frequently-asked-questions {
    padding-top: 190px;
}

.faq-top-box {
    background-color: var(--white);
    padding: 30px 43px 38px 37px;
    box-shadow: 10px 0px 44px rgba(0, 0, 0, 0.07);
    border-radius: 38px;
}

.faq-top-box span {
    font-weight: 700;
    font-size: 17px;
    color: #117D3E;
}

.faq-top-box h3 {
    font-family: 'Haas Grot Text 55 Roman';
    font-weight: 700;
    font-size: var(--font35);
    line-height: 2.438rem;
    color: var(--black);
    padding: 16px 0 22px;
}


/* OUR-LATEST-BLOG-START */

.our-latest-blog {
    padding: 70px 0 100px;
}

.our-latest-blog-row {
    padding-bottom: 55px;
    --bs-gutter-x: 29px;
}

.our-latest-blog-box {
    height: 100%;
    padding: 36px 66px 48px 30px;
    box-shadow: 0px 4px 44px 0px #0000001F;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.our-blog-box-top-profile,
.profile-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.profile-box p {
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #777777;
    padding-left: 6px;
}

.line-between {
    padding: 0 10px 5px;
    color: #010101;
}

.our-blog-content {
    padding: 18px 0 45px;
}

.our-blog-content h5 {
    font-weight: 500;
    font-size: var(--font21);
    line-height: 1.688rem;
    color: #010101;
    padding-bottom: 18px;
}

.our-blog-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375rem;
    color: #010101;
}

.our-blog-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.688rem;
    letter-spacing: .02rem;
    text-transform: uppercase;
    color: #117D3E;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0px;
    transition: .2s ease-in-out;
}

.our-blog-button img {
    padding-left: 10px;
    transition: .3s ease-in-out;
}

.our-blog-button:hover img {
    padding-left: 14px;
}

.our-blog-button:hover {
    letter-spacing: .04rem;
}


/* FOOTER START---------------------------------- */

.footer {
    width: 100%;
    height: 100%;
    background-image: url(../img/footer-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 52px 0 32px;
    color: var(--white)
}

.footer-top {
    padding-bottom: 55px;
    border-bottom: 1px solid #FFFFFF17;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 41px;
}

.footer-col:first-child {
    width: 353px;
}

.footer-col:nth-child(2) {
    width: 107px;
}

.footer-col:nth-child(3) {
    width: 302px;
}

.footer-col:last-child {
    width: 358px;
}

.logo-text {
    font-family: 'Haas Grot Text 55 Roman';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625rem;
    padding-bottom: 26px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-social a:hover {
    background-color: var(--yellow);
}

.footer-heading {
    font-family: 'Haas Grot Text 65';
    font-weight: 500;
    font-size: var(--font20);
    line-height: 1.563rem;
    text-transform: capitalize;
    padding: 32px 0px 24px;
}

.footer-col:nth-child(2) ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 19px;
}

.footer-col:nth-child(2) ul li:first-child {
    padding: 0;
}

.footer-col:nth-child(2) ul li a {
    text-transform: capitalize;
    color: var(--white);
    padding-left: 13px;
}

.footer-col:nth-child(2) ul li a:hover {
    padding-left: 15px;
    color: var(--yellow)
}

.footer-col:nth-child(3) ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    padding-top: 25px;
}

.footer-col:nth-child(3) ul li:first-child {
    padding: 0;
}

.footer-col:nth-child(3) ul li img {
    padding-top: 5px;
}

.footer-contact-cont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 11px;
}

.footer-contact-cont span {
    line-height: 1.375rem;
    font-size: 16px;
}

.footer-contact-cont a {
    font-family: 'Haas Grot Text 65';
    font-weight: 500;
    font-size: var(--font19);
    line-height: 1.375rem;
    color: var(--white);
}

.footer-col:nth-child(3) ul li:nth-child(2) a {
    text-decoration: underline;
}

.footer-contact-cont a:hover {
    color: var(--yellow);
}

.subscribe-box {
    padding: 46px 22px 42px 17px;
    background-color: #01010173;
    border: 1px solid #FFFFFF36;
    border-radius: 17px;
}

.subscribe-heading {
    font-family: 'Haas Grot Text 65';
    font-weight: 500;
    font-size: var(--font30);
    line-height: 2.125rem;
}

.footer-form {
    padding-top: 26px;
}

.footer-email {
    position: relative;
}

.footer-email input {
    background: #01010173;
    border: 1px solid #FFFFFF36;
    border-radius: 10px;
    font-size: 16px;
    line-height: 2.125rem;
    color: var(--white);
    padding: 25px 25px 25px 51px;
    margin: 0 0 14px;
}

.footer-email input::placeholder {
    color: var(--white);
}

.footer-email img {
    position: absolute;
    top: 21px;
    left: 24px;
}

.footer-form button {
    background-color: var(--yellow);
    border: 1px solid #FFFFFF36;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 2.125rem;
    color: var(--white);
    padding: 13px 106px;
}

.footer-form button:hover {
    background-color: #d87c17;
}

.footer-bottom {
    padding-top: 28px;
}

.footer-bottom-text p {
    font-size: 15px;
    line-height: 1.563rem;
    color: var(--white);
    text-align: center;
}

.footer-bottom-text p span {
    padding: 0 5px;
}

.copyright-c {
    color: #2c2c2c;
    padding: 0 !important;
}


/* ananta */
.faq-wrpper {
    display: flex;
    flex-wrap: wrap;
}

.faq-left {
    width: 555px;
}

.faq-top-box {
    margin-top: -102px;
}

.faq-top-box h3 {
    text-transform: uppercase;
}

.faq-top-box p {
    font-size: var(--font18);
    text-transform: uppercase;
}

.faq-left h5 {
    font-weight: 500;
    font-size: var(--font23);
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    margin: 38px 0;
}

.faq-left ul {
    margin: 0 0 104px;
}

.faq-left ul li:not(:last-child) {
    margin: 0 0 clamp(15px, 1.528vw, 22px);
}

.faq-left ul li a {
    display: flex;
    align-items: center;
    gap: 17px;
    background: #FFFFFF;
    box-shadow: 10px 0px 44px rgba(0, 0, 0, 0.07);
    border-radius: 17px;
    font-weight: 500;
    font-size: var(--font23);
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    padding: 16px 20px;
}

.faq-left ul li a figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #DD7109;
    border-radius: 50%;
    margin: 0;
}

.faq-left ul li a:hover {
    color: #DD7109;
}

.faq-right {
    width: calc(100% - 555px);
    padding-left: 68px;
}

.at-tab {
    display: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: #000000;
    padding: 0 0 15px 34px;
}

.at-title {
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    padding: 0 0 17px 34px;
}

.at-title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: url(../img/share-icon-green.png) no-repeat center center;
}

.at-item {
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 24px;
}

.at-item:last-child {
    margin-bottom: 0;
}

.at-title h2 {
    font-weight: 500;
    font-size: var(--font18);
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.testimonials {
    background: #F5F5F7;
    padding: 100px 0;
}

.testimonials-title {
    text-align: center;
    margin: 0 0 clamp(30px, 3.125vw, 45px);
}

.thumb-slider-wrap {
    max-width: 1015px;
    margin: 0 auto;
    padding: 0 0 70px;
}

.avatar-col {
    transform: scale(0.95);
    border: 7px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s;
    margin: 0 18px;
}

.avatar-col.slick-center {
    transform: scale(1.38);
    border-color: #fff;
}

.avatar-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testi-image {
    width: 385px;
}

.test-image-box img {
    width: 100%;
}

.test-image-box {
    position: relative;
}

.test-image-box>img {
    border-radius: 30px;
}

.testimonials-text {
    width: calc(100% - 385px);
    padding-left: 45px;
}



/* 02-09-25 */

.js-avatar-slider {
    padding: 0 45px;
}

.js-avatar-slider .slick-slide img {
    opacity: 0.5;
}

.js-avatar-slider .slick-current img {
    opacity: 1;
}

.js-avatar-slider .slick-prev,
.js-avatar-slider .slick-next {
    bottom: unset;
    right: unset;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border: 1px solid #117D3E;
    background-color: #117D3E;
}

.js-avatar-slider .slick-next {
    left: unset;
    right: 0;
}

.js-avatar-slider .slick-prev:hover,
.js-avatar-slider .slick-next:hover,
.js-avatar-slider .slick-prev:focus,
.js-avatar-slider .slick-next:focus {
    border: 1px solid #2C2A2A;
    background-color: transparent;
}

.js-avatar-slider .slick-prev:hover i,
.js-avatar-slider .slick-next:hover i,
.js-avatar-slider .slick-prev:focus i,
.js-avatar-slider .slick-next:focus i {
    color: #070707;
}

.testimonials-text h2 {
    font-size: var(--font50);
    font-family: 'Haas Grot Text 55 Roman';
    font-weight: 400;
    color: var(--black);
}

.testimonials-text p {
    font-size: var(--font24);
    font-weight: 400;
    line-height: 1.5em;
    padding: 60px 0 51px;
}

.user-details h5 {
    font-family: 'Haas Grot Text 55 Roman';
    font-size: var(--font26);
    line-height: 2.25rem;
    font-weight: 700;
    position: relative;
    padding-left: 85px;
    margin-bottom: 10px;
}

.user-details h5::after {
    content: "";
    position: absolute;
    top: 47%;
    left: 1px;
    width: 74px;
    height: 2px;
    background: var(--black);
    transform: translateY(50%);
}

.user-details span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1rem;
    color: #C42D0E;
    padding-left: 85px;
}

.user-social-links li a {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid #8297A1;
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    transition: all .3s ease-in-out;
}

.user-social-links li a:hover {
    z-index: 2;
    background-color: #117D3E;
    border-color: #117D3E;
    transform: scale(1.5);
}

.user-social-links li a:hover i {
    color: var(--white);
}

.user-social-links li a i {
    color: #8297A1;
    transition: all .3s ease-in-out;
}


.js-testimonials-slider .slick-list {
    overflow: unset;
}

.user-social-links {
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
}

.testi-bg-img {
    position: absolute;
    top: 14px;
    left: -136px;
    z-index: -1;
}

.tesi-para {
    position: relative;
}

.quate-img {
    position: absolute;
    top: 51px;
    left: 0;
    z-index: -1;
}

.js-avatar-slider .slick-list {
    padding: 32px 0 !important;
}



/* 03/09/25 */

.ppc-header {
    background: rgba(32, 32, 32, 0.87);
}

.ppc-header-text p {
    font-weight: 700;
    font-size: var(--font19);
    line-height: 3.625;
    font-family: 'Creato Display';
    color: var(--white);
}

.ppc-header-text h2 {
    max-width: 668px;
    font-weight: 700;
    font-size: 29px;
    line-height: 33px;
    color: var(--white);
}

.web-header-right-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/*.web-header-center {
    margin-right: 60px;
}*/

.ppc-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(89.26deg, rgba(32, 32, 32, 0.69) 46.74%, rgba(32, 32, 32, 0) 93.43%);
}


.ppc-banner-wrapper-box {
    padding: 278px 0 50px;
}

.ppc-banner-slider .slick-prev,
.ppc-banner-slider .slick-next {
    bottom: 47px;
}

.ppc-banner-slider .slick-dots {
    bottom: 63px;
}

.call-section {
    background-color: #191A1D;
    padding: 35px 0;
}

.call-section-inner p {
    font-weight: 700;
    font-size: 17px;
    line-height: 2.063rem;
    color: var(--white);
}

.call-section-inner a {
    font-weight: 700;
    font-size: var(--font29);
    line-height: 2.063rem;
    color: var(--yellow);
}

.the-best-ppc-hire {
    padding: 72px 0 130px;
}

.ppc-service-bg {
    background-color: #FAFAFA;
    padding: 84px 0;
}

.ppc-service-title {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ppc-service-title h2 {
    max-width: 536px;
    padding: 25px 0 55px;
}

.ppc-service-box {
    height: 100%;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 25px 24px 49px 30px;
}

.ppc-service-box-img {
    width: 66px;
    height: 66px;
    border: 1px solid rgba(3, 88, 40, 1);
    background: rgba(234, 255, 243, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 13px;
}

.ppc-service-box-inner h4 {
    font-weight: 700;
    font-size: var(--font20);
    line-height: 2.813rem;
    color: var(--black);
}

.ppc-service-box-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 27px;
}

.ppc-service-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.438rem;
    color: #525252;
}

.ppc-service-row,
.ppc-digitai-marketing-row,
.portfolio-row {
    gap: 24px 0;
}

.Why-business-with-us-title ul {
    padding-top: 35px;
}

.Why-business-with-us-title ul li {
    padding-left: 15px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75rem;
    position: relative;
    color: #181818;
}

.Why-business-with-us-title ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #181818;
    border-radius: 50%;
}

.Why-business-with-us-title span {
    font-weight: 700;
    font-size: var(--font20);
    line-height: 1.688rem;
    display: block;
    padding: 32px 0 0;
}

.Why-business-with-us-title:nth-child(3) {
    padding: 0;
}

.ppc-digitai-marketing {
    padding: 70px 0 83px;
}

.ppc-digitai-marketing-box {
    height: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    padding: 26px 24px;
}

.ppc-digitai-marketing-box-img img {
    border-radius: 17px;
}

.ppc-digitai-marketing-box-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ppc-digitai-marketing-box-title {
    max-width: 273px;
    margin-left: 30px;
}

.ppc-digitai-marketing-box-title h4 {
    font-weight: 700;
    font-size: var(--font21);
    line-height: 1.563rem;
    color: var(--black);
    padding-bottom: 21px;
}

.portfolio-call-section-outer {
    margin-top: 83px;
}

.portfolio-call-section-title h2 {
    max-width: 1042px;
}

.portfolio-call-section-title h2 a {
    font-weight: 700;
    font-size: var(--font42);
    line-height: 45px;
    color: var(--blue);
    text-decoration: underline;
}

.portfolio-call-section-title h2 a:hover {
    color: var(--yellow);
}

.portfolio-call-section-box {
    height: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    padding-bottom: 30px;
}

.portfolio-call-section-box-inner {
    padding: 15px 15px 30px;
}

.portfolio-call-section-box a {
    font-family: 'Creato Display';
    font-weight: 700;
    font-size: var(--font21);
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--black);
    display: block;
}

.testimonials-sec {
    width: 100%;
    background-image: url(../img/testimonials-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 123px 0;
}

.testimonials-wrapper .slick-list {
    margin: 0 -15px;
}

/* .testimonials-box {
  padding: 0 15px;
} */

.testimonials-box-inner {
    width: 100%;
    background: #fff;
    padding: 44px 28px 26px;
    border-radius: 7px;
    box-shadow: 14px 3px 44px 0px #00000017;
}

.testimonials-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testimonials-user {
    width: 64px;
    height: 64px;
    background: #556080;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: center;
    border-radius: 50%;
}

.testimonials-info {
    padding-left: 15px;
}

.testimonials-info h3 {
    font-size: var(--font18);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonials-info p {
    font-size: 15px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: var(--black);
    margin-bottom: 14px;
}

.testimonials-bottom {
    padding-top: 31px;
}

.testimonials-bottom p {
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
}

.testimonials-box {
    /* transform: scale(0.8); */
    transition: all 0.4s ease-in-out;
    padding: 40px 0;
}

.testimonials-box .testimonials-box-inner {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
}

.testimonials-wrapper .slick-center {
    transform: scale(1.1);
}

.slider-bottom {
    padding-top: 23px;
    text-align: right;
}

.slider-bottom .read-more-btn {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--lightblack);
    font-family: "Montserrat", sans-serif;
    transition: all .3s ease-in-out;
}

.slider-bottom .read-more-btn:hover {
    color: var(--lightgreen);
}

.testimonials-wrapper .slick-prev {
    bottom: -76px;
    left: 45%;
}

.testimonials-wrapper .slick-next {
    bottom: -74px;
    left: 55%;
}

.testimonials-wrapper .slick-dots {
    bottom: -60px;
}

.testimonials-sec-title h2 {
    color: var(--white);
}



/* AB 03-09-25 */
.banner-image.ppc-banner-img {
    width: 100%;
}

.certificates {
    margin: 85px 0 0;
}

.certificates h2 {
    text-align: center;
    margin: 0 0 30px;
}

.certificates-wrap {
    gap: 30px 0;
}

.certificates-col:nth-child(odd) {
    margin-top: 114px;
}

.certificates-col img {
    filter: drop-shadow(0px 4px 44px rgba(0, 0, 0, 0.1));
    margin: 0 auto;
}


.free-quote {
    margin: 85px 0 0;
}

.free-quote h2 {
    margin: 0 0 45px;
}

.free-quote-flex {
    align-items: flex-end;
}

.free-quote-image {
    margin-left: -54px;
}

.free-quote-form {
    padding-left: 42px;
    margin: 0 0 70px;
}

.free-quote-form .quary-from-btn-sec {
    justify-content: flex-start;
    margin: 5px 0 0;
}




/* social media optimization 08-09-25*/



.social-media-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(89.26deg, rgba(32, 32, 32, 0.69) 46.74%, rgba(32, 32, 32, 0) 93.43%);
}

.social-text {
    position: relative;
}


.social-media-banner {
    width: 100%;
    height: 100%;
    background-image: url(../img/social-media-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 300px 0 130px;
}

.half-img-half-text {
    padding-top: 95px;
}

.half-text span {
    font-weight: 700;
    font-size: var(--font30);
    line-height: 45px;
    color: var(--blue);
}

.half-text p {
    font-weight: 700;
    font-size: var(--font20);
    line-height: 45px;
    color: var(--blue);
}

.half-text-para {
    margin-bottom: 40px;
}

.half-text-para p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: var(--black);
    padding-top: 27px;
}

.half-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.half-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: -34px;
}

.increase-brand-awareness {
    background-color: #FAFAFA;
    padding: 78px 0 61px;
}

.increase-brand-awareness-title {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.increase-brand-awareness-title h2 {
    max-width: 696px;
    padding-bottom: 32px;
}

.increase-brand-awareness-title p {
    max-width: 1004px;
}

.increase-brand-awareness-title p,
.increase-brand-awareness-box-inner p,
.freelancer-hireing-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--black);
}

.increase-brand-awareness-box-inner h3 {
    font-weight: 600;
    font-size: var(--font20);
    line-height: 28px;
    color: var(--black);
    padding-bottom: 22px;
}

.increase-brand-awareness-box {
    padding-top: 48px;
}

.increase-brand-awareness-row {
    gap: 24px 0;
}

.increase-brand-awareness-box-inner {
    height: 100%;
    background-color: var(--white);
    border: 1px solid #E8E8E8;
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    padding: 32px 31px 34px 24px;
}

.freelancer-services {
    background-color: #002811;
    padding: 71px 0;
}

.freelancer-services-title h2 {
    max-width: 667px;
    color: var(--white);
}

.freelancer-services-title a {
    font-weight: 700;
    font-size: var(--font29);
    line-height: 33px;
    color: var(--yellow);
}

.freelancer-services-title p {
    font-weight: 400;
    font-size: 17px;
    line-height: 33px;
    color: var(--white);
    padding-top: 15px;
}

.freelancer-hireing {
    padding: 80px 0 166px;
    background-color: #F5F5F5;
}

.freelancer-hireing-img {
    position: relative;
}

.freelancer-hireing-row {
    align-items: center;
}

.freelancer-hireing-img img {
    border-radius: 21px;
}

.freelancer-hireing-small-img {
    position: absolute;
    bottom: -89px;
    right: -31px;
}

.freelancer-hireing-text p {
    line-height: 25px;
    padding: 28px 0;
}

.freelancer-hireing-text {
    margin-left: 50px;
}

.freelancer-hireing-text ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 12px;
}

.hireing-list-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #117D3E;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.hireing-list-icon i {
    font-size: 12px;
}

.freelancer-hireing-text ul li p {
    padding: 0;
}

.Benefits-of-freelancer {
    background-color: #FAFAFA;
    padding: 90px 0;
}

.Benefits-of-freelancer-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    padding-bottom: 30px;
}

.Benefits-of-freelancer-box {
    margin-top: 22px;
}

.Benefits-of-freelancer-box-inner {
    height: 100%;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E8E8;
    padding: 45px 12px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.Benefits-text h3 {
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
    color: var(--black);
    padding: 36px 0px;
}

.Benefits-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--black);
}

.Benefits-of-freelancer-row {
    gap: 24px 0;
}


/* app development 09/09/25 */


.app-developer-banner {
    background-image: url(../img/app-development-bg.png);
}

.app-dev-half-para p {
    padding: 0;
}

.app-dev-half-para p:first-child {
    padding-top: 33px;
}

.app-freelancer-title h2 {
    max-width: 1021px;
}

.mob-dev {
    padding: 80px 0;
}

.mob-dev-title h2 {
    max-width: 838px;
}

.mob-dev-box-bg {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(232, 232, 232, 1);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.mob-dev-box-wrap h4 {
    line-height: 1.5rem;
}

.mob-title h4 {
    max-width: 207px;
}


.hire-dev {
    background-color: #002811;
    padding: 68px 0 88px;
}

.color-wh h2 {
    color: var(--white);
    padding-top: 0;
}

.hire-dev-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625rem;
    color: var(--white);
    padding-bottom: 30px;
}

.btn-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.mob-partners span {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.563rem;
}

.mob-partners {
    max-width: 650px;
}

.mob-partners-list ul li {
    align-items: start;
}

.mob-partners-icon {
    margin-top: 5px;
}

.mob-partners-bg {
    padding: 80px 0;
}

.contact-us-bg {
    background-color: #117D3E;
    padding: 55px 30px;
    border-radius: 20px;
}

.contact-us-title p {
    font-weight: 700;
    font-size: var(--font22);
    line-height: 2.938rem;
    color: var(--white);
}

.contact-us-title a {
    font-weight: 700;
    font-size: var(--font42);
    line-height: 2.938rem;
    color: #FFC107;
}


.contact-us-para p {
    max-width: 985px;
    padding-top: 30px;
    color: var(--white);
}


/* web development */

.web-developer-banner {
    background-image: url(../img/web-dev-bg.png);
}

.web-dev-half-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.web-dev-half-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
}

.web-dev-half-text h2 {
    max-width: 640px;
}

.web-contact-us {
    margin-top: 100px;
}

.web-technology {
    padding-top: 80px;
}

.web-technology-title h2 {
    max-width: 927px;
    padding-top: 0;
}

.web-technology-box-img img {
    margin-right: 20px;
}

.web-wrap {
    flex-wrap: nowrap;
}

.web-dev {
    background-color: #FAFAFA;
    padding: 90px 0;
}

.web-dev-title h2 {
    max-width: 915px;
    padding: 0;
}

.web-dev-title p {
    max-width: 1051px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding-top: 30px;
    color: var(--black);
}

.web-dev-half-text-img {
    max-width: 1051px;
    padding-top: 36px;
    margin: 0 auto;
}

.web-dev-width {
    max-width: 477px;
}


/* web design 10/09/25---------------------> */

.ppc-banner {
    background-image: url(../img/ppc-banner-1.png);
}

.web-design-banner {
    background-image: url(../img/web-design-bg.png);
}

.web-design-right-half-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.web-design-right-half-img img {
    max-width: 631px;
    position: absolute;
    left: -94px;
    top: 50%;
    transform: translate(0, -50%);
}


.web-design-technology {
    background-color: #FAFAFA;
}

.web-design-strategies-title h2 {
    max-width: 810px;
}

.web-strategies-img {
    position: relative;
}

.youtube-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.web-strategies-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: var(--black);
}

.web-design-strategies {
    padding: 96px 0 84px;
}

.strategies-row {
    align-items: center;
}


/* seo services */

.seo-services-banner {
    background-image: url(../img/seo-services-bg.png);
}

.seo-half-text {
    display: flex;
    flex-wrap: wrap;
}

.seo-half-text h2 {
    max-width: 708px;
    padding-bottom: 15px;
}

.seo-services-half-para span {
    max-width: 689px;
    font-weight: 600;
    font-size: var(--font18);
    line-height: 24px;
    display: block;
    padding-top: 15px;
    color: var(--black);
}

.seo-services-half-para p {
    padding: 23px 0 0;
}

.seo-freelancer-title h2 {
    max-width: 900px;
}

.seo-contact-us-para {
    margin-top: 30px;
}

.seo-contact-us-para p {
    max-width: 1085px;
    padding: 0 0 10px;
}

.seo-contact-us-para span {
    max-width: 1046px;
    font-weight: 800;
    font-size: var(--font21);
    line-height: 26px;
    color: var(--white);
    display: block;
    padding-top: 40px;
}

.seo-customers-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    display: block;
    padding-top: 31px;
}

.seo-customers-text p {
    padding-top: 21px;
}

.seo-freelancer {
    padding: 90px 0 57px;
}

.seo-freelancer-half-img {
    position: relative;
}

.seo-freelancer-half-img img {
    position: absolute;
    top: 170px;
    left: 0;
}

.seo-digital-marketer {
    padding: 154px 0 72px;
}

.seo-digital-marketer-title h2 {
    max-width: 832px;
    padding-bottom: 47px;
}

.seo-digital-marketer-width {
    max-width: 1152px;
    margin: 0 auto;
}

.seo-digital-marketer-left-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.seo-digital-marketer-right-text ol li,
.seo-digital-marketer-right-text ol li a {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: var(--black);
}

.seo-digital-marketer-right-text ol li a{
    text-decoration: underline;
}

.seo-digital-marketer-right-text {
    margin-left: 52px;
}

.seo-digital-marketer-left-img,
.seo-dogital-marketer-left-img img {
    height: 100%;
    object-fit: cover;
}

.seo-link-building {
    padding: 75px 0 90px;
    background-color: #FAFAFA;
}

.seo-services-wrap {
    flex-direction: column;
    padding-bottom: 21px;
}

.link-building-box-img img {
    margin-bottom: 31px;
}

.link-center p {
    text-align: center;
}




/* 11.09.2025 */

.contact-us-banner {
    background-image: url(../img/contact-us-banner.png);
}

.get-in-touch {
    padding-top: 62px;
}

.get-in-touch-heading h2 {
    padding:0 0 30px;
}

.get-in-touch-heading p {
    max-width: 1174px;
    padding-bottom: 49px;
}

.get-in-touch-text-box span {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: var(--black);
    padding-bottom: 11px;
}

.get-in-touch-text-box p {
    font-weight: 700;
    font-size: var(--font25);
    line-height: 27px;
    color: var(--black);
}

.get-in-box {
    height: 100%;
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E8E8;
    background-color: var(--white);
    padding: 31px 0 31px 18px;
}

.get-in-box a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.get-in-touch-img-box img{
    margin-right: 6px;
}

.about-banner{
    background-image: url(../img/about-bg.png);
}

.our-strength h2{
    padding-bottom:33px ;
}


.about-title a{
    padding-bottom: 30px;
}

.about-para p{
    padding:0 0 10px;
}

.about-width p{
    max-width: 586px;
}

.about-half-text-half-img{
    max-width: 1164px;
}

.about-row{
    align-items: center;
}

.increase-revenue-sec{
    padding: 50px 0px 0px;
    background-color: #FAFAFA;
}

.increase-revenue-title h4{
font-weight: 700;
font-size: var(--font28);
line-height: 1.75rem;
padding-left: 12px;
}

.increase-revenue-box{
    padding: 19px 32px 62px;
}

.increase-revenue-box p{
    color: var(--black);
    line-height: 1.5rem;
}

.revenue-box-inner{
    margin-bottom: 52px;
}

.increase-revenue-half-img{
    bottom: -26px;
}

.hireing-list-icon.mob-partners-icon::before {
    content: "\f105"; /* Unicode for fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* needed for solid icons */
    font-size: 14px;
    color: #ffffff;
    display: inline-block;
    position: relative;
    top: -3px;  /* adjust value until looks good */
}

.intl-tel-input {width:100%;}
