/*
Theme Name: Buzzful Media
Theme URI: https://technologywisdom.com/
Author: TW Team
Author URI: https://technologywisdom.com/
Description: A custom theme for the Buzzful Media website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Buzzful Media
Tags: one-column, two-columns, right-sidebar, custom-background, custom-logo, featured-images
*/

@font-face {
    font-family: 'PP Mori Semi-Bold';
    src: url("assets/fonts/pp-mori/PPMori-SemiBold.otf");
}

@font-face {
    font-family: 'PP Mori Regular';
    src: url("assets/fonts/pp-mori/PPMori-Regular.otf");
}

@font-face {
    font-family: 'PP Mori Extra-Light';
    src: url("assets/fonts/pp-mori/PPMori-Extralight.otf");
}

section.Home-banner .featured-employee {
    position: relative;
    margin-top: -100px;
}

section.Home-banner .featured-employee .emp {
    position: absolute;
}

section.Home-banner .featured-employee .emp img.emp-img {
    width: 80px;
}

section.Home-banner .featured-employee .emp .location-tooltip {
    position: relative;
}

section.Home-banner .featured-employee .emp .location-tooltip .map-arrow img {
    width: 30px;
}

section.Home-banner .featured-employee .emp .location-tooltip .map-arrow {
    position: absolute;
    left: 11px;
    top: 61px;
}

section.Home-banner .featured-employee .emp .location-tooltip .tooltip-text {
    display: inline-flex;
    background: #1E1E1E;
    padding: 10px 15px;
    border-radius: 15px;
    border: 1px solid orange;
    align-items: center;
    text-align: center;
    position: absolute;
    left: -34px;
    width: 267px;
}

section.Home-banner .featured-employee .emp .location-tooltip .tooltip-text h6 {
    margin: 0px 10px;
    color: white;
    font-weight: 500;
}

section.Home-banner .featured-employee .emp .location-tooltip .tooltip-text img {
    width: 36px
}

section.Home-banner .featured-employee .location-tooltip {
    position: absolute;
    left: 55px;
    top: -180px;
    /* Adjust based on your layout */
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
}

section.Home-banner .featured-employee .emp:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

section.Home-banner .featured-employee .emp:nth-child(1) {
    bottom: 300px;
    left: -18px;
}

section.Home-banner .featured-employee .emp:nth-child(2) {
    bottom: 380px;
    left: 142px;
    z-index: 1;
}

section.Home-banner .featured-employee .emp:nth-child(3) {
    bottom: 380px;
    right: 159px;
    z-index: 1;
}

section.Home-banner .featured-employee .emp:nth-child(4) {
    bottom: 300px;
    right: -18px;
}

section.Home-banner .social-icons .icon {
    position: absolute;
}

section.Home-banner .social-icons .icon img {
    width: 80px;
}

section.Home-banner .social-icons .icon:nth-child(1) {
    bottom: 10px;
    left: 309px;
}

section.Home-banner .social-icons .icon:nth-child(2) {
    bottom: 85px;
    left: 468px;
}

section.Home-banner .social-icons .icon:nth-child(3) {
    bottom: 160px;
    left: 625px;
}

section.Home-banner .social-icons .icon:nth-child(4) {
    bottom: 10px;
    left: 639px;
}

section.Home-banner .social-icons .icon:nth-child(5) {
    bottom: 85px;
    right: 477px;
}

section.Home-banner .social-icons .icon:nth-child(6) {
    bottom: 10px;
    right: 304px;
}

/*Map Styling Start*/
section.global-expertise .map {
    position: relative;
}

section.global-expertise .world-map {
    width: 100%;
    /* Adjust the size of your map image */
    height: auto;
}

section.global-expertise .team-member {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/map-location-point.png');
    position: absolute;
    width: 16px;
    /* Adjust size as needed */
    height: 16px;
    border-radius: 50%;
    background-size: 100%;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
    animation: pulse 1.5s infinite;
}

section.global-expertise .team-member:hover {
    animation: unset;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

section.global-expertise .location-tooltip {
    position: absolute;
    left: -19px;
    bottom: 8px;
    z-index: 1;
    /*transform: translateX(-50%);*/
    /*opacity: 0;*/
    /*transition: opacity 0.3s;*/
    /*white-space: nowrap;*/
    /*animation: unset !important;*/
}

section.global-expertise .team-member:hover .location-tooltip {
    opacity: 1;
    display: block !important;
}

section.global-expertise .location-tooltip .tooltip-text {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
    white-space: nowrap;
    width: max-content;
    align-items: center;
    border-top: 1px solid #ee7f1aa6;
    border-right: 1px solid #ee7f1aa6;
    border-bottom: 1px solid #faff05a6;
    border-left: 1px solid #faff05a6;
    display: flex;
}

section.global-expertise .location-tooltip .tooltip-text img {
    width: 45px !important;
    margin-right: 10px;
}

section.global-expertise .location-tooltip .tooltip-text h6 {
    margin-right: 8px;
    margin-bottom: 0px;
}

section.global-expertise .location-tooltip .tooltip-text p {
    font-family: 'PP Mori Extra-Light';
}

section.global-expertise .location-tooltip .map-arrow img {
    width: 30px !important;
    margin-left: 10px;
}

section.global-expertise .team-member.global {
    width: 10px;
    height: 10px;
}

/* maryland */
section.global-expertise #chris {
    top: 155px;
    left: 167px;
}

/* Los-Angles */
section.global-expertise #juan {
    top: 150px;
    left: 103px;
}

/* miami */
section.global-expertise #haley {
    top: 183px;
    left: 166px;
}

/* austin */
section.global-expertise #joanna {
    top: 163px;
    left: 136px;
}

/* london */
section.global-expertise #london {
    top: 130px;
    left: 314px;
}

/* galicia */
section.global-expertise #galicia {
    top: 155px;
    left: 306px
}

/* nairobi */
section.global-expertise #nairobi {
    top: 241px;
    left: 386px
}

/* toronto */
section.global-expertise #toronto {
    top: 137px;
    left: 178px
}

/* berlin */
section.global-expertise #berlin {
    top: 131px;
    left: 339px
}

/*Map Styling End*/

html {
    margin: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'PP Mori Regular';
    background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PP Mori Semi-Bold';
}

p,
span,
a {
    color: #D5D5D5;
}

p,
dl,
ol,
ul {
    margin-bottom: 0px;
}

a:hover {
    opacity: 0.7;
}



/* Header CSS Start */
header.site-header {
    width: 100%;
}

header.site-header .top-menu {
    padding: 30px 0px;
    transition: all ease 0.3s;
}

header.site-header .top-menu .logo-and-menu-items-area a.menu-logo-link {
    width: 250px;
}

header.site-header .top-menu .logo-and-menu-items-area a.menu-logo-link img {
    width: 100%;
}

header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.7;
}

header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item a:hover {
    opacity: 1;
}

header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.current-menu-item a {
    opacity: 1;
    background-image: url('assets/images/active-menu-bottom-line.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    padding: 7px 0px;
}



header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.current-menu-item.menu-item-27 a {
    opacity: 1;
    background-image: unset;
}

header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a {
    opacity: 1;
    padding: 15px 30px 15px 30px;
    border-radius: 30px;
    margin-left: 70px;
    border: 1px solid white;
    transition: transform 0.6s ease;
}


header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 a {
    background-color: #EE7F1A;
    opacity: 1;
    padding: 15px 30px 15px 30px;
    border-radius: 30px;
    /*background-image: url(assets/images/header-phone-icon.png);*/
    background-position: center left 20px;
    background-repeat: no-repeat;
    /*background-size: 22px;*/
    margin-left: 20px;
    transition: transform 0.6s ease;
}


header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a:hover {
    box-shadow: 0px 1px 14px 1px #ffefe0;
    transform: scale(1.03);
}

header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 a:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
}


.hidden-service {
    display: none;
}


/* Home Page CSS Start */
section.Home-banner {
    background-position: center bottom;
    background-size: 95%;
    background-repeat: no-repeat;
    padding: 200px 0px 0px 0px;
    overflow-x: hidden;
}

section.Home-banner .content-area {
    color: white;
    text-align: center;
    z-index: 1;
}

section.Home-banner .content-area .the-content h1 {
    font-size: 70px;
}

section.Home-banner .content-area .the-content h1 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    height: 100%;
    display: block;
}

sup {
    font-size: 15px;
    top: -26px;
    color: #F4A300;
    font-weight: 700;
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

section.Home-banner .content-area .the-content p {
    color: #D3D3D3;
}

section.Home-banner .content-area .the-content a {
    padding: 18px 40px 15px;
    background-color: black;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid white;
    text-decoration: none;
    color: white;
    margin-top: 30px;
    line-height: 1;
    font-size: 18px;
    transition: transform 0.6s ease;
}

section.Home-banner .content-area .the-content a:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #ffefe0;
    opacity: 1;
}

section.Home-banner .content-area .the-content a:last-child {
    background-color: #EE7F1A;
    border: 1px solid transparent;
    transition: transform 0.6s ease;

}

section.Home-banner .content-area .the-content a:last-child:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
    opacity: 1;
}




/* Hero Stats Counter Section CSS Start */
section.hero-stats-counters {
    margin: 80px 0px;
    color: #FFFFFF;
}


/* section chase impact start */
section.chase-impact {
    color: white;
    margin: 80px 0px;
}

section.chase-impact .chase-impact-content {
    text-align: center;
    margin-bottom: 60px;
}

section.chase-impact .chase-impact-content h2 {
    font-size: 46px;
    line-height: 62px;
}

section.chase-impact .chase-impact-content h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.chase-impact .stat-item {
    text-align: center;
    margin: 20px 0px;
}

section.chase-impact .stat-item.middle-col.animate {
    border-left: 1px solid #FFFFFF80;
    border-right: 1px solid #FFFFFF80;
}

section.chase-impact .stat-item .stat-number {
    font-size: 32px;
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
    margin-bottom: 5px;
    font-family: 'PP Mori Semi-Bold';
}

section.chase-impact .stat-item .stat-label {
    font-size: 15px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
}

section.hero-stats-counters .the-content-area .the-content .the-stat h3 {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /*height: 100%;*/
    margin-top: 0px;
}

section.hero-stats-counters .the-content-area .the-content .the-stat p {
    font-size: 14px;
    color: #D3D3D3;
}




/* With or Without Us Section CSS Start */
section.with-without-buzzfull {
    margin: 80px 0px;
}

section.with-without-buzzfull .the-content-area {
    padding: 0px 80px;
    color: white;
}

section.with-without-buzzfull .the-content-area .accordion {
    /*background-color: #00000085;*/
    /*border-radius: 30px;*/
    /*border-right: 1px solid #EE7F1A;*/
    /*border-bottom: 1px solid #EE7F1A;*/
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/with-without-border.png');
    background-position: center;
    background-size: 100% 100%;
    padding: 40px;
}

section.with-without-buzzfull .the-content-area .accordion .the-tabs-area {
    background-color: white;
    width: fit-content;
    padding: 5px;
    border-radius: 30px;
}

section.with-without-buzzfull .the-content-area .accordion .the-tabs-area .the-tab {
    padding: 10px 30px;
    text-decoration: none;
    background-color: #1E1E1E;
    color: white;
    border-radius: 30px;

}

section.with-without-buzzfull .the-content-area .accordion .the-tabs-area .the-tab.collapsed {
    color: black;
    background-color: white;
}

section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings {
    margin-top: 20px;
}

section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings h2 {
    font-size: 50px;
    Text-transform: capitalize;
}

section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
}

section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings sup {
    top: -27px;
    font-size: 15px;
    background: linear-gradient(to right, #000000 40%, #000000);
    -webkit-text-fill-color: unset;
    color: white;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area {
    position: relative;
    padding-left: 30px;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 0.5px;
    height: 80%;
    background: linear-gradient(to bottom, #F7DE0A, #F7DE0A);
    opacity: 0.3;
    transform: translateY(-50%);
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content {
    height: 300px;
    overflow: auto;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content h6 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 3px;
    margin-top: 10px;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content h6:first-child {
    margin-top: 0px;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content p {
    margin-bottom: 8px;
    color: #D3D3D3;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .learn-more a {
    padding: 14px 20px;
    background-color: #1E1E1E;
    text-decoration: none;
    display: inline-block;
    border-radius: 13px;
    color: white;
    transition: transform 0.6s ease;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .learn-more a:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 14px 1px #958787a8;
    opacity: 1;
}

section.with-without-buzzfull .the-content-area .accordion .tab-content-area .learn-more a img {
    margin-left: 20px;
    width: 20px;
}




/* Our Expertise CSS Start */
section.our-expertise {
    color: white;
    margin: 80px 0px;
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/our-expertise-bg.png');
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center bottom;
    padding-bottom: 60px;
}

section.our-expertise .video {
    position: relative;
}

section.our-expertise .video .video-control {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

section.our-expertise .video .video-control button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

section.our-expertise .video .video-control button img {
    width: 100px;
}

section.our-expertise .video .video-control .pause-video {
    display: none;
}

section.our-expertise h2 {
    font-size: 46px;
    line-height: 50px;
}

section.our-expertise p {
    font-size: 20px;
    margin-bottom: 10px;
    color: #D3D3D3;
}

section.our-expertise p:nth-child(1) {
    /*margin-bottom: 0px;*/
    font-size: 22px;
    font-family: "PP Mori Extra-Light";
}

section.our-expertise h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.our-expertise .learn-about-btn {
    margin-top: 40px;
}

section.our-expertise .learn-about-btn a {
    font-family: 'PP Mori Semi-Bold';
    padding: 18px 40px 17px;
    display: block;
    width: fit-content;
    background-color: #EE7F1A;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 1;
    transition: transform 0.6s ease;
    line-height: normal;
}

section.our-expertise .learn-about-btn a:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
}

/*Our Expertise CSS End*/


/*Our Services Start*/

section.our-services {
    color: white;
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/services-bg.png');
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center bottom;
    padding-bottom: 100px;
    margin: 80px 0px;
}

section.our-services p:nth-child(1) {
    /*margin-bottom: 0px;*/
    font-size: 22px;
    font-family: "PP Mori Extra-Light";
}

section.our-services h2 {
    font-size: 46px;
    line-height: 50px;
}

section.our-services h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.our-services .margin-bottom {
    margin-bottom: 80px;
}

section.our-services .margin-top {
    margin-top: 80px;
}

section.our-services .service {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.6s ease;
    padding: 20px;
}

section.our-services .service:hover {
    transform: scale(1.03);
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/services-border-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

section.our-services .service .service-logo {
    padding: 15px;
    border-radius: 10px;
    border-right: 1px solid #FF7A00;
    border-bottom: 1px solid #FF7A00;
    background-color: #1E1E1E;
    width: fit-content;
    margin-bottom: 20px;
}

section.our-services .service .service-logo img {
    width: 40px;
}

section.our-services .service .service-content h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

section.our-services .service .service-content p {
    margin-bottom: 20px;
    color: #D3D3D3;
}

section.our-services .service .learn-btn a {
    margin-top: auto;
    color: #FF7A00;
    text-decoration: none;
}

section.our-services .service .learn-btn a img {
    width: 14px;
    margin-left: 5px;
}

section.our-services .view-all-services {
    margin-top: 20px;
}

section.our-services .view-all-services a {
    background-color: #FF7A00;
    text-decoration: none;
    padding: 18px 40px 17px;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.6s ease;
    line-height: normal;
}

section.our-services .view-all-services a:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
    opacity: 1;
}
/*Our Services End*/


/*Global Expertise CSS Start*/
section.global-expertise {
    color: white;
    margin: 80px 0px;
}

section.global-expertise .global-expertise-content p {
    font-size: 18px;
}

section.global-expertise .global-expertise-content h2 {
    font-size: 40px;
    line-height: 50px;
}

section.global-expertise .global-expertise-content h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.global-expertise .global-expertise-content h3 {
    color: #EE7F1A;
}

section.global-expertise .global-expertise-content p:nth-child(1) {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "PP Mori Extra-Light";
}



section.global-expertise .global-expertise-content .text-size p {
    font-size: 15px;
    color: #D3D3D3;
}



section.global-expertise .global-expertise-content h3 {
    font-size: 40px;
}

section.global-expertise .map-expertise img {
    width: 100%;
}

/*OUR PROCESS Start*/
section.our-process {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/our-process-bg.png');
    background-position: center bottom;
    background-size: 95%;
    background-repeat: no-repeat;
    margin: 80px 0px;
    padding-bottom: 80px;
}

section.our-process .navigating-card {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/join.png');
    background-position: top 250px left 340px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-color: unset;
    color: white;
    margin: 100px 0px 20px;
}

section.our-process .navigating-card .our-process-content {
    text-align: center;
}

section.our-process .navigating-card .our-process-content h2 {
    font-size: 50px;
    line-height: 50px;
}

section.our-process .navigating-card .our-process-content p:nth-child(1) {
    font-size: 22px;
    padding-bottom: 10px;
    font-family: "PP Mori Extra-Light";
}

section.our-process .navigating-card .our-process-content h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.our-process .navigating-card .our-process-content img {
    width: 90%;
    padding-bottom: 20px;
}

section.our-process .navigating-card .our-process-content .single-process-content {
    padding: 10px;
}

section.our-process .navigating-card .our-process-content .single-process-content h3 {
    font-size: 26px;
}

section.our-process .navigating-card .our-process-content .single-process-content p {
    font-size: 16px;
    color: #D3D3D3;
    margin-bottom: 20px;
}

section.our-process .navigating-card .our-process-content .single-process-content a {
    text-decoration: none;
    color: #FF7A00;
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/with-without-learn-more.png');
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: center right;
    padding-right: 25px;
}

section.our-process .book-call-heading {
    text-align: center;
    margin-bottom: 25px;
}

section.our-process .get-start-section {
    display: flex;
    justify-content: center;
    position: relative;
}

section.our-process .get-start-text {
    text-align: center;
    width: 60%;
}

section.our-process .get-start-text p:first-of-type {
    font-size: 16px;
    margin-bottom: 30px;
}


section.our-process .get-start-text a {
    background-color: #FF7A00;
    text-decoration: none;
    padding: 18px 40px 17px;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    transition: transform 0.6s ease;
    display: inline-block;
    line-height: normal;
}

section.our-process .get-start-text a:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
    opacity: 1;
}

/*OUR PROCESS End*/

/*Global Expertise CSS Start*/

section.service-tier {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/service-tier-bg.png');
    background-position: center bottom;
    background-size: 95%;
    background-repeat: no-repeat;
    margin: 80px 0px;
    color: white;
    padding-bottom: 50px;
}

section.service-tier .monthly-service-tier {
    display: flex;
    justify-content: center;
}

section.service-tier button {
    display: none;
}

section.service-tier .service-tier-heading {
    text-align: center;
    width: 60%;
}

section.service-tier .service-tier-heading p:nth-child(1) {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "PP Mori Extra-Light";
}

section.service-tier .service-tier-heading h2 {
    font-size: 50px;
}

section.service-tier .service-tier-heading h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.service-tier .service-tier-heading p {
    font-size: 18px;
}

section.service-tier .action-btn {
    margin: 50px 0px;
}

section.service-tier .action-btn a.refer-frnd {
    font-family: 'PP Mori Semi-Bold';
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #D5D5D5;
    padding: 18px 40px 17px;
    font-size: 18px;
    line-height: normal;
    transition: transform 0.6s ease;
}

section.service-tier .action-btn a.refer-frnd:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #ffefe0;
    opacity: 1;
}

section.service-tier .action-btn a.intro-call {
    font-family: 'PP Mori Semi-Bold';
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    padding: 18px 40px 17px;
    background-color: #EE7F1A;
    margin-left: 20px;
    font-size: 18px;
    transition: transform 0.6s ease;
    line-height: normal;
    border: 1px solid #EE7F1A;
    color: white;
}

section.service-tier .action-btn a.intro-call:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 14px 1px #EE7F1A;
    opacity: 1;
}

section.service-tier a.subscription {
    color: #FF7A00;
}

section.service-tier .services-plan {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/serivice-plan.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 30px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-image 0.5s ease-in-out, background-size 0.5s ease-in-out, transform 0.6s ease;
    cursor: pointer;
}

section.service-tier .services-plan.active {
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/service-plan-hover.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0px 0px 30px;
}

section.service-tier .services-plan.active .recomended {
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(86.53deg, #EE7F1A -2.49%, #FAFF05 51.36%);

}

section.service-tier .services-plan.active .recomended span {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

section.service-tier .services-plan.active .plan-content {
    padding: 30px 30px 0px;
}

section.service-tier .services-plan h5 {
    margin-top: 20px;
}

section.service-tier .services-plan:hover {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/service-plan-hover.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

section.service-tier .services-plan h3 {
    font-size: 38px;
    text-transform: capitalize;
    margin-top: 0px;
}

section.service-tier .services-plan p:nth-of-type(1) {
    /*min-height: 100px;*/
    margin-bottom: 20px;
    color: white;
}


section.service-tier .services-plan h4 {
    margin: 20px 0px 30px;
    font-size: 34px;
    display: none;
}

section.service-tier .services-plan h4 span:nth-child(1) {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
    font-size: 34px;
}

section.service-tier .services-plan h4 span {
    font-size: 15px;
}

section.service-tier .services-plan h5 {
    color: #F7DE0A;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

section.service-tier .ppc-line h5 {
    color: #FF7A00;
}

section.service-tier .services-plan ul {
    padding-left: 20px;
    list-style: none;
    margin-bottom: 20px;
}

section.service-tier .services-plan ul li {
    font-size: 14px;
    color: #D5D5D5;
    margin-bottom: 10px;
    position: relative;
}

section.service-tier .services-plan ul li:before {
    content: '';
    position: absolute;
    left: -18px;
    top: 5px;
    width: 12px;
    height: 9px;
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/list-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

section.service-tier .services-plan .purchase-btn {
    text-align: center;
    margin-top: 50px;
}

section.service-tier .services-plan .purchase-btn a {
    padding: 14px 50px;
    border-radius: 50px;
    text-decoration: none;
    background-color: #1E1E1E;
    display: inline-block;
    color: white;
    transition: background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
    line-height: 1;
}

section.service-tier .services-plan.active .purchase-btn a {
    background-color: #FF7A00;
    transition: background-image 0.5s ease-in-out, background-size 0.5s ease-in-out, transform 0.6s ease;
}

section.service-tier .services-plan:hover .purchase-btn a {
    background-color: #FF7A00;
    opacity: 1;
    box-shadow: 0px 1px 14px 1px #EE7F1A;
    transform: scale(1.03);

}

/*Global Expertise CSS End*/



/*HomePage BLOG CSS Start*/

section.our-blog {
    margin: 80px 0px;
    color: white;
}

section.our-blog .homePage-blogs .animation-block {
    display: block;
    transition: transform 0.6s ease;
}

section.our-blog .homePage-blogs .animation-block:hover {
    transform: scale(1.03);
}

section.our-blog .homePage-blogs h2 {
    font-size: 50px;
}

section.our-blog .homePage-blogs p {
    font-size: 18px;
    color: #D3D3D3;
}

section.our-blog .homePage-blogs h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.our-blog .homePage-blogs .grid_img img {
    width: 100%;
    border-radius: 25px;
}

section.our-blog .blog-part .grid_img img {
    height: 244px;
    object-fit: cover;
}

section.our-blog .homePage-blogs .grid_content {
    padding: 20px;
}

section.our-blog .homePage-blogs .grid_content h3 {
    font-size: 24px;
}

section.our-blog .homePage-blogs .grid_img a:hover {
    opacity: 1;
}

section.our-blog .homePage-blogs .grid_content h3 a {
    color: white;
    text-decoration: none;
}

section.our-blog .homePage-blogs .grid_content h3 a:hover {
    opacity: 1;
}

section.our-blog .homePage-blogs .grid_content p {
    font-siZe: 15px;
    margin-bottom: 10px;
    color: #D3D3D3;
}

section.our-blog .homePage-blogs .grid_content p.date {
    color: #F7DE0A;
}

section.our-blog .homePage-blogs .grid_content .text-end img {
    width: 40px;
}

section.our-blog .homePage-blogs a.all-blogs-btn {
    text-decoration: none;
    color: white;
    background-color: #FF7A00;
    border-radius: 30px;
    padding: 18px 40px 17px;
    font-size: 18px;
    margin: 10px 0px;
    transition: transform 0.6s ease;
    display: inline-block;
    line-height: normal;
}

section.our-blog .homePage-blogs a.all-blogs-btn:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
    opacity: 1;
}

/*HomePage BLOG CSS End*/


/*FAQS Page Style Start*/

section.faq-banner {
    margin: 80px 0px;
    color: white;
}

section.faq-banner .banner-content {
    text-align: center;
    padding: 0px 20px;
}

section.faq-banner .banner-content h1 {
    font-size: 66px;
    text-transform: capitalize;
}

section.faq-banner .banner-content h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.faq-banner .banner-content p {
    font-size: 20px;
}


/*FAQS Page Style End*/


/*FAQS Start*/

section.faq .faq-heading {
    text-align: center;
    margin-bottom: 60px;
    width: 55%;
}

section.faq .faq-heading h2 {
    color: white;
    font-size: 50px;
    text-transform: capitalize;
}

section.faq .faq-heading h2 span {
    background: linear-gradient(to right, #EE7F1A 40%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.faq .faq-heading p {
    font-size: 18px;
}

section.faq .accordion h3 {
    color: white;
    font-size: 40px;
    margin-top: 80px;
    margin-bottom: 30px;
    text-align: center;
}

section.faq .accordion h3 span {
    background: linear-gradient(to right, #EE7F1A 40%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.faq .accordion .accordion-item {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/faq-close.png') !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background: transparent;
    color: white;
    transition: transform 0.6s ease;
}

section.faq .accordion .accordion-item:hover {
    transform: scale(1.03);
}

section.faq .accordion .accordion-button {
    background-image: unset;
    background: transparent;
    color: white;
    padding: 40px;
}

section.faq .accordion .accordion-button:focus {
    box-shadow: unset;
}

section.faq .accordion .accordion-button::after {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/faq-plus.png');
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 18px;
}

section.faq .accordion .accordion-header button {
    font-size: 25px;
    text-transform: capitalize;
}

section.faq .accordion .accordion-body {
    color: #D5D5D5;
}

section.faq .accordion .accordion-body {
    padding: 0px 40px 40px 40px;
}

section.faq .accordion .accordion-item {
    margin-bottom: 20px;
    border: unset;
    background-color: black;
}

section.faq .accordion .accordion-item.active {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/faq-open.png') !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

section.faq .accordion .accordion-header,
section.faq .accordion .accordion-body {
    background: transparent;
    border: none;
}

section.faq .accordion .accordion-button:not(.collapsed) {
    background-image: unset !important;
    background: transparent;
    /* Inherit the parent background */
    border: none;
    box-shadow: none;
    color: white;
}

section.faq .accordion .accordion-button:not(.collapsed)::after {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/faq-minus.png');
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 18px;
}

section.faq .see-all-questions {
    text-align: center;
    margin-top: 80px;
}

section.faq .see-all-questions a {
    font-family: 'PP Mori Semi-Bold';
    padding: 15px 40px;
    background-color: #EE7F1A;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 1;
    display: inline-block;
    text-transform: capitalize;
}


/*FAQS End*/

/* our_experience_video */
section.our_experience_video_section {
    margin: 80px 0px;
}

section.our_experience_video_section .video {
    /*border-radius: 30px;*/
    /*border-right: 1px solid #EE7F1A;*/
    /*border-bottom: 1px solid #EE7F1A;*/
    display: grid;
    position: relative;
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/video-bg-border.png);
    background-position: center;
    background-size: 100% 100%;
}

section.our_experience_video_section .our_experience_video {
    border-radius: 37px;
    padding: 2px;
    width: 100%;
}

section.our_experience_video_section .video .video-control {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

section.our_experience_video_section .video .video-control button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

section.our_experience_video_section .video .video-control button img {
    width: 100px;
    transition: transform 0.6s ease;
}

section.our_experience_video_section .video .video-control button img:hover {
    transform: scale(1.03);
}

section.our_experience_video_section .video video.playing+.video-control {
    display: none;
}

section.our_experience_video_section .video:hover .video-control,
section.our_experience_video_section .video .video-control:hover {
    display: block;
}


section.our_experience_video_section .video .video-control .pause {
    display: none;
}


/*Contact Us form CSS Start*/


section.contact-us {
    margin: 80px 0px;
    text-align: center;
}

section.contact-us p {
    color: #D5D5D5;
}

section.contact-us .the-content-area {
    padding: 0px 80px;
    color: white;
}

section.contact-us .the-content-area .contact-us-text {
    padding: 0px 120px;
}

section.contact-us .the-content-area .contact-us-text p {
    text-align: center;
}

section.contact-us .the-content-area .contact-us-text .contact-heading {
    display: none;
}

section.contact-us .referee {
    margin-top: 30px;
    margin-bottom: 20px;
}

section.contact-us .referee h2 {
    font-size: 40px;
}

section.contact-us .referee h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p:first-child {
    display: flex;
    align-items: center;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.heading {
    margin: 0px;
}

section.contact-us p {
    text-align: left;
}

section.contact-us .the-content-area .contact-form-border .contact-form .captcha {
    margin-bottom: 20px;
} 

section.contact-us .the-content-area .contact-form-border .contact-form .captcha iframe {
    height: 76px;
    filter: unset;
    border-radius: 0px;
}

section.contact-us .the-content-area .clarity {
    margin-bottom: 30px;
    padding: 0px 50px;
}

section.contact-us .the-content-area .contact-us-text p:nth-child(1) {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "PP Mori Extra-Light";
}

section.contact-us .the-content-area .contact-us-text h2 {
    font-size: 40px;
}

section.contact-us .the-content-area .contact-us-text h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.contact-us .the-content-area .contact-form-border {
    background-color: #00000085;
    border-radius: 20px;
    padding: 50px;
    background-image: url(./assets/images/form-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

section.contact-us .the-content-area .contact-form-border .background {
    background: url(assets/images/contact-form-bee-img.png);
    background-repeat: no-repeat;
    background-position: bottom 105px right;
    background-size: 11%;
}

section.contact-us .the-content-area .contact-form-border .contact-form {
    margin: 30px 0px 0px;
}

section.contact-us .the-content-area .contact-form-border .contact-form input {
    width: 100%;
    background-color: #1E1E1E;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: unset;
}

section.contact-us .the-content-area .contact-form-border .contact-form select {
    width: 100%;
    background-color: #1E1E1E;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('assets/images/contact-select-arrow.png');
    /* Add your custom arrow icon */
    background-repeat: no-repeat;
    background-position: right 20px center;
}

section.contact-us .the-content-area .contact-form-border .contact-form textarea {
    height: 120px;
    width: 100%;
    background-color: #1E1E1E;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: unset;
}


section.contact-us .the-content-area .contact-form-border .contact-form input::placeholder,
section.contact-us .the-content-area .contact-form-border .contact-form textarea::placeholder {
    color: white;
}

section.contact-us .the-content-area .contact-form-border .contact-form input[type="submit"] {
    width: fit-content;
    padding: 14px 40px 13px;
    background-color: #FF7A00;
    font-size: 18px;
    border-radius: 40px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.6s ease;
}

section.contact-us .the-content-area .contact-form-border .contact-form input[type="submit"]:hover {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
}

section.contact-us .the-content-area .contact-form-border .contact-form input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox {
    margin: 15px 0px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
    font-size: 14px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.wpcf7-checkbox {
    margin-right: 10px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.wpcf7-checkbox input:checked {
    accent-color: #e17818;
}

section.contact-us .the-content-area .contact-form-border .contact-form .wpcf7-not-valid-tip {
    text-align: left;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.wpcf7-list-item-label {
    display: none;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.daily {
    color: #EE7F1A;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.heading {
    color: #FF7A00;
    font-size: 20px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p.align {
    margin: 10px 80px 10px 40px;
    font-size: 15px;
}

section.contact-us .the-content-area .contact-form-border .contact-form span.wpcf7-spinner {
    margin: 0px 0px -20px -26px;
}


/*Single post detail style*/
.single .main-content p {
    margin-bottom: 5px;
}

.single h2,
.single h3,
.single h4 {
    margin-top: 30px;
}

/*Contact Us form CSS End*/

/* Footer CSS Start */
footer {
    background-color: black;
}

footer .footer-content {
    padding: 30px 0px;
    color: white;
}

footer .footer-content .company-area .logo-link img.the-logo {
    width: 60%;
}

footer .footer-content .company-area p {
    position: relative;
    padding: 20px 0px;
    color: #D3D3D3;
}

footer .footer-content .company-area p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(to bottom, transparent, #F7DE0A);
}

footer .footer-content .company-area .social-icon {
    text-decoration: none;
}

footer .footer-content .company-area .social-icon img {
    margin-top: 20px;
    width: 41px;
    height: 41px;
}

footer .footer-content .menu-area,
footer .footer-content .resourse-links,
footer .footer-content .contact-us {
    margin-top: 30px;
    position: relative;
}

footer .footer-content .menu-area::before,
footer .footer-content .resourse-links::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    width: 1px;
    height: 65%;
    background: linear-gradient(to bottom, #F7DE0A, #F7DE0A);
    opacity: 0.3;
    transform: translateY(-50%);
}

footer .footer-content ul {
    padding: 0px;
    list-style: none;
}

footer .footer-content ul li {
    margin-bottom: 10px;
}

footer .footer-content ul li a {
    color: #FFFFFF;
    opacity: 0.7;
    text-decoration: none;
}

footer .footer-content ul li a:hover {
    opacity: 1;
}

footer .copyright-area {
    position: relative;
    padding: 20px 0px;
}

footer .copyright-area::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: white;
    opacity: 0.3;
}

footer .copyright-area .copyright-text p {
    opacity: 0.7;
    color: #D3D3D3;
}

footer .copyright-area .terms-privacy a {
    color: #FFFFFF;
    opacity: 0.7;
    text-decoration: none;
    border-right: 1px solid white;
    padding: 0px 10px;
    text-transform: capitalize;
}

footer .copyright-area .terms-privacy a:hover {
    opacity: 0.5;
}

footer .copyright-area .terms-privacy a.privacy-policy {
    border-right: none;
    padding-right: 0px;
}

/*Section Enterprise*/
section.enterprise {
    margin: 80px 0px 50px;
}

section.enterprise .heading-part {
    margin-bottom: 50px;
}

section.enterprise .heading-part h2 {
    color: white;
    font-size: 28px;
    text-align: center;
}

section.enterprise .heading-part p {
    font-size: 14px;
    color: gray;
    text-align: center;
}

section.enterprise .heading-part h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.enterprise .fortunes-card {
    justify-content: center;
}

section.enterprise .fortunes-card .fortune {
    text-align: center;
    background: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/leaves-4.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px 0px 40px;
}

section.enterprise .fortunes-card h3 {
    background: linear-gradient(to right, #EE7F1A 40%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    font-size: 26px;
    line-height: normal;
    margin: 0px;
}

section.enterprise .fortunes-card p {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Partners Logos section Start */
section.our-partners-logos {
    margin: 0px 0px 80px;
     overflow: hidden;
}

section.our-partners-logos .logos {
    display: flex;
    gap: 40px;
    margin-right: 40px;
    animation: scroll 40s linear infinite;
}

section.our-partners-logos .logo-space {
    padding: 25px 0px;
}

section.our-partners-logos hr {
    border-color: #FFFFFF66;
    opacity: 1;
    margin: 0px;
}

section.our-partners-logos .the-headings {
    margin-bottom: 50px;
}

section.our-partners-logos .the-headings .legal-content {
    justify-content: center;
}

section.our-partners-logos .the-headings .legal-content p {
    font-size: 14px;
    color: gray;
}

section.our-partners-logos .the-headings h2 {
    color: white;
    font-size: 28px;
}

/*section.our-partners-logos .the-headings h2 span {*/
/*    background: linear-gradient(to right, #F1A014 40%, #FAFF05);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    color: transparent;*/
/*    position: relative;*/
/*}*/

section.our-partners-logos .logos-container {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

section.our-partners-logos .the-content-area .legal-content {
    margin-top: 50px;
    justify-content: center;
}

section.our-partners-logos .the-content-area .legal-content p {
    text-align: center;
}

section.our-partners-logos .logos {
    display: flex;
    gap: 40px;
    margin-right: 40px;
}

section.our-partners-logos .logos img {
    height: 50px;
    /* Adjust as needed */
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
}


section.our-partners-logos .logos img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Partners Logos section Finish */

/*section contract benifits start*/
/*div.no-contract-benifits {*/
/*    margin: 80px 0px;*/
/*}*/

div.no-contract-benifits .the-content-area ul {
    display: flex;
    justify-content: center;
    padding-top: 22px;
    list-style: none;
    padding-left: 0px;
    align-items: center;
    text-align: center;
}

div.no-contract-benifits .the-content-area ul li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    padding-right: 20px;
    border-right: 1px solid white;
    margin-right: 15px;
    color: #D3D3D3;
    text-transform: capitalize;
}

div.no-contract-benifits .the-content-area ul li:last-child {
    border: unset;
}

div.no-contract-benifits .the-content-area ul li:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 5px;
    width: 17px;
    height: 12px;
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/list-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*Home page five back section styling*/
section.home-buzzful-gives-back {
    margin: 80px 0px;
}

section.home-buzzful-gives-back .the-content {
    text-align: center;
    padding: 0px 25px;
}

section.home-buzzful-gives-back .the-content-area .the-content img {
    max-width: 80%;
    margin-bottom: 20px;
}

section.home-buzzful-gives-back .the-content-area .the-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
}

section.home-buzzful-gives-back .the-content-area .the-content h2 strong {
    color: white;
}

section.home-buzzful-gives-back .the-content-area .the-content h2 span {
    color: white;
}

section.home-buzzful-gives-back .the-content-area .the-content p {
    font-size: 18px;
    margin-bottom: 5px;
    color: #D5D5D5;
}

section.home-buzzful-gives-back .the-content-area .the-content a.bay-button {
    display: inline-block;
    border: 1px solid white;
    padding: 18px 40px 17px;
    border-radius: 30px;
    margin-top: 25px;
    text-decoration: none;
    transition: transform 0.6s;
    line-height: normal;
}

section.home-buzzful-gives-back .the-content-area .the-content a.bay-button:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #ffefe0;
    opacity: 1;
}

/* page About us css start */
section.about_section {
    margin: 80px 0px;
}

.about_section .about-us-banner-area {
    text-align: center;
}

.about_section .container .about-us-banner-area h1 {
    font-size: 66px;
    color: white;
}

.about_section .container .about-us-banner-area h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.about_section .container .about-us-banner-area h1 span::before {
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: -20px;
    width: calc(var(--span-width) + 35px);
    height: calc(var(--span-height) + 17px);
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/cmo-stroke-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about_section .container .about-us-banner-area p {
    font-size: 20px;
}

section.emotive-purpose {
    margin: 80px 0px;
}

hr.mobile-view {
    color: white;
}

section.emotive-purpose .the-content-area .the-video video {
    /*border-right: 1px solid #EE7F1A;*/
    /*border-bottom: 1px solid #EE7F1A;*/
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/emotive-video-bg-border.png);
    background-position: center;
    background-size: 100% 100%;
    border-radius: 60px;
    padding: 4px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.emotive-purpose .the-content-area .the-details {
    margin: auto 0px;
}

section.emotive-purpose .the-content-area .the-details a {
    color: #FF7A00;
}

section.emotive-purpose .the-content-area .the-details ul {
    margin-bottom: 10px;
}

section.emotive-purpose .the-content-area .the-details h5 {
    font-family: 'PP Mori Regular';
    color: #D3D3D3;
}

section.emotive-purpose .the-content-area .the-details h2 {
    font-size: 40px;
    color: white;
    text-transform: capitalize;
}

section.emotive-purpose .the-content-area .the-details p {
    margin-bottom: 10px;
    color: #D3D3D3;
    font-size: 18px;
}

section.emotive-purpose .the-content-area .the-details span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.emotive-purpose .the-video {
    position: relative;
}

.emotive-purpose .video-controls {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    z-index: 1;
    gap: 7px;
    /* Ensure controls are above the video */
}

.emotive-purpose .video-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0px;
}

.emotive-purpose .video-controls button img {
    width: 55px;
    transition: transform 0.6s ease;
}

.emotive-purpose .video-controls button img:hover {
    transform: scale(1.03);
}

.emotive-purpose .the-video video.playing+.video-controls {
    display: none;
}

.emotive-purpose .the-video:hover .video-controls,
.video-controls:hover {
    display: flex;
}

.page-template-page-about-us section.global-expertise {
    background-image: unset;
}

section.team_section {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/our-team-bg.png');
    background-position: center bottom;
    background-size: 95%;
    background-repeat: no-repeat;
    margin: 80px 0px;
    padding-bottom: 80px;
}

section.team_section .the-headings h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.team_section .the-headings p {
    font-size: 18px;
}

.team_section .social_media_icons img {
    width: 25%;
}

/* team section */
.team_section .container {
    max-width: 1320px !important;
}

.team_section .container .col-12 {
    text-align: center;
}

.team_section .container .col-12 h2 {
    font-size: 45px;
}

.team_section .designers {
    background: #2A2A2A;
    border-radius: 30px;
    margin: 20px 20px -30px -30px;
    padding-bottom: 10px;
    transition: transform 0.6s ease;
}

.team_section .designers:hover {
    transform: scale(1.03);
}

.team_section .container .row .col-lg-4 {
    padding-left: 70px;
    padding-right: 40px;
    margin-top: 180px;
}

.team_section .main_border {
    border: 1px solid white;
    border-radius: 30px;

}

.team_section .designer_photo {
    text-align: center;
    padding: 0px 40px;
}

.team_section .designer_photo img {
    margin-top: -150px;
    width: 100%;
}

.team_section .info_about_designers {
    padding: 20px 20px 30px 20px;
    background: #D9D9D9;
    border-radius: 30px;
    margin: 0px 10px;
    box-shadow: 0px -70px 70px 0px rgb(49 46 46);
    z-index: 1;
    position: relative;
}

.team_section .designer_name h6 {
    color: #FF7A00;
    font-size: 20px;
    margin-bottom: 0px;
}

.team_section .designer_name {
    width: 60%;
}

.team_section .designer_name p {
    color: #2A2A2A;
    font-size: 16px;
    margin-bottom: 5px;
}

.team_section .UIdesigner {
    display: flex;
}

.team_section .social_media_icons {
    width: 40%;
    text-align: right;
    display: none;
}

.team_section .info_about_designers .description {
    color: #2A2A2A;
}

.team_section .info_about_designers .description p {
    font-size: 15px;
}


/*Our Team CSS Start*/

section.meet-our-team {
    color: white;
    margin: 80px 0px;
}

section.meet-our-team .our-team-content p:nth-child(1) {
    font-size: 22px;
    font-family: "PP Mori Extra-Light";
}

section.meet-our-team .our-team-content p {
    font-size: 18px;
    margin: 10px 0px;
}

section.meet-our-team .our-team-content h2 {
    font-size: 40px;
}

section.meet-our-team .our-team-content a {
    color: #FF7A00;
}

section.meet-our-team .our-team-content h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    /* Define your gradient from left to right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari */
    background-clip: text;
    color: transparent;
    /* For other browsers */
    position: relative;
}

section.meet-our-team .our-team-content img {
    width: 100%;
}

section.meet-our-team .our-team-slider .slick-prev {
    display: none !important;
}

section.meet-our-team .our-team-slider .slick-next {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/our-ream-arrow.png');
    background-position: center right;
    background-repeat: no-repeat;
}

section.meet-our-team .our-team-slider .slick-next:before {
    color: unset !important;
}

section.meet-our-team .our-team-slider .border {
    border: 1px solid white;
    border-radius: 30px;
}

section.meet-our-team .our-team-slider .border .our-team-info {
    margin: 15px 15px -15px -15px;
    border-radius: 30px;
}

section.meet-our-team .our-team-slider .col-md-3 {
    padding: 0px 20px 20px;
    cursor: grab;
}

section.meet-our-team .our-team-slider .border .our-team-info .our-team-profile {
    background-color: #D9DCDB;
    border-radius: 30px;
    /*padding-top: 30px;*/
}

section.meet-our-team .our-team-slider .border .our-team-info .our-team-profile img {
    width: 100%;
    border-radius: 30px;
}

section.meet-our-team .our-team-slider .border .our-team-info .our-team-content {
    text-align: center;
    background-color: white;
    border-radius: 50px;
    padding: 12px;
    position: sticky;
    margin: 0px 10px;
    margin-top: -80px;
    margin-bottom: 8px;
}



section.meet-our-team .our-team-slider .border .our-team-info .our-team-content h3 {
    color: #EE7F1A;
    font-size: 20px;
    margin-bottom: 0px;
}

section.meet-our-team .our-team-slider .border .our-team-info .our-team-content p {
    color: black;
    font-size: 16px;
}

/*Our Team CSS End*/


/* Experience Section CSS Start */
.experience_section {
    margin: 80px 0px;
}

.experience_section .our-experience-content p:nth-child(1) {
    font-size: 22px;
    font-family: "PP Mori Extra-Light";
}

.experience_section .our-experience-content h2 {
    font-size: 40px;
    color: white;
    text-transform: capitalize;
}

.experience_section .our-experience-content h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
}

.experience_section .our-experience-content p {
    font-size: 20px;
}


.experience_section .experience_card {
    border-radius: 30px;
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/transforming-marketing-bg-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 25px 25px;
    transition: transform 0.6s ease;
    height: 100%;
}

.experience_section .experience_card:hover {
    transform: scale(1.03);
}

.experience_section .experience_card p {
    font-size: 14px;
}

.experience_section .experience_card .fortune {
    text-align: center;
    height: 58%;
    background: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/leaves-4.png);
    background-size: 62% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 0px 20px;
}

.experience_section .experience_card .fortune .stars img {
    width: 60px;
}

.experience_section .experience_card .fortune h3 {
    background: linear-gradient(to right, #EE7F1A 40%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    font-size: 26px;
    line-height: normal;
    margin: 0px;
}

.experience_card_content {
    text-align: center;
}

/* Experience Section CSS Finish */




/* Use Cases Section CSS Start */
section.use-cases {
    margin: 80px 0px;
}

section.use-cases .the-content-area .the-headings {
    text-align: center;
    margin-bottom: 50px;
    padding: 0px 50px;
}

section.use-cases .the-content-area .the-headings p {
    margin: 5px 0px;
}

section.use-cases .the-content-area .the-headings a {
    color: #FF7A00;
    display: block;
    margin-top: 20px;
}

section.use-cases .the-content-area .the-headings h2 {
    font-size: 50px;
    color: white;
    text-transform: capitalize;
}

section.use-cases .the-content-area .the-headings h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.use-cases .the-content-area .the-use-case {
    position: relative;
    height: 350px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #faff0578;
}

section.use-cases .the-content-area .the-use-case:nth-child(6),
section.use-cases .the-content-area .the-use-case:nth-child(7),
section.use-cases .the-content-area .the-use-case:nth-child(8),
section.use-cases .the-content-area .the-use-case:nth-child(9) {
    border-radius: 0px 0px 20px 20px;
}

section.use-cases .the-content-area .the-use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: -1;
    /* Places the overlay below the text */
}

section.use-cases .the-content-area .the-use-case:hover::before {
    background: linear-gradient(to bottom, #ff7a00e6, #f7de0a9c);
    /* Apply linear gradient */
}

section.use-cases .the-content-area .the-use-case h3 {
    font-size: 40px;
    color: white;
    margin-bottom: 0px;
}

section.use-cases .the-content-area .the-use-case p {
    color: white;
    font-size: 20px;
}

section.use-cases .modal {
    background-color: #00000087;
}

section.use-cases .the-content-area .modal-header {
    padding: 20px;
    display: unset;
    text-align: center;
    position: relative;
    border: unset;
}

section.use-cases .the-content-area .modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0.5px;
    /* Thickness of border */
    background: #838383;
    transform: translateX(50%);
}

section.use-cases .the-content-area .modal-header h5 {
    color: white !important;
    font-size: 23px;
}

section.use-cases .the-content-area .modal-header button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background-color: #323031;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
}

section.use-cases .the-content-area .modal-header button img {
    width: 13px;
    height: 13px;
}

section.use-cases .the-content-area .modal-header button:hover {
    opacity: 0.8;
}

section.use-cases .the-content-area .modal-body {
    padding: 20px;
}

section.use-cases .the-content-area .modal-body p {
    color: #cacaca;
}

section.use-cases .the-content-area .modal-content {
    text-align: center;
    background-color: #11111196;
    backdrop-filter: blur(10px);
    border: 1px solid orange;
    border-radius: 10px;
}

/* Use Cases Section CSS Finish */


/* crops_section */
.crops_section {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/crops-section-bg.png');
    background-position: center bottom;
    background-size: 95%;
    background-repeat: no-repeat;
    margin: 80px 0px;
    padding-bottom: 80px;
}

.crops_section .container .value {
    text-align: center;
}

.crops_section .container .value p {
    font-size: 22px;
    font-family: 'PP Mori Extra-Light';
}

.crops_section .container .value h2 {
    font-size: 50px;
    color: white;
}

.crops_section .container .value h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.crops_section .horizontal-line {
    background: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/join.png');
    background-repeat: no-repeat;
    background-position: top 200px left 350px;
}

.crops_section .bold_creativity {
    padding: 80px 50px 0px 50px;
}

.crops_section .bold_creativity_img {
    text-align: center;
}

.crops_section .bold_creativity_content {
    text-align: center;
    padding-top: 40px;
}

.crops_section .bold_creativity_content h3 {
    font-size: 22px;
    color: white;
}

.crops_section .bold_creativity_content h3 span {
    color: #FF7A00;
}

.crops_section .bold_creativity .bold_creativity_img img {
    width: 70%;
}



/* Buzzful Gives Back Section CSS Start */
section.buzzful-gives-back {
    margin: 80px 0px;
}

section.buzzful-gives-back .the-content-area .the-image img {
    border-radius: 50px;
    border-right: 2px solid #ff7a00b5;
    border-bottom: 2px solid #ff7a00b5;
    transition: transform 0.6s ease;
    height: 550px;
    object-fit: cover;
}

section.buzzful-gives-back .the-content-area .the-image .carousel-control-prev,
section.buzzful-gives-back .the-content-area .the-image .carousel-control-next {
    opacity: 1;
}

section.buzzful-gives-back .the-content-area .the-image .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EE7F1A'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    opacity: 1;
}

section.buzzful-gives-back .the-content-area .the-image .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EE7F1A'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

section.buzzful-gives-back .the-content-area .the-content p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #D5D5D5;
}

section.buzzful-gives-back .the-content-area .the-content p:nth-of-type(1) {
    font-size: 22px;
    font-family: 'PP Mori Extra-Light';
}

section.buzzful-gives-back .the-content-area .the-content h2 {
    font-size: 48px;
    color: white;
}

section.buzzful-gives-back .the-content-area .the-content img {
    max-width: 80%;
    margin-bottom: 20px;
}

section.buzzful-gives-back .the-content-area .the-content h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.buzzful-gives-back .the-content-area .row-card {
    margin-top: 50px;
}

section.buzzful-gives-back .the-content-area .the-content .background {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    padding: 25px;
    transition: transform 0.6s ease;
    height: 100%;
    background-color: #1E1E1E;
    border-radius: 30px;
    border-right: 1px solid #EE7F1A;
    border-bottom: 1px solid #EE7F1A;
}

section.buzzful-gives-back .the-content-area .the-content .background:hover {
    transform: scale(1.03);
}

section.buzzful-gives-back .the-content-area .the-content .background img {
    margin-bottom: 10px;
    width: 80px;
}

section.buzzful-gives-back .the-content-area .the-content .background h3 {
    background: linear-gradient(to right, #EE7F1A 25%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    font-size: 25px;
    margin-bottom: 8px;
    margin-top: 0px;
}

section.buzzful-gives-back .the-content-area .the-content .background p {
    font-size: 15px;
}

section.meet-founder {
    margin: 80px 0px;
}

section.meet-founder .image-part img {
    width: 100%;
}

section.meet-founder .the-content p {
    font-size: 18px;
}

section.meet-founder .the-content h2 {
    font-size: 50px;
}

section.meet-founder .the-content {
    margin: auto;
}

section.meet-founder .the-content h2 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.meet-founder .the-content a {
    color: #FFFFFF;
    background: #EE7F1A;
    border-radius: 30px;
    padding: 14px 40px 13px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    text-transform: capitalize;
    transition: transform 0.6s ease;
}

section.meet-founder .the-content a:hover {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0px 1px 14px 1px #EE7F1A;
}

/*Page About us css fisnis*/


/*Page Calendar booking form Css Start*/
section.form-hero-section {
    margin-top: 80px;
}

.form-hero-section .about-us-banner-area {
    text-align: center;
}

.form-hero-section .container .about-us-banner-area h1 {
    font-size: 66px;
    color: white;
}

.form-hero-section .container .about-us-banner-area h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.form-hero-section .container .about-us-banner-area h1 span::before {
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: -20px;
    width: calc(var(--span-width) + 35px);
    height: calc(var(--span-height) + 17px);
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/cmo-stroke-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.form-hero-section .container .about-us-banner-area p {
    font-size: 20px;
}

.calendar-form iframe {
    filter: invert(1);
}

section.calendar-form {
    margin-bottom: 50px;
}

/*Page calendar booking form css finish*/

/*page blog css start */
.blog-banner {
    text-align: center;
    margin: 80px 0px;
}

.blog-banner .container .about-us-banner-area h1 {
    font-size: 70px;
    color: white;
}

.blog-banner .container .about-us-banner-area h1 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
}

.blog-banner .container .about-us-banner-area p {
    font-size: 20px;
}

section.behind-our-comapny {
    margin: 80px 0px;
}

section.behind-our-comapny .the-background-area {
    padding: 0px 100px;
}

section.behind-our-comapny .the-background-area .the-background {
    /*background-color: #1E1E1E;*/
    /*border-right: 1px solid #EE7F1A;*/
    /*border-bottom: 1px solid #EE7F1A;*/
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/blog-bg.png);
    background-position: center;
    background-size: 100% 100%;
    padding: 2px;
    transition: transform 0.6s ease;
}

section.behind-our-comapny .the-background-area .the-background:hover {
    transform: scale(1.03);
}

section.behind-our-comapny .the-background-area .the-background .the-image img {
    border-radius: 30px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.behind-our-comapny .the-background-area .the-background .the-content {
    padding: 50px;
}

section.behind-our-comapny .the-background-area .the-background .the-content h2 {
    font-size: 40px;
    text-transform: capitalize;
    color: white;
}

section.behind-our-comapny .the-background-area .the-background .the-content h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.buzzful-blogs {

    color: white;
    margin: 80px 0px;

}

section.buzzful-blogs .animation-blogs {
    transition: transform 0.6s ease;
}

section.buzzful-blogs .animation-blogs:hover {
    transform: scale(1.03);
}

section.buzzful-blogs .the-headings-area h2 {
    font-size: 50px;
}

section.buzzful-blogs .the-headings-area h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.buzzful-blogs .the-headings-area p {
    font-size: 18px;
}

section.buzzful-blogs .the-headings-area {
    margin-bottom: 40px;
}

section.buzzful-blogs .grid_img a:hover {
    opacity: 1;
}

section.buzzful-blogs .grid_img img {
    width: 100%;
    border-radius: 25px;
}

section.buzzful-blogs .blog-part .grid_img img {
    height: 244px;
    object-fit: cover;
}

section.buzzful-blogs .grid_content {
    padding: 20px;
}

section.buzzful-blogs .grid_content h3 {
    font-size: 24px;
    color: white;
}

section.buzzful-blogs .grid_content h3 a {
    color: white;
    text-decoration: none;
}

section.buzzful-blogs .grid_content h3 a:hover {
    opacity: 1;
}

section.buzzful-blogs .grid_content p {
    font-siZe: 15px;
    margin-bottom: 10px;
}

section.buzzful-blogs .grid_content p.date {
    color: #F7DE0A;
}

section.buzzful-blogs .grid_content .text-end img {
    width: 40px;
}

section.buzzful-blogs a.all-blogs-btn {
    text-decoration: none;
    color: white;
    background-color: #EE7F1A;
    border-radius: 30px;
    padding: 14px 30px;
    font-size: 18px;
    margin: 10px 0px;
}

/* our_blog_video */

.blog_video_section {
    margin: 80px 0px;
}



.blog_video_section .video {
    /*border-radius: 30px;*/
    /*border-right: 1px solid #EE7F1A;*/
    /*border-bottom: 1px solid #EE7F1A;*/
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/video-bg-border.png);
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    display: grid;
}

.blog_video_section .our_blog_video {
    border-radius: 30px;
    padding: 4px;
    width: 100%;
}



.blog_video_section .video .video-control {

    position: absolute;

    bottom: 50%;

    left: 50%;

    transform: translate(-50%, 50%);

}



.blog_video_section .video .video-control button {

    background: none;

    border: none;

    font-size: 24px;

    cursor: pointer;

}



.blog_video_section .video .video-control button img {

    width: 100px;

    transition: transform 0.6s ease;

}

.blog_video_section .video .video-control button img:hover {
    transform: scale(1.03);
}


.blog_video_section .video video.playing+.video-control {

    display: none;

}



.blog_video_section .video:hover .video-control,

.blog_video_section .video .video-control:hover {

    display: block;

}



.blog_video_section .video .video-control .pause {

    display: none;

}



section.discover-our-articles {

    margin: 80px 0px;

    position: relative;

}

section.discover-our-articles .container {
    position: relative;
}

section.discover-our-articles .container-fluid {

    padding-left: 80px;

    padding-right: 0px;

}



section.discover-our-articles .the-content p:nth-child(1) {

    font-family: 'PP Mori Extra-Light';

    font-size: 22px;

}



section.discover-our-articles .the-content p {

    font-size: 18px;

}



section.discover-our-articles .the-content h2 {
    font-size: 50px;
    color: white;
    line-height: 50px;
}



section.discover-our-articles .the-content h2 span {

    background: linear-gradient(to right, #F1A014 30%, #FAFF05);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

    position: relative;

}



section.discover-our-articles .the-blog-slider {

    padding: 0px;

}



section.discover-our-articles .the-blog-slider .slick-slide img {

    display: inline-block;

}



section.discover-our-articles .the-blog-slider .blog-slider-body {

    display: block;

    padding: 0px 50px;

    margin-left: -45px;

    width: 700px;

    transition: transform 0.6s ease;
}

section.discover-our-articles .the-blog-slider .blog-slider-body:hover {
    transform: scale(1.03);
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-image-area a:hover {
    opacity: 1;
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-image-area img {
    border-radius: 30px;
    height: 215px;
    object-fit: cover;
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area {

    padding: 20px;

}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area h3 {
    color: white;
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area h3 a {
    text-decoration: none;
    color: white;
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area h3 a:hover {
    opacity: 1;
}

section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area p.date {

    color: #F7DE0A;

    margin-top: 10px;

}



section.discover-our-articles .the-blog-slider .slick-dotted.slick-slider {

    position: static;

}



section.discover-our-articles .the-blog-slider .slick-dotted .slick-dots {

    left: 20px;

    width: fit-content;

    bottom: 170px;

    width: 600px;

    text-align: justify;
}



section.discover-our-articles .the-blog-slider .slick-dots li {

    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/slick-dot.png);

}



section.discover-our-articles .the-blog-slider .slick-dots li.slick-active {

    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/slick-active-dot.png);

}



section.discover-our-articles .the-blog-slider .slick-dots li button:before {

    color: transparent;

}

section.linkedin-feeds {
    margin: 80px 0px;
}

section.linkedin-feeds h2 {
    color: white;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}

section.linkedin-feeds h2 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

/*Page blog css finish*/

/*page contact us css start*/
section.contact-us .the-content-area .contact-us-text p {
    text-align: center;
}

section.contact-us .the-content-area .contact-us-text .contact-heading {
    display: none;
}

section.contact-us .referee {
    margin-top: 30px;
    margin-bottom: 20px;
}

section.contact-us .referee h2 {
    font-size: 40px;
}

section.contact-us .referee h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.contact-us .contact-form span.heading {
    color: #FF7A00;
    font-size: 20px;
    padding: 0px 10px;
    display: block;
    margin-bottom: 8px;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p:first-child {
    display: flex;
    align-items: center;
}

section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.heading {
    margin: 0px;
}

section.contact-us p {
    text-align: left;
}


section.contact-us .the-content-area .clarity {
    margin-bottom: 30px;
    padding: 0px 50px;
}

/*iframe and accordion*/
section.contact-us .accordion-buttons {
    display: flex;
    margin-bottom: 50px;
    background-color: white;
    width: fit-content;
    padding: 5px;
    border-radius: 30px;
}

section.contact-us .accordion-button {
    cursor: pointer;
    text-align: center;
    width: fit-content;
    padding: 14px 30px;
    font-size: 18px;
    line-height: normal;
}

section.contact-us .accordion-button:hover {
    opacity: 0.7;
}

section.contact-us .accordion-button:not(.collapsed) {
    color: black;
}

section.contact-us .accordion-button.active {
    text-decoration: none;
    background-color: #1E1E1E;
    color: white;
    border-radius: 30px;
    line-height: normal;
}

section.contact-us .accordion-content {
    display: none;
}

section.contact-us .accordion-content.show {
    display: block;
}

section.contact-us .accordion-button:not(.collapsed):hover {}

section.contact-us  iframe {
    background-color: white;
    border-radius: 20px;
    height: 700px;
    filter: invert(1);
}

/*page services css start*/
section.services-banner {
    margin: 80px 0px;
    text-align: center;
}

section.services-banner .banner-content {
    padding: 0px 350px;
}



section.services-banner .banner-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: white;
}

section.services-banner .banner-content p {
    font-size: 20px;
    padding: 0px 50px;
}



section.services-banner .banner-content h1 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}



section.services-banner .banner-content h1 span::before {
    content: '';
    display: block;
    position: absolute;
    top: -19px;
    left: -34px;
    width: calc(var(--span-width) + 52px);
    height: calc(var(--span-height) + 30px);
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/cmo-stroke-background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/*Our Service section Start*/

.page-template-page-services section.our-services {
    background-image: unset;
    padding-bottom: 0px;
    margin: 80px 0px;
    color: white;
}

/*Our Service section End*/


/*Service Tier Start*/

.page-template-page-services section.service-tier {
    margin: 80px 0px;
}

/*Service Tier End*/



/* our_services_video */

.page-template-page-services .services_video_section_collapse .video,
.page-template-page-services .services_video_section .video, 
.single-buzzfull_services .services_video_section .video {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/video-bg-border.png');
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    display: grid;
}

.page-template-page-services .services_video_section_collapse .our_services_video_collapse,
.page-template-page-services .services_video_section .our_services_video,
.single-buzzfull_services .services_video_section .our_services_video {
    border-radius: 30px;
    padding: 2px;
    width: 100%;
}

.page-template-page-services .services_video_section_collapse .video .video-control,
.page-template-page-services .services_video_section .video .video-control, 
.single-buzzfull_services .services_video_section .video .video-control {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.page-template-page-services .services_video_section_collapse .video .video-control button,
.page-template-page-services .services_video_section .video .video-control button, 
.single-buzzfull_services .services_video_section .video .video-control button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.page-template-page-services .services_video_section_collapse .video .video-control button img,
.page-template-page-services .services_video_section .video .video-control button img, 
.single-buzzfull_services .services_video_section .video .video-control button img {

    width: 100px;

}


.page-template-page-services .services_video_section_collapse .video video.playing+.video-control,
.page-template-page-services .services_video_section .video video.playing+.video-control,
.single-buzzfull_services .services_video_section .video video.playing+.video-control {

    display: none;

}


.page-template-page-services .services_video_section_collapse .video:hover .video-control,
.page-template-page-services .services_video_section .video:hover .video-control,
.single-buzzfull_services .services_video_section .video:hover .video-control,
.page-template-page-services .services_video_section_collapse .video .video-control:hover,
.page-template-page-services .services_video_section .video .video-control:hover,
.single-buzzfull_services .services_video_section .video .video-control:hover {

    display: block;

}


.page-template-page-services .services_video_section_collapse .video .video-control .pause-collapsed,
.page-template-page-services .services_video_section .video .video-control .pause,
.single-buzzfull_services .services_video_section .video .video-control .pause {

    display: none;

}

.page-template-page-services section.service-content-details {
    color: white;
    margin: 80px 0px;
}

.page-template-page-services section.our-services .accordion-item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 60px;
    border-bottom: 1px solid #8080803b;
}

.page-template-page-services section.our-services .accordion-item:hover .service {
    opacity: 1;
}

.page-template-page-services section.our-services .accordion-item:nth-last-child(-n+2) {
    border: none;
}


.page-template-page-services section.our-services .service {
    padding-left: 0px;
    padding-right: 0px;
    opacity: 0.5;
    transition: transform 0.9s ease;
}

.page-template-page-services section.our-services .active .service {
    opacity: 1;
}

.page-template-page-services section.our-services .service-content {
    display: flex;
}

.page-template-page-services section.service-content-details .head-content {
    justify-content: center;
    margin-bottom: 80px;
}

.page-template-page-services section.service-content-details .head-content .head-detail {
    text-align: center;
    padding: 0px 50px;
}

.page-template-page-services section.our-services .service:hover {
    cursor: pointer;
    background-color: unset;
    transform: unset;
    padding: 20px 0px;
    border-radius: unset;
    background-image: unset;
}

.page-template-page-services section.our-services .service:hover .service-content h3 {
    cursor: pointer;
    color: white;
    transition: transform 0.9s ease;
}

.page-template-page-services section.our-services .service:hover .service-logo img {
    filter: grayscale(0);
}

.page-template-page-services section.our-services .service .service-logo {
    padding: 15px;
    border-radius: 10px;
    border-right: 1px solid #6d6d6d;
    border-bottom: 1px solid #6d6d6d;
    background-color: #1E1E1E;
    width: fit-content;
    margin-right: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: transform 0.9s ease;
}

.page-template-page-services section.our-services .active .service .service-logo,
.page-template-page-services section.our-services .service:hover .service-logo {
    border-right: 1px solid #FF7A00;
    border-bottom: 1px solid #FF7A00;
}

.page-template-page-services section.our-services .service .service-logo img {
    width: 40px;
    filter: grayscale(1);
}

.page-template-page-services section.our-services .active .service .service-logo img {
    filter: grayscale(0);
}

.page-template-page-services section.service-content-details .head-content .head-detail h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.page-template-page-services section.our-services .service .service-content h3 {
    font-size: 20px;
    color: #BDBDBD;
    margin: auto 0px;
}

.page-template-page-services section.our-services .active .service .service-content h3 {
    color: white;
}

/*Styling section service content detail  */
.page-template-page-services section.accordion-content {
    display: none;
    padding: 10px;
    border: none;
}

.page-template-page-services section.accordion-content.active {
    display: block;
}

.page-template-page-services section.service-content-details .head-content .head-detail span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
}

.page-template-page-services section.service-content-details .head-content .head-detail p {
    font-size: 18px;
    color: #D3D3D3;
}

.page-template-page-services section.service-content-details .transform-marketing-content h2 {
    font-size: 50px;
    line-height: 50px;
}

.page-template-page-services section.service-content-details .transform-marketing-content h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.page-template-page-services section.service-content-details .transform-marketing-content p {
    font-size: 20px;
    padding-right: 120px;
}

.page-template-page-services section.service-content-details .transform-marketing-content .view-btn {
    margin-top: 40px;
}

.page-template-page-services section.service-content-details .transform-marketing-content .view-btn a {
    padding: 20px 50px;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}

.page-template-page-services section.service-content-details .transform-marketing-content .view-btn a:hover {
    opacity: 1;
}

.page-template-page-services section.service-content-details .services {
    background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/transforming-marketing-bg-img.png');
    background-position: center;
    background-size: 100% 100%;
    text-align: center;
    padding: 20px 25px 30px;
    text-transform: capitalize;
    height: 100%;
}

.page-template-page-services section.service-content-details .services:hover {
    border-radius: 30px;
    color: white;
    background: linear-gradient(to top left, #F1A014 60%, #FAFF06);
}

.page-template-page-services section.service-content-details .services.active {
    border-radius: 30px;
    color: white;
    background: linear-gradient(to top left, #F1A014 60%, #FAFF06);
}

.page-template-page-services section.service-content-details .services:hover .heading h3 span,
.page-template-page-services section.service-content-details .services.active h3 span {
    color: white !important;
}

.page-template-page-services section.service-content-details .services .heading h3 span {
    color: #EE7F1A;
}

.page-template-page-services section.service-content-details .services .heading h3 {
    font-size: 24px;
    line-height: 28px;
    margin: 0px;
}

.page-template-page-services section.service-content-details .services .heading {
    margin: 15px 0px;
}

.page-template-page-services section.service-content-details .services-heading {
    text-align: center;
}

.page-template-page-services section.service-content-details .services-heading h1 {
    font-size: 50px;
    padding: 0px 60px;
}

.page-template-page-services section.service-content-details .services-heading h1 span {
    background: linear-gradient(to right, #F1A014 30%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.page-template-page-services section.service-content-details .services-heading p {
    font-size: 18px;
}

.page-template-page-services section.service-content-details .services .heading p {
    font-family: 'PP Mori Extra-Light';
}

.page-template-page-services section.service-content-details .services a {
    color: white;
    text-decoration: unset;
}

.page-template-page-services section.service-content-details .services a:hover {
    opacity: 1;
}

.page-template-page-services section.service-content-details .services p {
    font-size: 14px;
}

.page-template-page-services section.service-content-details .service-collapse-content .accordion .text-alignment {
    text-align: -webkit-center;
}

.page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area {
    background-color: white;
    width: fit-content;
    padding: 5px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area .the-tab {
    padding: 10px 40px;
    text-decoration: none;
    background-color: #1E1E1E;
    color: white;
    border-radius: 30px;
    font-weight: 700;
}

.page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area .the-tab.collapsed {
    color: black;
    background-color: white;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian img {
    width: 100%;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .odd .sub-category-content {
    padding: 40px 0px 40px 60px;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .even .sub-category-content {
    padding: 40px 60px 40px 0px;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content h3 {
    font-size: 34px;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content h3 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content h2 span {
    color: #EE7F1A;
}

.page-template-page-services section.service-content-details .service-collapse-content .cta-btn {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-template-page-services section.service-content-details .service-collapse-content .cta-btn a {
    color: #FF7A00;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-bg-img {
    text-align: center;
}

.page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-bg-img img {
    width: 35%;
}

/*page services css end*/

/*single page css start*/
section.main-content {
    margin: 80px 0px;
    color: white;
}

section.main-content .entry-title .breadcrumb {
    font-size: 18px;
    margin: 0px 0px 30px 0px;
    color: #D5D5D5;
}

section.main-content .entry-title .breadcrumb a {
    margin: 0px 10px;
    text-decoration: none
}

section.main-content .entry-title .breadcrumb span {
    margin: 0px 10px;
}

section.main-content .entry-title h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.main-content .blog-content {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 20px;
    margin-right: 30px;
}

section.main-content .blog-content .post-content {
    margin-top: 40px;
}

section.main-content .blog-content .post-content span {
    color: white;
}

section.main-content .blog-content h1 {
    margin-top: 50px;
    font-size: 35px;
}

section.main-content .blog-content img {
    width: 100%;
    border-radius: 15px;
}

section.main-content .blog-content p {
    font-size: 18px;
    margin: 10px 0px;
}

section.main-content .blog-content .tts-button {
    background-color: #EE7F1A;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    line-height: 0px;
    margin-top: 20px;
}


section.main-content .blog-content .tts-button img {
    width: 20px; 
    height: 23px;
    margin-right: 5px;
}

section.main-content .blog-content .tts-player {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 15px;
    box-shadow: -1px 0px 10px rgb(255 255 255 / 39%);
    max-width: 100%;
    margin-top: 30px;
}

section.main-content .blog-content .player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

section.main-content .blog-content .play-btn {
    background: #EE7F1A;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

section.main-content .blog-content .play-btn:hover {
    background: #EE7F1A;
}

section.main-content .blog-content .progress-container {
    flex-grow: 1;
    margin-top: 15px;
}

section.main-content .blog-content .progress-bar {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    margin-bottom: 5px;
    cursor: pointer;
}

section.main-content .blog-content .progress {
    height: 100%;
    background: #EE7F1A;
    border-radius: 3px;
    width: 0%;
}

section.main-content .blog-content .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

section.main-content .blog-content ul li {
    color: #D5D5D5;
    font-size: 18px;
}

section.main-content .blog-content h5 {
    margin-top: 20px;
    margin-bottom: 10px;
}

section.main-content .blog-content h2 {
    margin: 50px 0px 10px 0px;
}

section.main-content .blog-content .post-content a {
    font-size: 18px;
}

section.main-content .blog-content .post-content a:hover {
    border: none !important;
}

section.main-content .blog-content .post-content .lwptoc .lwptoc_i {
    border-radius: 20px;
}

section.main-content .blog-list {
    background: linear-gradient(180deg, #6666662e, #624d022e);
    border-radius: 15px;
}

section.main-content .blog-list h2 {
    background-color: #EE7F1A;
    line-height: normal;
    font-weight: normal;
    font-size: 22px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    margin: 0px;
    padding: 15px 20px;
}

section.main-content .blog-list ul {
    list-style: none;
    padding: 0px 0px 0px 0px;
}

section.main-content .blog-list ul li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 20px;
}

section.main-content .blog-list ul li a h3 {
    margin: 0px;
    font-size: 18px;
    font-weight: normal;
}

section.main-content .blog-list ul li {
    padding: 15px 0px 15px 30px;
    border-bottom: 1px solid #ffffff29;
    position: relative;
    display: block;
    transition: all 0.1s ease-out;
}

section.main-content .blog-list ul li a:before {
    content: "";
    border: 4px solid transparent;
    border-top-color: #ffc908 !important;
    border-right-color: #ffc908 !important;
    left: 10px;
    position: absolute;
    top: 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}



section.main-content .blog-list ul li a:hover:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

section.main-content .blog-list ul li:last-child {
    border-bottom: unset;
}

section.main-content .social-shares {
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #6666662e, #624d022e);
    padding: 20px;
    border-radius: 20px;
}

section.main-content .social-shares h3 {
    margin: 0px;
    text-align: center;
}

section.main-content .social-shares .social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #6666662e, #0d0d0d);
    padding: 20px;
    border-radius: 20px;
}

section.main-content .social-shares .social-icons a {
    text-decoration: none;
}

section.main-content .social-shares .social-icons a img {
    width: 30px;
}

.page-template-page-referrer-form section.contact-us .the-content-area .contact-us-text p {
    text-align: center;
}

.page-template-page-referrer-form section.contact-us .margin-bottom {
    margin-bottom: 25px;
}

.page-template-page-referrer-form section.contact-us .referee {
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-template-page-referrer-form section.contact-us .referee h2 {
    font-size: 40px;
}

.page-template-page-referrer-form section.contact-us .referee h2 span {
    background: linear-gradient(to right, #F1A014 40%, #FAFF05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.page-template-page-referrer-form section.contact-us .contact-form span.heading {
    color: #FF7A00;
    font-size: 20px;
    padding: 0px 10px;
    display: block;
    margin-bottom: 8px;
}

.page-template-page-referrer-form section.contact-us p {
    text-align: left;
}

/*Page terms and conditions css start*/
section.term-conditions {
    margin: 80px 0px;
}

section.term-conditions h1 {
    font-size: 66px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

section.term-conditions h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.term-conditions h1 span::before {
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: -20px;
    width: calc(var(--span-width) + 35px);
    height: calc(var(--span-height) + 17px);
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/cmo-stroke-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

section.term-conditions h2 {
    font-size: 32px;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

section.term-conditions h3 {
    font-size: 26px;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

section.term-conditions p {
    font-size: 18px;
    color: white;
}

/*terms and conditions css end*/

/*page privacy policy css start*/
section.privacy-policy {
    margin: 80px 0px;
}

section.privacy-policy h1 {
    font-size: 66px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

section.privacy-policy h1 span {
    background: linear-gradient(to right, #EE7F1A 60%, #F9EA22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

section.privacy-policy h1 span::before {
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: -20px;
    width: calc(var(--span-width) + 35px);
    height: calc(var(--span-height) + 17px);
    background-image: url(https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/cmo-stroke-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

section.privacy-policy h2 {
    font-size: 32px;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

section.privacy-policy h3 {
    font-size: 26px;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

section.privacy-policy p {
    font-size: 18px;
    color: white;
}
/*page privacy policy css end*/



/*triinity audio player css*/

section.main-content .blog-content .post-content table {
    width: 98% !important;
}

/* Media Queries Start */
@media (min-width: 767.99px) {
    hr.mobile-view {
        display: none;  
    }
    .mobile-animation {
        display: none;
    }
    
    .page-template-page-referral-form section.contact-us .the-content-area .contact-form-border .contact-form input,
    .page-template-page-referral-form section.contact-us .the-content-area .contact-form-border .contact-form textarea {
        margin-bottom: 25px;
    }
    
    .page-template-page-referral-form section.contact-us .the-content-area .contact-form-border .contact-form input[type="submit"] {
        margin-bottom: 0px;
    }
}


@media (min-width: 991.98px) {
    header.site-header.is-sticky {
        top: 0;
        left: 0;
        background-color: #000000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        z-index: 999;
        transform: translateY(0);
        opacity: 1;
    }
     
    header.is-sticky .top-menu {
        padding: 25px 0px;
        transition: all 0.3s ease;
    }

    section.emotive-purpose .the-content-area .the-details {
        padding-right: 80px;
    }

    section.buzzful-gives-back .the-content-area .the-image {
        padding-right: 50px;
    }

    section.use-cases .the-content-area .the-headings {
        padding: 0px 100px;
    }
    
    .blog-banner .container .about-us-banner-area h1 {
        padding: 0px 50px;
    }
    
    .page-template-page-services section.services-banner .banner-content sup{
        top: -45px;
    }
}

@media (min-width: 1151.98px) {
    .experience_section .experience_card p strong {
        font-size: 14px;
        font-family: 'PP Mori Semi-Bold';
    }

    section.main-content .blog-content {
        margin-right: 5px;
    }
}

@media (min-width: 1199px) {
    section.service-tier .services-plan:hover {
        transform: scale(1.03);
    }

    section.service-tier .services-plan.active {
        transform: scale(1.03);
    }

    section.meet-founder .image-part img {
        padding-left: 50px;
    }
    
    section.contact-us .contact-form span.heading {
        padding: 0px;
    }
    
    .blog-banner .container .about-us-banner-area p {
        padding: 0px 50px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }

    section.Home-banner .content-area {
        width: 60%;
    }

    section.Home-banner .content-area .the-content p {
        padding: 0px 30px;
    }

    .page-template-page-about-us section.global-expertise .global-expertise-content {
        padding-left: 50px;
    }
}

@media (min-width: 1279.98px) {

    /*page services css start*/
    .page-template-page-services section.service-content-details .service-collapse-content {
        padding: 0px 100px;
    }

    .page-template-page-services section.service-content-details .head-content .head-detail {
        padding: 0px 100px;
    }

    /*page services css end*/
    
    .about_section .container .about-us-banner-area sup {
        top: -43px;
    }

}

@media (min-width: 1360px) {
    .container {
        max-width: 1260px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
}

@media (min-width: 1439.98px) {

    /*page services css strat*/
    .page-template-page-services section.service-content-details .service-collapse-content {
        padding: 0px 150px;
    }

    .page-template-page-services section.service-content-details .head-content .head-detail {
        padding: 0px 150px;
    }

    /*page services css end*/
}

@media (max-width: 1599.98px) {
    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip {
        transform: translateX(-200px);
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 170px;
    }
}

@media (max-width: 1559.98px) {
    section.Home-banner .content-area .testimonials-slideshow {
        bottom: -200px;
    }

    section.global-expertise #chris .location-tooltip {
        left: -17px;
    }

    section.global-expertise #chris .location-tooltip .map-arrow {
        margin-right: 10px;
        text-align: left;
    }

    /*Page About us style*/
    .crops_section .horizontal-line {
        background-size: 650px;
    }

    /*page about us style finish*/
}

@media (max-width: 1499.98px) {
    section.Home-banner .featured-employee {
        padding: 0px 50px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        left: 19px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        bottom: 360px;
        left: 171px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        bottom: 360px;
        right: 185px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        right: 19px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 328px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 77px;
        left: 477px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 150px;
        left: 627px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 638px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 77px;
        right: 485px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 321px;
    }

}

@media (max-width: 1439.98px) {
    /* For 1366 */

    section.Home-banner .content-area .the-content h1 {
        font-size: 60px;
    }

    section.Home-banner .featured-employee .location-tooltip {
        left: 78px;
    }

    section.Home-banner .featured-employee .emp .location-tooltip .map-arrow {
        left: -13px;
    }

    section.Home-banner .featured-employee .emp .location-tooltip .tooltip-text {
        width: 217px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip {
        left: 140px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 85px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        bottom: 269px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        bottom: 329px;
        left: 159px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        bottom: 329px;
        right: 173px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 269px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 305px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 77px;
        left: 444px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 136px;
        left: 581px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 592px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 72px;
        right: 450px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 301px;
    }

    section.Home-banner .content-area .testimonials-slideshow {
        bottom: -270px;
    }

    section.global-expertise .global-expertise-content h3 {
        font-size: 36px;
    }

    section.our-process .navigating-card {
        background-size: 46%;
    }

    /*Map Styling Start*/
    .location-tooltip .tooltip-text img {
        width: 35px !important;
        margin-right: 5px;
    }

    .location-tooltip .tooltip-text h6 {
        font-size: 14px;
    }

    .location-tooltip .tooltip-text p {
        font-size: 10px;
    }

    section.global-expertise #juan {
        left: 94px;
        top: 139px;
    }

    section.global-expertise #joanna {
        left: 125px;
        top: 151px;
    }


    section.global-expertise #chris {
        left: 154px;
        top: 146px;
    }

    section.global-expertise #haley {
        top: 170px;
        left: 156px;
    }

    section.global-expertise #toronto {
        top: 129px;
        left: 167px;
    }

    section.global-expertise #london {
        top: 119px;
        left: 291px;
    }

    section.global-expertise #galicia {
        top: 144px;
        left: 285px;
    }

    section.global-expertise #nairobi {
        top: 221px;
        left: 358px;
    }

    section.global-expertise #berlin {
        top: 122px;
        left: 318px;
    }

    /*Map Styling End*/


    /*Page About Us style*/
    .bold_creativity_content h3 {
        font-size: 25px;
    }

    .crops_section .horizontal-line {
        background-size: 600px;
        background-position: top 190px left 334px;
    }

    .crops_section .bold_creativity {
        padding: 60px 40px 0px 40px;
    }

    /*Page About Us style finish*/

    /*page blog css start*/
    section.behind-our-comapny .the-background-area .the-background .the-content h2 {
        font-size: 36px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        width: 600px;
    }

    section.discover-our-articles .the-blog-slider .slick-dotted .slick-dots {
        bottom: 135px;
    }

    /*page blog css finish*/

    /*page services css start*/
    .page-template-page-services section.services-banner .banner-content {
        padding: 0px 220px;
    }

    .page-template-page-services section.service-content-details .services {
        padding: 20px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content .view-btn a {
        padding: 15px 40px;
    }

    /*page services css end*/

    section.contact-us iframe {
        height: 900px;
    }
}

@media (max-width: 1365.98px) {
    /* For 1280 */

    section.Home-banner .content-area .the-content h1 {
        font-size: 56px;
    }

    section.our-process .navigating-card {
        background-position: top 250px left 330px;
    }

    section.our-process .navigating-card .our-process-content .single-process-content p:first-of-type {
        min-height: 75px;
    }

    /*Map Styling Start*/
    .location-tooltip .map-arrow img {
        margin-left: 8px;
    }

    section.global-expertise .team-member {
        width: 13px;
        height: 13px;
    }

    section.global-expertise #juan {
        left: 88px;
        top: 129px;
    }

    section.global-expertise #joanna {
        left: 124px;
        top: 143px;
    }

    section.global-expertise #chris {
        left: 146px;
        top: 138px;
    }

    section.global-expertise #haley {
        top: 157px;
        left: 147px;
    }

    section.global-expertise #toronto {
        top: 120px;
        left: 156px;
    }

    section.global-expertise #london {
        top: 111px;
        left: 273px;
    }

    section.global-expertise #galicia {
        top: 135px;
        left: 267px;
    }

    section.global-expertise #nairobi {
        top: 209px;
        left: 336px;
    }

    section.global-expertise #berlin {
        top: 116px;
        left: 293px;
    }

    /*Map Styling End*/

    section.service-tier .services-plan {
        padding: 25px;
    }

    section.service-tier .services-plan.active .plan-content {
        padding: 25px 25px 0px;
    }

    section.service-tier .services-plan .purchase-btn a {
        padding: 14px 40px;
    }

    section.service-tier .services-plan h3 {
        font-size: 35px;
    }

    /*section.service-tier .services-plan p:nth-of-type(1) {*/
    /*min-height: 120px;*/
    /*}*/

    section.faq .faq-heading h2 {
        font-size: 40px;
    }

    /*Page About Us style*/
    .crops_section .bold_creativity {
        padding: 60px 30px 0px 30px;
    }

    .crops_section .horizontal-line {
        background-size: 550px;
        background-position: top 190px left 320px;
    }

    .experience_section .experience_card .fortune {
        background-size: 75% 100%;
    }

    /*Page About us style finsih`*/

    section.behind-our-comapny .the-background-area .the-background .the-content {
        padding: 30px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content h2 {
        font-size: 45px;
    }
}

@media (max-width: 1359.98px) {
    section.Home-banner .featured-employee {
        margin-top: -80px;
    }

    section.Home-banner .featured-employee .location-tooltip {
        left: 79px;
        top: -180px;
    }

    section.Home-banner .featured-employee .emp .location-tooltip .map-arrow {
        left: -22px;
        top: 61px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip {
        left: 64px;
        transform: translateX(-125px);

    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 78px;
        top: 60px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 149px;
        bottom: 310px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        right: 161px;
        bottom: 310px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        right: 17px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 284px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 60px;
        left: 414px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 122px;
        left: 542px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 551px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 60px;
        right: 419px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 281px;
        bottom: 5px;
    }
    
    section.enterprise .fortunes-card .fortune {
        padding: 15px 0px 30px;
    }

}

@media (max-width: 1279.98px) {
    /* For 1152 */

    header.site-header .top-menu .logo-and-menu-items-area a.menu-logo-link img {
        width: 80%;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item a {
        margin-left: 12px;
        font-size: 14px;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a {
        padding: 15px 25px;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 a {
        padding: 15px 25px 15px 25px;
        background-position: center left 14px;
        background-size: 16px;
        margin-left: 20px;
        font-size: 14px;
    }

    section.Home-banner .content-area {
        width: 50%;
    }

    section.Home-banner .content-area .the-content h1 {
        font-size: 42px;
        line-height: 50px;
    }

    section.Home-banner .featured-employee {
        margin-top: -70px;
    }

    section.Home-banner .featured-employee .location-tooltip {
        left: 58px;
        top: -176px;

    }

    section.Home-banner .featured-employee .emp .location-tooltip .tooltip-text {
        left: -23px;
    }

    section.Home-banner .featured-employee .emp .location-tooltip .map-arrow {
        left: -5px;
        top: 59px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 79px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        bottom: 200px;
        left: 17px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        bottom: 242px;
        left: 121px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        right: 130px;
        bottom: 242px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 200px;
        right: 16px;
    }

    section.Home-banner .social-icons .icon img {
        width: 66px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 236px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 47px;
        left: 340px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 99px;
        left: 442px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 448px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 47px;
        right: 340px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 236px;
        bottom: 5px;
    }

    section.Home-banner .content-area .testimonials-slideshow .author-details h5 {
        font-size: 18px;
    }

    section.Home-banner .content-area .testimonials-slideshow .author-details img {
        width: 30px;
        height: 40px;
    }

    section.Home-banner .content-area .testimonials-slideshow .card-body {
        padding: 15px;
    }

    section.Home-banner .content-area .testimonials-slideshow .card-body.slick-active {
        width: 420px;
    }

    section.Home-banner .content-area .testimonials-slideshow .slick-track {
        transition: transform 0.60s ease !important;
    }

    section.with-without-buzzfull .the-content-area {
        padding: 0px 40px;
    }

    section.with-without-buzzfull .the-content-area .accordion {
        padding: 30px;
    }

    section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings h2 {
        font-size: 36px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content h6 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    section.with-without-buzzfull .the-content-area .accordion .the-tabs-area .the-tab {
        padding: 10px 25px;
        font-size: 14px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .learn-more {
        margin-top: 20px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .learn-more a {
        font-size: 14px;
    }
    
    section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings sup {
        top: -20px;
    }

    section.our-expertise h2 {
        font-size: 40px;
        line-height: 40px;
    }

    section.our-expertise p {
        font-size: 18px;
    }

    section.our-expertise .learn-about-btn a {
        font-size: 16px;
    }

    section.our-expertise .video .video-control button img {
        width: 80px;
    }

    section.our-process .navigating-card {
        background-position: top 230px left 250px;
    }

    section.global-expertise .global-expertise-content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    section.global-expertise .global-expertise-content p {
        font-size: 16px;
    }

    section.global-expertise .global-expertise-content h3 {
        font-size: 30px;
    }


    section.global-expertise .global-expertise-content .text-size {
        text-align: center;
    }

    section.global-expertise .global-expertise-content .text-size p {
        font-size: 14px;
    }

    section.our-process .navigating-card .our-process-content h2 {
        font-size: 36px;
    }

    section.our-process .navigating-card .our-process-content h3 {
        font-size: 20px;
    }

    section.our-process .navigating-card .our-process-content p {
        font-size: 14px;
    }

    section.our-services {
        padding-bottom: 80px;
    }

    section.our-services .service .service-logo {
        padding: 10px;
    }

    section.our-services .service .service-logo img {
        width: 36px;
    }

    section.our-services .service .service-content h3 {
        font-size: 22px;
    }

    /*section.service-tier .services-plan p:nth-of-type(1) {*/
    /*min-height: 120px;*/
    /*}*/

    section.service-tier .service-tier-heading h2 {
        font-size: 40px;
    }

    section.service-tier .service-tier-heading p {
        font-size: 16px;
    }

    section.service-tier .services-plan h3 {
        font-size: 32px;
    }

    section.our-blog .homePage-blogs h2 {
        font-size: 40px;
    }

    section.our-blog .homePage-blogs p {
        font-size: 16px;
    }

    section.our-blog .homePage-blogs .grid_content h3 {
        font-size: 20px;
    }

    section.our-blog .homePage-blogs .grid_content p {
        font-size: 14px;
    }

    section.our-blog .homePage-blogs .grid_content .text-end img {
        width: 30px;
    }

    section.contact-us .the-content-area {
        padding: 0px 40px;
    }

    section.contact-us .the-content-area .contact-us-text {
        padding: 0px 40px;
    }

    section.contact-us .the-content-area .contact-us-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    section.contact-us .the-content-area .contact-us-text p {
        font-size: 14px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form input,
    section.contact-us .the-content-area .contact-form-border .contact-form select {
        font-size: 14px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
        font-size: 16px;
    }

    section.contact-us .the-content-area .contact-form-border .background {
        background-position: bottom 150px right;
    }

    footer .footer-content .menu-area h3,
    footer .footer-content .resourse-links h3,
    footer .footer-content .contact-us h3 {
        font-size: 22px;
    }

    /*Map Styling (max-width: 1200px) Start*/
    .team-member {
        width: 25px;
        height: 25px;
    }

    .location-tooltip .map-arrow img {
        margin-left: 12px;
    }

    section.global-expertise #dalton {
        top: 50px;
        left: 70px;
    }

    section.global-expertise #antonio {
        top: 110px;
        left: 110px;
    }

    section.global-expertise #juan {
        top: 220px;
        left: 180px;
    }

    section.global-expertise #marty {
        top: 40px;
        left: 220px;
    }

    section.global-expertise #jim {
        top: 60px;
        left: 390px;
    }

    section.global-expertise #chris {
        top: 40px;
        left: 470px;
    }

    section.global-expertise #joanna {
        top: 90px;
        left: 320px;
    }

    section.global-expertise #claudia {
        top: 130px;
        left: 420px;
    }

    section.global-expertise #haley {
        top: 200px;
        left: 310px;
    }

    section.global-expertise #monica {
        top: 160px;
        left: 280px;
    }

    section.global-expertise #mai {
        top: 240px;
        left: 480px;
    }

    /*Map Styling (max-width: 1200px) End*/

    section.our_experience_video_section .video .video-control button img {
        width: 80px;
    }

    section.faq-banner .banner-content h1 {
        font-size: 50px;
    }

    section.faq-banner .banner-content p {
        font-size: 18px;
    }

    section.faq .accordion .accordion-header button {
        font-size: 22px;
    }

    section.faq .faq-heading {
        width: 75%;
    }

    section.our-expertise h2 {
        font-size: 40px;
    }

    /*Page About Us style*/
    .about_section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .about_section .container .about-us-banner-area p {
        font-size: 18px;
    }

    section.emotive-purpose .the-content-area .the-details {
        padding-right: 40px;
    }

    section.emotive-purpose .the-content-area .the-details h2 {
        font-size: 32px;
    }

    .emotive-purpose .the-video {
        margin: auto 0px;
    }

    section.emotive-purpose .the-content-area .the-video video {
        border-radius: 40px;
    }

    section.global-expertise .global-expertise-content h2 span {
        line-height: 40px;
    }

    section.global-expertise .map-expertise {
        margin: auto 0px;
    }

    section.team_section .the-headings {
        padding-bottom: 20px;
    }

    .team_section .info_about_designers .description p {
        font-size: 14px;
    }


    section.meet-our-team .our-team-content h2 {
        font-size: 40px;
    }

    section.meet-our-team .our-team-content p {
        font-size: 16px;
    }

    section.meet-our-team .our-team-slider .border .our-team-info .our-team-content h3 {
        font-size: 18px;
    }

    section.meet-our-team .our-team-slider .border .our-team-info .our-team-content p {
        font-size: 14px;
    }


    .experience_section .our-experience-content p:nth-child(1) {
        font-size: 20px;
    }

    .experience_section .our-experience-content p {
        font-size: 16px;
    }

    .experience_section .experience_card {
        background-size: 95% 100%;
        padding: 20px 20px;
    }

    .experience_section .experience_card .fortune {
        background-size: 100% 100%;
    }

    .experience_section .experience_card p {
        font-size: 12px;
    }

    .experience_section .experience_card p strong {
        font-size: 15px;
    }

    .crops_section .container .value {
        padding-bottom: 50px;
    }

    .crops_section .bold_creativity {
        padding: 0px;
    }

    .crops_section .bold_creativity .bold_creativity_img img {
        width: 50%;
    }

    .crops_section .horizontal-line {
        background-size: 50%;
        background-position: top 80px right 228px;
    }

    .crops_section .bold_creativity_content {
        padding: 40px 6px 0px;
    }

    .crops_section .bold_creativity_content p {
        font-size: 15px;
    }

    .team_section .designer_name h6 {
        font-size: 18px;
    }

    .team_section .designer_name p {
        font-size: 16px;
    }

    .fortune h3 {
        font-size: 50px;
    }

    .bold_creativity_content h3 {
        font-size: 20px;
    }

    section.emotive-purpose .video-controls button img {
        width: 45px;
    }

    .team_section .container .row .col-lg-4m {
        padding-left: 35px;
    }

    .experience_section .experience_card .fortune h3 {
        font-size: 26px;
    }

    .experience_section .our-experience-content h2 {
        font-size: 46px;
    }

    .crops_section .container .value h2 {
        font-size: 48px;
    }

    section.use-cases .the-content-area .the-use-case {
        height: 250px;
    }

    /*Page about us style finish*/

    .form-hero-section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .form-hero-section .container .about-us-banner-area p {
        font-size: 18px;
    }

    /*Page blog css start*/
    .blog-banner .container .about-us-banner-area p {
        font-size: 18px;
    }

    section.behind-our-comapny {
        background-size: 80%;
    }
    
    section.linkedin-feeds h2,
    section.buzzful-blogs .the-headings-area h2 {
        font-size: 40px;
    }

    section.discover-our-articles .the-content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    section.discover-our-articles .the-blog-slider .slick-dotted .slick-dots {
        bottom: 140px;
    }

    section.behind-our-comapny .the-background-area {
        background-position: right top 30px;
        background-size: 10%;
        padding: 0px 40px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content h2 {
        font-size: 32px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        width: 550px;
        margin-left: -55px;
    }

    section.buzzful-blogs .blog-part .grid_img img {
        height: 215px;
    }

    footer .footer-content .menu-area h3,
    footer .footer-content .resourse-links h3,
    footer .footer-content .contact-us h3 {
        font-size: 22px;
    }

    /*page blog css end*/

    section.contact-us .referee h2 {
        font-size: 36px;
    }

    .page-template-page-services section.services-banner .banner-content {
        padding: 0px;
    }

    .page-template-page-services section.services-banner .banner-content p {
        padding: 0px;
    }
    
    .page-template-page-services .services_video_section_collapse .video .video-control button img,
    .page-template-page-services .services_video_section .video .video-control button img,
    .single-buzzfull_services .services_video_section .video .video-control button img {
        width: 60px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area .the-tab {
        padding: 10px 25px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content h2 {
        font-size: 36px;
    }

    .page-template-page-services section.service-content-details .services h3 {
        font-size: 20px;
        line-height: 22px;
    }

    .page-template-page-services section.service-content-details .services p {
        font-size: 14px;
    }

    .page-template-page-services section.service-content-details .services {
        padding: 20px 30px 30px;
    }

    .page-template-page-services section.our-services .accordion-item {
        padding-right: 25px;
    }
    
    .page-template-page-referrer-form section.contact-us .referee h2 {
        font-size: 36px;
    }
}

@media (max-width: 1199.98px) {
    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a {
        margin-left: 20px;    
    }
    
    /* For 1152 */
    section.global-expertise .map-expertise {
        order: 2;
    }
    
    section.enterprise .fortunes-card .fortune {
        padding: 10px 0px 27px;
    }
    
    section.service-tier .scroll {
        display: flex;
        align-items: center;
        position: relative;
    }

    section.service-tier .fixed-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        gap: 10px;
        padding: 10px 0px;
    }

    section.service-tier .fix-width {
        width: 300px;
    }

    section.service-tier button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: white;
        color: black;
        font-weight: 700;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
        transition: background-color 0.3s;
    }

    section.service-tier .scroll-left {
        left: -40px;
    }

    section.service-tier .scroll-right {
        right: -40px;
    }

    section.service-tier .fix-width {
        width: 300px;
    }
    
    .blog-banner .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    /*Map Styling Start*/
    section.global-expertise .team-member {
        width: 16px;
        height: 16px;
    }

    .location-tooltip .map-arrow img {
        margin-left: 12px;
    }

    section.global-expertise #chris {
        top: 232px;
        left: 239px;
    }


    section.global-expertise #juan {
        top: 221px;
        left: 142px;
    }

    section.global-expertise #joanna {
        top: 238px;
        left: 193px;
    }

    section.global-expertise #haley {
        top: 264px;
        left: 235px;
    }

    section.global-expertise #london {
        top: 187px;
        left: 446px;
    }

    section.global-expertise #galicia {
        top: 222px;
        left: 433px;
    }

    section.global-expertise #nairobi {
        top: 348px;
        left: 549px;
    }

    section.global-expertise #toronto {
        top: 217px;
        left: 255px;
    }

    section.global-expertise #berlin {
        top: 186px;
        left: 487px;
    }

    /*Map Styling End*/

    div.no-contract-benifits .the-content-area ul {
        flex-direction: column;
    }

    div.no-contract-benifits .the-content-area ul li {
        border: unset;
        margin-bottom: 10px;
        font-size: 14px;
    }

    div.no-contract-benifits .the-content-area ul li:before {
        width: 14.5px;
        height: 13px;
        left: 0px;
        top: 3px;
    }

    div.no-contract-benifits .the-content-area ul li:last-child {
        margin-bottom: 0px;
    }

    .calendar-form iframe {
        height: 900px;
    }
    
    /*section Enterprise*/
    section.enterprise .experience_card {
        padding: 0px;
    }
    
}

@media (max-width: 1151.98px) {
    /* For 1024 */

    section.Home-banner {
        padding: 200px 0px 0px 0px;
    }

    section.Home-banner .content-area .testimonials-slideshow .card-body.slick-active {
        width: 360px;
    }

    section.service-tier .scroll-left {
        left: 0px;
    }

    section.service-tier .scroll-right {
        right: 0px;
    }

    section.contact-us .the-content-area .contact-us-text h2 {
        font-size: 32px;
    }

    section.contact-us .the-content-area .contact-us-text p:nth-child(1) {
        font-size: 18px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form select {
        background-size: 15px;
    }

    section.our-process .navigating-card {
        background-position: top 230px left 250px;
    }

    /*Page About us style*/
    .about_section .container .about-us-banner-area p {
        font-size: 16px;
    }

    /*Shoaib Style for 1024 Enf*/
    .about_section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .team_section .container .col-12 h2 {
        font-size: 32px;
    }

    .team_section .container .row .col-lg-4 {
        padding-left: 50px;
        padding-right: 20px;
    }

    .team_section .info_about_designers {
        padding: 15px;
    }

    .team_section .UIdesigner {
        display: block;
    }

    .team_section .designer_name {
        width: 100%;
    }

    .team_section .social_media_icons {
        width: 100%;
        text-align: unset;
        margin-bottom: 10px;
    }

    .team_section .social_media_icons img {
        width: 30px;
    }

    section.emotive-purpose .the-content-area .the-details h2 {
        font-size: 32px;
    }

    section.global-expertise .global-expertise-content h2 {
        font-size: 32px;
    }

    section.global-expertise .global-expertise-content p:nth-child(1) {
        font-size: 18px;
    }

    section.global-expertise .global-expertise-content h3 {
        font-size: 28px;
    }

    .experience_section .our-experience-content h2 {
        font-size: 32px;
    }

    .experience_section .our-experience-content p:nth-child(1) {
        font-size: 18px;
    }

    .experience_section .our-experience-content p {
        font-size: 16px;
    }

    .experience_section .experience_card .fortune h3 {
        font-size: 28px;
    }

    .crops_section .container .value p {
        font-size: 18px;
    }

    section.use-cases .the-content-area .the-headings h2,
    .crops_section .container .value h2 {
        font-size: 32px;
    }

    section.buzzful-gives-back .the-content-area .the-content h2 {
        font-size: 40px;
    }

    /*PAge About us style fisnish*/

    .form-hero-section .container .about-us-banner-area p {
        font-size: 16px;
    }

    .form-hero-section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    /*page blog css start*/
    section.discover-our-articles .the-blog-slider .slick-track {
        left: -40px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        width: 500px;
    }

    section.discover-our-articles .the-blog-slider .slick-dotted .slick-dots {
        bottom: 150px;
    }

    /*page blog css edn*/

    section.contact-us .referee h2 {
        font-size: 32px;
    }
    
    .page-template-page-referrer-form section.contact-us .referee h2 {
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
    
    section.Home-banner {
        padding-bottom: 0px;
    }

    section.Home-banner .featured-employee {
        padding: 0px 55px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip {
        transform: translateX(-170px);
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 118px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        left: 22px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        bottom: 248px;
        left: 125px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        right: 135px;
        bottom: 248px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 200px;
        right: 21px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 239px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 47px;
        left: 340px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 95px;
        left: 440px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 449px;
        bottom: 5px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 47px;
        right: 344px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 236px;
        bottom: 5px;
    }
}

@media (max-width: 1023.98px) {
    /*for 992*/

    section.Home-banner {
        padding: 200px 0px 0px 0px;
    }
    
    /*Map Styling Start*/

    section.global-expertise #chris .location-tooltip .map-arrow {
        margin-right: 10px;
        text-align: left;
    }
    
    section.chase-impact .chase-impact-content h2 {
        font-size: 40px;
        line-height: 56px;
    }

    section.chase-impact .stat-item .stat-number {
        font-size: 28px !important;
    }
    
    /*Map Styling End*/

    section.faq .accordion .accordion-button {
        padding: 30px;
    }

    section.faq .accordion .accordion-body {
        padding: 0px 30px 30px 30px;
    }

    /*page about us style*/
    section.meet-our-team .our-team-content .padding-x {
        padding: 0px 6px;
    }

    section.meet-our-team .our-team-slider .slick-next {
        right: -16px;
    }

    .designer_name h6 {
        font-size: 17px;
    }

    .description {
        margin-top: -10px;
    }

    section.buzzful-gives-back .the-content-area .the-content h2 {
        font-size: 40px;
    }

    section.buzzful-gives-back .the-content-area .the-content .background h3 {
        font-size: 25px;
    }

    /*page about us style finish*/

    /*page blog css start*/
    .blog-banner .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .blog-banner .container .about-us-banner-area p {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {

    /*for 768*/
    header.site-header .top-menu .logo-and-menu-items-area .navbar-toggler {
        border-color: transparent;
        padding: 0px;
    }
    
    header.site-header .top-menu .logo-and-menu-items-area .navbar-toggler .navbar-toggler-icon {
        background-image: url('assets/images/menu-toggler.png');
    }

    header.site-header .top-menu .logo-and-menu-items-area .navbar-collapse {
        background-color: black;
        padding: 10px;
        z-index: 10;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item {
        margin-bottom: 10px;
    }
    
    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav {
        text-align: end;
    }
    
    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item a {
        margin-left: 0px;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 {
        margin-bottom: 0px;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a {
        background: transparent;
        padding: 0px;
        border: unset;
        margin-left: 0px;
        opacity: 0.7;
    }


    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 a {
        background-color: transparent;
        padding: 0px 0px 0px 25px;
        /*background-position: left center;*/
        margin-left: 0px;
        opacity: 0.7;
        background: none;
    }

    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-27 a:hover,
    header.site-header .top-menu .logo-and-menu-items-area ul.navbar-nav .menu-item.menu-item-16 a:hover {
        box-shadow: unset
    }

    section.Home-banner .content-area {
        width: 75%;
    }

    section.Home-banner {
        padding: 200px 0px 0px 0px;
    }
    
    /*for 856*/
    section.hero-stats-counters {
        margin: 50px 0px;
    }

    section.Home-banner .featured-employee {
        margin-top: -50px;
    }


    section.Home-banner .featured-employee .location-tooltip {
        top: -165px;
    }

    section.Home-banner .featured-employee .emp .location-tooltip .map-arrow {
        left: -15px;
        top: 59px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip .map-arrow {
        left: 113px;
    }

    section.Home-banner .featured-employee {
        padding: 0px;
    }

    section.Home-banner .featured-employee .emp img.emp-img {
        width: 70px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        left: -29px;
        bottom: 165px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 58px;
        bottom: 200px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        right: 66px;
        bottom: 200px;
    }


    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 165px;
        right: -30px;
    }

    section.Home-banner .social-icons .icon img {
        width: 65px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 151px;
        bottom: 1px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 35px;
        left: 237px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 77px;
        left: 323px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 328px;
        bottom: 1px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 35px;
        right: 242px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 148px;
        bottom: 1px;
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat h3 {
        margin-top: 0px;
    }

    section.Home-banner .content-area .testimonials-slideshow {
        width: 100%;
    }

    section.hero-stats-counters .the-content-area .the-content {
        padding: 20px;
        border-radius: 40px;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(3) .the-stat.before,
    section.hero-stats-counters .the-content-area .text-center:nth-of-type(4) .the-stat.before {
        margin-top: 15px;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(3) .the-stat.before::before {
        content: none;
    }


    section.hero-stats-counters .the-content-area .the-content .the-stat h3 {
        font-size: 20px;
    }

    section.with-without-buzzfull .the-content-area {
        padding: 0px;
    }

    section.our-expertise .video {
        margin-top: 40px !important;
    }

    section.our-expertise .video .video-control button img {
        width: 60px;
    }

    section.our-services .service .service-content h3 {
        font-size: 20px;
    }

    section.our-services .margin-top {
        margin-top: 40px;
    }

    section.our-services .margin-bottom {
        margin-bottom: 0px;
    }

    section.global-expertise .map-expertise img {
        margin-top: 20px;
    }

    section.our-process .navigating-card {
        background-position: top 310px left 194px;
    }

    section.our-process .navigating-card .our-process-content h2 {
        font-size: 34px;
    }

    section.contact-us .the-content-area {
        padding: 0px;
    }

    section.contact-us .the-content-area .contact-form-border {
        padding: 30px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
        font-size: 13px;
    }

    /*Map Styling Start*/

    .location-tooltip .tooltip-text img {
        margin-top: 0px !important;
    }

    .location-tooltip .map-arrow img {
        margin-top: 0px !important;
    }

    /*Map Styling Start*/
    section.global-expertise .team-member {
        width: 14px;
        height: 14px;
    }

    section.global-expertise #chris {
        top: 191px;
        left: 175px;
    }

    section.global-expertise #juan {
        top: 181px;
        left: 108px;
    }

    section.global-expertise #haley {
        top: 217px;
        left: 177px;
    }

    section.global-expertise #joanna {
        top: 199px;
        left: 149px;
    }

    section.global-expertise #london {
        top: 157px;
        left: 333px;
    }

    section.global-expertise #galicia {
        top: 186px;
        left: 326px;
    }

    section.global-expertise #nairobi {
        top: 278px;
        left: 409px;
    }

    section.global-expertise #toronto {
        top: 171px;
        left: 190px;
    }

    section.global-expertise #berlin {
        top: 162px;
        left: 361px;
    }

    /*Map Styling End*/

    section.our-process .navigating-card {
        background-position: top 200px left 194px;
    }

    section.our-process .navigating-card .our-process-content .single-process-content h3 {
        font-size: 22px;
    }

    section.service-tier .service-tier-heading {
        width: 75%;
    }

    section.service-tier .service-tier-heading h2 {
        font-size: 32px;
    }

    section.our_experience_video_section .video .video-control button img {
        width: 60px;
    }

    section.our_experience_video_section .our_experience_video {
        border-radius: 18px;
    }

    section.service-tier button {
        width: 30px;
        height: 30px;
    }

    section.contact-us .the-content-area .contact-form-border .background {
        background-position: bottom 170px right;
        background-size: 12%;
    }

    section.faq .accordion h3 {
        font-size: 28px;
    }

    section.faq .accordion .accordion-header button {
        font-size: 18px;
    }

    /*Page about us style*/
    section.meet-our-team .padding-bottom {
        padding-bottom: 40px;
    }

    .designer_name h6 {
        font-size: 21px;
    }

    .designer_name p {
        font-size: 18px;
    }

    .fortune h3 {
        font-size: 70px;
    }

    .bold_creativity_content h3 {
        font-size: 30px;
    }

    .about_section .container .about-us-banner-area h1 {
        font-size: 40px;
    }

    section.emotive-purpose .the-content-area .the-details {
        padding-bottom: 20px;
    }

    section.emotive-purpose .the-content-area .the-video video {
        margin-top: 20px;
        border-radius: 70px;
    }

    section.global-expertise .map-expertise img {
        margin-top: 20px;
    }

    .experience_section .experience_card {
        margin-bottom: 20px;
        padding: 40px;
    }

    .crops_section .horizontal-line {
        background-image: unset;
    }

    .crops_section .bold_creativity {
        padding-bottom: 40px;
    }

    .experience_section .card-margin {
        margin-bottom: 25px;
    }

    .experience_section .card-margin:nth-child(3),
    .experience_section .card-margin:nth-child(4) {
        margin-bottom: 0px;
    }

    section.use-cases .the-content-area .the-headings {
        margin-bottom: 20px;
    }

    section.use-cases .the-content-area .the-use-case {
        border-radius: 0px !important;
    }

    /*section.buzzful-gives-back .the-content-area .the-content .background img {*/
    /*    width: 30%;*/
    /*}*/


    section.buzzful-gives-back .the-content-area .the-content p:nth-of-type(1) {
        font-size: 18px;
    }

    section.buzzful-gives-back .the-content-area .the-content .background {
        padding: 30px;
    }

    section.buzzful-gives-back .the-content-area .the-content .background p {
        font-size: 15px !important;
    }

    section.buzzful-gives-back .the-content-area .the-content h2 {
        font-size: 30px;
    }

    section.buzzful-gives-back .the-content-area .the-content p {
        font-size: 16px;
    }

    .crops_section,
    section.team_section {
        padding-bottom: 0px;
        background-image: unset;
    }

    .experience_section .experience_card .fortune {
        background-size: 75% 100%;
        height: 70%;
    }

    .experience_section .experience_card p strong {
        font-size: 20px;
    }

    section.use-cases .the-content-area .the-headings {
        padding: 0px;
    }

    section.buzzful-gives-back .the-content-area .the-content .background h3 {
        margin-bottom: 10px;
    }

    section.buzzful-gives-back .the-content-area .row-card {
        margin-top: 24px;
    }

    section.meet-founder .image-part {
        margin-top: 50px;
    }

    /*page about us style fisnish*/

    .form-hero-section .container .about-us-banner-area h1 {
        font-size: 40px;
    }

    /*page blog css start*/
    section.behind-our-comapny .the-background-area {
        background-position: right top 33px;
        background-size: 6%;
        padding: 0px 20px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content {
        padding: 20px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content h2 {
        font-size: 24px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content img {
        width: 25%;
    }

    section.discover-our-articles .container-fluid {
        max-width: 720px;
        padding-left: 0px;
    }

    section.discover-our-articles .the-content {
        padding-bottom: 30px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        width: 600px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area img {
        width: 70%;
    }

    section.discover-our-articles .the-blog-slider .slick-dotted .slick-dots {
        position: unset;
        width: 100%;
    }

    .blog_video_section .our_blog_video {
        border-radius: 18px;
        padding: 2px;
    }

    /*page blog css end*/

    /*page services css start*/
    .page-template-page-services section.services-banner .banner-content h1 {
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    .page-template-page-services .services_video_section_collapse .our_services_video_collapse,
    .page-template-page-services .services_video_section .our_services_video, 
    .single-buzzfull_services .services_video_section .our_services_video {
        border-radius: 20px;
    }

    .page-template-page-services section.services-tiers-categoires .the-content-area {
        padding: 0px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content {
        margin-bottom: 40px !important;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content h2 {
        font-size: 32px;
    }

    .page-template-page-services section.service-content-details .services {
        padding: 20px 20px 40px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .text-alignment {
        text-align: center;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area {
        display: grid;
        width: 100%;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area .the-tab {
        text-align: left;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .odd,
    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .even {
        margin-top: 0px !important;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .odd .sub-category-content,
    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .even .sub-category-content {
        padding: 0px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content h2 {
        font-size: 32px;
    }

    /*page services css end*/

    section.contact-us iframe {
        height: 850px;
    }

    section.contact-us .accordion-buttons {
        margin-bottom: 30px;
    }

    /*page single css start*/
    section.main-content .blog-content {
        margin-right: 0px;
    }

    section.main-content .blog-content h1 {
        font-size: 28px;
    }

    section.main-content .blog-list {
        margin-top: 30px;
    }

    section.main-content .blog-content h2 {
        font-size: 25px;
    }

    section.main-content .social-shares .social-icons {
        justify-content: center;
    }

    section.main-content .social-shares .social-icons a {
        margin: 0px 15px;
    }

    /*page single css end*/
    
    /*page terms and conditions css start*/
    section.term-conditions h1 {
        font-size: 50px;
    }
    
    section.term-conditions h2 {
        font-size: 28px;
    }
    /*page terms and conditions css end*/
    
    /*page privacy policy css start*/
    section.privacy-policy h1 {
        font-size: 50px;
    }
    
    section.privacy-policy h2 {
        font-size: 28px;
    }
    
    section.privacy-policy h3 {
        font-size: 22px;
    }
    /*page privacy policy css*/
}

@media (max-width: 855.98px) {
    section.Home-banner .featured-employee {
        text-align: center;
    }

    section.Home-banner .featured-employee img.desktop-animation {
        width: 90%;
    }

    section.Home-banner .featured-employee .emp img.emp-img {
        width: 60px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        left: 12px;
        bottom: 121px;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 90px;
        bottom: 165px;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        right: 98px;
        bottom: 168px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        right: 12px;
        bottom: 121px;
    }

    section.Home-banner .featured-employee .location-tooltip {
        top: -156px;
        transform: translateX(-66%);
    }

    section.Home-banner .social-icons .icon img {
        width: 55px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        left: 175px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 35px;
        left: 250px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        bottom: 72px;
        left: 328px;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        left: 334px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        bottom: 35px;
        right: 255px;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        right: 172px;
    }
}

@media (max-width: 767.98px) {
    /*for 576*/

    header.site-header .top-menu .logo-and-menu-items-area a.menu-logo-link .the-logo {
        width: 75%;
    }

    section.Home-banner .content-area {
        width: 100%;
    }

    section.Home-banner {
        background-size: 100%;
    }

    section.Home-banner .desktop-animation {
        display: none;
    }

    section.Home-banner .content-area .the-content ul li {
        font-size: 12px;
    }

    section.Home-banner .content-area .the-content ul li:before {
        height: 10px;
    }

    section.Home-banner .mobile-animation {
        margin-top: 80px;
    }

    section.Home-banner .featured-employee .emp:nth-child(1) {
        display: none;
    }

    section.Home-banner .featured-employee .emp:nth-child(3) {
        display: none;
    }

    section.Home-banner .social-icons .icon img {
        width: 80px;
    }

    section.Home-banner .social-icons .icon:nth-child(1) {
        display: none;
    }

    section.Home-banner .social-icons .icon:nth-child(6) {
        display: none;
    }

    section.Home-banner .social-icons .icon:nth-child(4) {
        display: none;
    }

    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 76px;
        bottom: 246px;
        z-index: 3;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 245px;
        right: 98px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 17px;
        left: 54px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 223px;
        bottom: 100px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 54px;
        bottom: 17px;
    }

    section.Home-banner .content-area .testimonials-slideshow {
        position: unset;
        width: 100%;
        left: unset;
        bottom: unset;
    }
    
    section.enterprise .fortunes-card .fortune {
        padding: 15px 0px 30px;
    }
    
    section.faq-banner .banner-content h1 {
        font-size: 40px;
    }
 

    section.our-blog,
    section.with-without-buzzfull,
    section.our-process,
    section.our_experience_video_section,
    section.faq-banner,
    section.hero-stats-counters,
    section.our-services,
    section.our-expertise,
    section.service-tier,
    section.global-expertise,
    .page-id-7 section.contact-us,
    .section.contact-us {
        margin: 80px 0px;
    }

    section.our-expertise,
    section.service-tier,
    section.our-services,
    section.our-process {
        background-image: unset;
        padding-bottom: 0px;
    }

    section.our-services .col-md-6.col-lg-4.mb-5:last-child {
        margin-bottom: 0px !important;
    }

    section.our-partners-logos .the-headings h2 {
        font-size: 28px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form input[type="submit"],
    section.our-expertise .learn-about-btn a,
    section.service-tier .action-btn a.refer-frnd,
    section.Home-banner .content-area .the-content a,
    section.our-process .get-start-text a,
    section.our-services .view-all-services a {
        font-size: 16px;
        padding: 14px 40px 13px;
    }

    section.hero-stats-counters .the-content-area .the-content {
        border-radius: 50px;
    }

    section.our-partners-logos {
        margin: 50px 0;
    }

    section.our-expertise p:nth-child(1),
    section.our-services p:nth-child(1),
    section.global-expertise .global-expertise-content p:nth-child(1),
    section.our-process .navigating-card .our-process-content p:nth-child(1),
    section.service-tier .service-tier-heading p:nth-child(1) {
        font-size: 20px;
    }


    section.faq .faq-heading h2,
    section.our-expertise h2,
    section.our-services h2,
    section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings h2,
    section.global-expertise .global-expertise-content h2,
    section.our-blog .homePage-blogs h2 {
        font-size: 32px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content h6 {
        font-size: 18px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area .the-content {
        height: auto;
        overflow: unset;
    }

    section.with-without-buzzfull .the-content-area .accordion {
        background-image: url('assets/images/serivice-plan.png');
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area {
        padding-left: 0px;
        padding-top: 10px;
    }

    section.with-without-buzzfull .the-content-area .accordion .tab-content-area::before {
        content: unset;
    }

    section.our-process .navigating-card .our-process-content h2 {
        font-size: 32px;
        line-height: unset;
    }

    section.our-process .navigating-card {
        background-image: unset;
    }

    section.our-process .navigating-card .our-process-content .padding {
        padding: 30px 0px;
    }

    section.our-process .get-start-text {
        width: 100%;
    }

    section.service-tier .service-tier-heading {
        width: 100%;
    }

    section.service-tier .ppc-line {
        margin-top: 50px;
    }

    section.our-blog .homePage-blogs .grid_img img {
        border-radius: 20px;
    }

    section.our-blog .homePage-blogs a.all-blogs-btn {
        padding: 15px 40px;
    }

    section.our-blog .homePage-blogs .grid_content {
        padding: 10px;
    }

    section.contact-us .the-content-area .contact-form-border {
        background-image: url('assets/images/form-mobile-background.png');
    }

    section.contact-us .the-content-area .contact-us-text {
        padding: 0px;
    }

    section.contact-us .the-content-area .contact-us-text h2 {
        margin-bottom: 10px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .margin-bottom {
        margin-bottom: 15px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span.heading {
        font-size: 16px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p.align {
        margin: 10px 40px 10px 40px;
    }

    footer .footer-content .menu-area::before {
        top: 45%;
        right: 50px;
        height: 80%;
    }

    footer .footer-content .resourse-links::before {
        content: unset;
    }

    footer .copyright-area .copyright-text p {
        font-size: 14px;
    }

    footer .copyright-area .terms-privacy a {
        font-size: 13px;
    }

    /*Map Styling Start*/

    .location-tooltip .map-arrow img {
        margin-left: 8px;
    }


    /*Map Styling Start*/

    section.global-expertise .team-member {
        width: 11px;
        height: 11px;
    }

    section.global-expertise .team-member.global {
        width: 8px;
        height: 8px;
    }

    .location-tooltip .map-arrow img {
        margin-left: 8px;
    }

    section.global-expertise .location-tooltip {
        left: -20px;
        bottom: 7px;
    }

    section.global-expertise #claudia .location-tooltip {
        left: -170px;
    }

    section.global-expertise #chris {
        top: 146px;
        left: 133px;
    }

    section.global-expertise #juan {
        top: 140px;
        left: 83px;
    }

    section.global-expertise #haley {
        top: 165px;
        left: 133px;
    }

    section.global-expertise #joanna {
        top: 151px;
        left: 113px;
    }

    section.global-expertise #london {
        top: 122px;
        left: 251px;
    }

    section.global-expertise #galicia {
        top: 143px;
        left: 245px;
    }

    section.global-expertise #nairobi {
        top: 209px;
        left: 308px;
    }

    section.global-expertise #toronto {
        top: 131px;
        left: 144px;
    }

    section.global-expertise #berlin {
        top: 125px;
        left: 271px;
    }

    /*Map Styling End*/

    section.our_experience_video_section .our_experience_video {
        border-radius: 16px;
    }

    sectionsection.our_experience_video_section {
        margin: 50px 0px;
    }


    section.faq-banner .banner-content {
        padding: 0px;
    }

    section.faq-banner .banner-content p {
        font-size: 16px;
    }

    section.faq .faq-heading {
        width: 100%;
    }

    section.faq .faq-heading p {
        font-size: 16px;
    }

    section.faq .accordion .accordion-item.active {
        background-image: unset !important;
        border-radius: 20px;
        border: 2px solid #EE7F1A;
    }

    section.faq .accordion .accordion-button::after {
        background-size: 80%;
    }

    section.faq .accordion .accordion-button:not(.collapsed)::after {
        background-size: 80%;
    }

    section.faq .accordion .accordion-button {
        padding: 20px;
    }

    section.faq .accordion .accordion-body {
        padding: 0px 20px 20px 20px;
    }

    div.no-contract-benifits {
        margin: 50px 0px;
    }

    div.no-contract-benifits .the-content-area ul {
        display: block;
        text-align: left;
        padding-top: 0px;
    }

    div.no-contract-benifits {
        margin: 30px 0px 10px;
    }

    section.service-tier .action-btn {
        margin: 30px 0px;
    }

    /*Home page give back section styling*/
    section.home-buzzful-gives-back .the-content {
        padding: 0px;
    }

    section.home-buzzful-gives-back .the-content-area .the-content h2 {
        font-size: 32px;
    }


    /*Page about us style*/
    .emotive-purpose .video-controls {
        position: absolute;
        top: 40px;
        left: 25px;
    }
    
    section.emotive-purpose .video-controls button img {
        width: 40px;
    }
    
    section.meet-our-team .our-team-content .padding-x {
        padding: 0px 4px;
    }

    section.meet-our-team .our-team-slider .slick-next {
        right: -12px;
    }

    .team_section .container .row .col-lg-4 {
        width: 90%;
        padding-right: 28px;
    }

    .about_section .container .about-us-banner-area p {
        font-size: 16px;
    }

    .team_section .social_media_icons img {
        width: 30px;
    }

    .designer_name h6 {
        font-size: 30px;
    }

    .designer_name p {
        font-size: 22px;
    }

    .experience_section .experience_card p {
        font-size: 16px;
    }

    .experience_section .experience_card {
        padding: 30px;
    }

    .crops_section .container .value {
        padding-bottom: 0px;
    }

    .crops_section .bold_creativity {
        padding: 30px 10px;
    }

    .crops_section .bold_creativity_content p {
        font-size: 16px;
    }

    section.emotive-purpose .the-content-area .the-details {
        padding-right: 0px;
    }

    section.emotive-purpose .the-content-area .the-video video {
        border-radius: 50px;
    }

    .experience_section .experience_card {
        background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/transforming-marketing-bg-mobile.png');
    }

    .experience_section .card-margin:nth-child(3) {
        margin-bottom: 25px;
    }

    section.about_section,
    section.emotive-purpose,
    section.team_section,
    section.experience_section,
    section.use-cases,
    section.crops_section {
        margin: 80px 0px;
    }


    section.use-cases .the-content-area .the-headings h2,
    section.emotive-purpose .the-content-area .the-details h2,
    section.global-expertise .global-expertise-content h2,
    .team_section .container .col-12 h2,
    .experience_section .our-experience-content h2,
    crops_section .container .value h2,
    section.buzzful-gives-back .the-content-area .the-content h2 {
        font-size: 32px;
    }

    section.emotive-purpose .the-content-area .the-details h5,
    section.global-expertise .global-expertise-content p:nth-child(1),
    .experience_section .our-experience-content p:nth-child(1),
    .crops_section .container .value p,
    section.buzzful-gives-back .the-content-area .the-content p:nth-of-type(1) {
        font-size: 18px;
    }

    section.use-cases .the-content-area .the-use-case:nth-child(1) {
        border-radius: 20px 20px 0px 0px !important;
    }

    .experience_section .experience_card .fortune {
        background-size: 42% 100%;
        justify-content: center;
        height: 60%;
    }

    .experience_section .experience_card p strong {
        font-size: 20px;
    }

    section.buzzful-gives-back .the-content-area .the-image img {
        height: 315px;
    }

    section.buzzful-gives-back .the-content-area .the-content.order {
        order: 1;
    }

    section.buzzful-gives-back .the-content-area .the-image {
        order: 2;
        margin-top: 30px;
    }

    section.buzzful-gives-back .the-content-area .row-card {
        order: 3;
    }

    /*page about us style fisnish*/

    .form-hero-section .container .about-us-banner-area p {
        font-size: 16px;
    }

    section.Home-banner .content-area .the-content a {
        padding: 16px 55px 15px;
    }

    /*Page blog css start*/
    .blog-banner .container .about-us-banner-area h1 {
        font-size: 40px;
    }

    section.blog-banner,
    section.behind-our-comapny,
    section.buzzful-blogs,
    section.discover-our-articles,
    section.blog_video_section {
        margin: 80px 0px;
    }

    .blog-banner .container .about-us-banner-area p {
        font-size: 16px;
    }

    section.behind-our-comapny {
        margin: 50px 0px;
    }

    section.behind-our-comapny .the-background-area .the-background {
        background-image: url('https://outswarm.com/wp-content/themes/buzzfulmedia/assets/images/buzzful-media-mobile-background.png');
    }

    section.behind-our-comapny .the-background-area {
        background-position: right top 20px;
        background-size: 10%;
        padding: 0px 20px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content {
        padding: 20px 0px;
    }

    section.behind-our-comapny .the-background-area .the-background .the-content img {
        width: 8%;
    }

    section.buzzful-blogs .the-headings-area p {
        font-size: 16px;
    }

    section.discover-our-articles .container-fluid {
        max-width: 540px;
    }

    section.discover-our-articles .the-blog-slider .slick-track {
        left: 0px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        margin-left: 0px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area {
        padding: 20px 10px;
    }

    .blog_video_section .video .video-control button img {
        width: 60px;
    }

    .page-id-9 section.contact-us {
        background-image: unset;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        padding: 0px;
    }

    /*page blog css end*/

    section.contact-us .the-content-area .clarity {
        padding: 0px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
        font-size: 0px;
        margin: 2px 0px;
    }


    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p:first-child {
        align-items: flex-start;
    }

    /*page services css start*/
    .page-template-page-services section.services_video_section,
    .page-template-page-servicessection.services-banner,
    .page-template-page-services section.service-tier,
    .page-template-page-services section.our-services,
    .page-template-page-services section.service-content-details {
        margin: 50px 0px;
    }

    .page-template-page-services section.services-banner .banner-content h1 {
        font-size: 40px;
    }

    .page-template-page-services section.services-banner .banner-content p {
        font-size: 16px;
    }

    .page-template-page-services section.service-content-details .head-content .head-detail {
        padding: 0px;
    }

    .page-template-page-services section.service-content-details .head-content .head-detail h2 {
        font-size: 26px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content h2 {
        line-height: 40px;
    }

    .page-template-page-services section.service-content-details .services img {
        width: 20%;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian img {
        margin-bottom: 20px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .the-tabs-area {
        border-radius: 20px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .odd .image-area,
    .page-template-page-services section.service-content-details .service-collapse-content .accordion .even .image-area {
        order: 1;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion .odd .content-area,
    .page-template-page-services section.service-content-details .service-collapse-content .accordion .even .content-area {
        order: 2;
    }

    .page-template-page-services section.our-services .accordion-item {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-template-page-services section.our-services .accordion-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #8080803b;
    }

    .page-template-page-services section.service-content-details .head-content {
        margin-bottom: 50px;
    }

    .page-template-page-services section.our-services .service .service-logo {
        margin-right: 20px;
    }

    .page-template-page-services section.our-services .service .service-logo img {
        width: 30px;
    }

    .page-template-page-services section.our-services .service .service-content h3 {
        font-size: 18px;
    }

    /*page sercices css end*/

    section.main-content .blog-content {
        padding: 15px;
    }
    
    /*page terms and conditions css start*/
    section.term-conditions h1 {
        font-size: 44px;
    }
    
    section.term-conditions h2 {
        font-size: 28px;
    }
    /*page terms and conditions css end*/
    
    /*page privacy policy css start*/
    section.privacy-policy h1 {
        font-size: 50px;
    }
    
    section.privacy-policy h2 {
        font-size: 28px;
    }
    /*page privacy policy css*/
    
    /*SECTION ENTERPRISE*/
    section.enterprise .heading-part {
        margin-bottom: 0px;    
    }
      
    section.enterprise .experience_card {
          padding: 0px 30px;
    }
      
    section.enterprise .fortunes-card .fortune {
          margin-top: 50px;
    }
    
    section.our-partners-logos {
        margin: 0px 0px 50px;
    }
    
    section.chase-impact {
        margin: 50px 0px;
    }
    
    
    section.chase-impact .chase-impact-content {
        margin-bottom: 20px;
    }

    section.chase-impact .chase-impact-content h2 {
        font-size: 28px;
        line-height: 42px;
    }

    section.chase-impact .stat-item.middle-col.animate {
        border: none;
    }

    section.chase-impact .stat-item .stat-number {
        font-size: 24px !important;
    }
}

@media (max-width: 575.98px) {

    /*for 414*/
    header.site-header .top-menu .logo-and-menu-items-area a.menu-logo-link {
        width: 80%;
    }
    
    header.site-header .top-menu {
        padding: 10px 0px;
    }
    
    sup {
        font-size: 12px;
        top: -20px;
    }
    
    section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings sup {
        font-size: 12px;
    }
    
    section.Home-banner .content-area .the-content h1 {
        font-size: 32px;
        line-height: 50px;
    }

    section.Home-banner .content-area .the-content p {
        font-size: 18px;
    }
    
    section.chase-impact .chase-impact-content h2 {
        padding: 0px 0px;
        font-size: 28px;
    }
    
    section.enterprise .fortunes-card .fortune {
          padding: 12px 0px 28px;
    }
    
    section.our-expertise .learn-about-btn {
        margin-top: 25px;
    }

    section.Home-banner .content-area .the-content a:last-child {
        /*margin-left: 10px;*/
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat.before {
        padding-left: 0px;
    }

    .hero-stats-counters .the-content-area .justify-content-center {
        margin: 0px;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(2) .the-stat.before,
    section.hero-stats-counters .the-content-area .text-center:nth-of-type(4) .the-stat.before {
        margin-top: 15px;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(2) .the-stat.before::before,
    section.hero-stats-counters .the-content-area .text-center:nth-of-type(4) .the-stat.before::before {
        content: none;
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat {
        position: relative;
        text-align: center;
        padding-bottom: 15px;
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 33%;
        height: 1px;
        background-color: #d3d3d37a;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(4) .the-stat.before {
        padding-bottom: 0px;
    }

    section.hero-stats-counters .the-content-area .text-center:nth-of-type(4) .the-stat.before::after {
        display: none;
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat h3 {
        font-size: 25px;
    }

    section.hero-stats-counters .the-content-area .the-content .the-stat p {
        font-size: 16px;
    }

    section.with-without-buzzfull .the-content-area .accordion {
        padding: 30px 10px;
    }

    section.contact-us {
        margin: 50px 0px;
    }

    footer .footer-content .menu-area::before {
        content: unset;
    }

    footer .copyright-area {
        text-align: center !important;
    }

    footer .copyright-area .terms-privacy {
        text-align: center !important;
    }

    section.our-services h2,
    section.our-expertise h2,
    section.global-expertise .global-expertise-content h2,
    section.our-process .navigating-card .our-process-content h2,
    section.our-blog .homePage-blogs h2,
    section.service-tier .service-tier-heading h2,
    section.with-without-buzzfull .the-content-area .accordion .the-headings-area .the-headings h2,
    section.contact-us .the-content-area .contact-us-text h2 {
        font-size: 28px;
    }

    section.faq .faq-heading h2 {
        font-size: 25px;
    }

    section.our-expertise h2 {
        line-height: normal;
    }

    section.our-expertise p:nth-child(1),
    section.global-expertise .global-expertise-content p:nth-child(1),
    section.our-process .navigating-card .our-process-content p:nth-child(1),
    section.service-tier .service-tier-heading p:nth-child(1),
    section.our-services p:nth-child(1) {
        font-size: 18px;
    }

    section.our-expertise p,
    section.our-expertise p {
        font-size: 16px;
    }

    section.global-expertise .global-expertise-content h3 {
        font-size: 22px;
    }

    section.global-expertise #chris {
        top: 122px;
        left: 113px;
    }

    section.global-expertise #juan {
        top: 119px;
        left: 71px;
    }

    section.global-expertise #haley {
        top: 137px;
        left: 111px;
    }

    section.global-expertise #joanna {
        top: 127px;
        left: 96px;
    }

    section.global-expertise #london {
        top: 102px;
        left: 208px;
    }

    section.global-expertise #galicia {
        top: 120px;
        left: 202px;
    }

    section.global-expertise #nairobi {
        top: 176px;
        left: 254px;
    }

    section.global-expertise #toronto {
        top: 105px;
        left: 117px;
    }

    section.global-expertise #berlin {
        top: 105px;
        left: 223px;
    }

    /*Map Styling Start*/

    .location-tooltip .tooltip-text {
        padding: 6px;
    }

    section.global-expertise .location-tooltip .tooltip-text img {
        width: 30px !important;
        margin-right: 6px;
    }

    .location-tooltip .tooltip-text h6 {
        font-size: 12px;
        margin-right: 4px;
    }

    section.global-expertise .team-member {
        width: 9px;
        height: 9px;
    }

    section.global-expertise .team-member.global {
        width: 7px;
        height: 7px;
    }


    /*Map Styling End*/

    sectionsection.our_experience_video_section .our_experience_video {
        border-radius: 10px;
    }

    section.our-process .navigating-card .our-process-content h2 {
        line-height: unset;
    }

    section.service-tier .action-btn {
        text-align: -webkit-center;
    }

    section.service-tier .action-btn a.refer-frnd {
        display: block;
        width: fit-content;
        padding: 18px 60px 17px;
    }

    section.service-tier .action-btn a.intro-call {
        display: block;
        width: fit-content;
        margin-left: 0px;
        margin-top: 30px;
        padding: 18px 20px 16px 20px;
    }

    section.contact-us .the-content-area .contact-form-border .background {
        background-position: bottom 148px right;
        background-size: 20%;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
        font-size: 0px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p.align {
        margin: 10px 30px 10px 10px;
    }

    section.faq-banner .banner-content h1 {
        font-size: 40px;
    }

    section.faq .accordion h3 {
        font-size: 24px;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    /*Page about us style*/
    section.meet-our-team .our-team-slider .col-md-3 {
        padding: 0px 30px 20px;
    }

    section.meet-our-team .our-team-slider .slick-next {
        right: 0px;
    }

    section.meet-our-team .our-team-content h2 {
        font-size: 28px;
    }

    section.meet-our-team .our-team-content p:nth-child(1) {
        font-size: 18px;
    }

    .about_section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .team_section .designer_name h6 {
        font-size: 21px;
    }

    .crops_section .bold_creativity {
        padding-left: 0;
        padding-right: 0;
    }

    .about_section .container .about-us-banner-area h1 {
        font-size: 32px;
    }

    section.emotive-purpose .the-content-area .the-details h2 {
        font-size: 28px;
    }

    section.emotive-purpose .the-content-area .the-details ul li {
        color: #D3D3D3;
    }

    section.emotive-purpose .the-content-area .the-video video {
        border-radius: 40px;
    }

    section.global-expertise .global-expertise-content h2 {
        font-size: 28px;
    }

    section.global-expertise .global-expertise-content h3 {
        font-size: 22px;
    }

    .team_section .the-headings h2 {
        font-size: 28px;
    }

    section.team_section .the-headings p {
        font-size: 16px;
    }

    .team_section .container .row .col-lg-4 {
        width: 100%;
        padding-right: 15px;
    }

    .experience_section .our-experience-content h2 {
        font-size: 28px;
    }

    .experience_section .experience_card {
        background-size: 99% 100%;
    }

    .crops_section .container .value h2 {
        font-size: 28px;
    }

    section.buzzful-gives-back .the-content-area .the-content .background {
        background-image: unset;
        background-color: #1E1E1E;
        border-radius: 30px;
        border-right: 1px solid #EE7F1A;
        border-bottom: 1px solid #EE7F1A;
    }

    /*section.buzzful-gives-back .the-content-area .the-content .background img {*/
    /*    width: 20%;*/
    /*}*/

    section.buzzful-gives-back .the-content-area .the-content .background p {
        font-size: 15px !important;
    }

    .experience_section .experience_card .fortune {
        background-size: 60% 100%;
        margin-bottom: 10px;
    }

    /*page about us style finish*/
    .form-hero-section .container .about-us-banner-area h1 {
        font-size: 50px;
    }

    .form-hero-section .container .about-us-banner-area h1 {
        font-size: 32px;
    }

    .blog-banner .container .about-us-banner-area h1 {
        font-size: 40px;
    }

    section.behind-our-comapny .the-background-area {
        background-position: right top 24px;
    }
    
    section.linkedin-feeds h2,
    section.buzzful-blogs .the-headings-area h2 {
        font-size: 28px;
    }

    section.buzzful-blogs .the-headings-area p {
        font-size: 14px;
    }

    section.buzzful-blogs .grid_img img {
        border-radius: 15px;
    }

    section.buzzful-blogs .grid_content p {
        font-size: 14px;
    }

    section.discover-our-articles .the-content p:nth-child(1) {
        font-size: 18px;
    }

    section.discover-our-articles .the-content h2 {
        font-size: 28px;
    }

    section.discover-our-articles .the-content p {
        font-size: 14px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body {
        padding: 0px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area {
        padding: 20px 0px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area h3 {
        font-size: 22px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area p {
        font-size: 14px;
    }

    section.discover-our-articles .the-blog-slider .blog-slider-body .the-content-area img {
        width: 100%;
    }

    section.buzzful-blogs .grid_content {
        padding: 20px 0px;
    }

    .blog_video_section .our_blog_video {
        border-radius: 16px;
    }

    .blog_video_section .video .video-control button img {
        width: 50px;
    }

    section.contact-us .referee h2 {
        font-size: 28px;
    }

    .page-template-page-services section.services-banner .banner-content h1 {
        font-size: 30px;
    }

    .page-template-page-services section.services-banner .banner-content h1 span::before {
        top: -12px;
        left: -20px;
        width: calc(var(--span-width) + 30px);
        height: calc(var(--span-height) + 22px);
    }

    .page-template-page-services section.our-services h2 {
        font-size: 28px;
        line-height: normal;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content p {
        padding: 0px;
    }

    .page-template-page-services section.service-content-details .transform-marketing-content .view-btn a {
        font-size: 16px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .accordion {
        padding: 0px 15px;
    }

    .page-template-page-services section.service-content-details .service-collapse-content .sub-category-accordian .sub-category-content h2 {
        font-size: 28px;
        line-height: 32px;
    }

    section.contact-us .accordion-button {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .page-template-page-referrer-form section.contact-us .referee h2 {
        font-size: 28px;
    }
    
    section.term-conditions h1 {
        font-size: 35px;
    }
    
    section.privacy-policy h1 {
        font-size: 35px;
    }
    
    /*section enterprise*/
    section.enterprise .experience_card {
        padding: 0px 5px;
        width: 50%;
    }

}

@media (max-width: 527.98px) {
    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 43px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 203px;
        bottom: 88px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 43px;
    }
}

@media (max-width: 487.98px) {
    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 39px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 194px;
        bottom: 88px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 39px;
    }
}

@media (max-width: 474.98px) {
    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 37px;
    } 
    
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 182px;
        bottom: 80px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 37px;
    }
}

@media (max-width: 459.98px) {
    section.chase-impact .chase-impact-content h2 {
        padding: 0px 60px;
        font-size: 30px;
    }
}

@media (max-width: 449.98px) {
    section.global-expertise #chris {
        top: 117px;
        left: 107px;
    }

    section.global-expertise #juan {
        top: 114px;
        left: 68px;
    }

    section.global-expertise #haley {
        top: 133px;
        left: 108px;
    }

    section.global-expertise #joanna {
        top: 123px;
        left: 90px;
    }

    section.global-expertise #london {
        top: 99px;
        left: 198px;
    }

    section.global-expertise #galicia {
        top: 116px;
        left: 194px;
    }

    section.global-expertise #nairobi {
        top: 169px;
        left: 243px;
    }

    section.global-expertise #toronto {
        top: 101px;
        left: 111px;
    }

    section.global-expertise #berlin {
        top: 101px;
        left: 212px;
    }
}

@media (max-width: 444.99px) {
        .chase-impact-content h2 {
            font-size: 22px;
            line-height: 32px;
        }

        .chase-impact-content {
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 20px !important;
        }
    }

@media (max-width: 429.98px) {
    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 67px;
        bottom: 225px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 225px;
        right: 86px;
    }

    section.Home-banner .featured-employee .location-tooltip {
        top: -157px;
        left: 52px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) .location-tooltip {
        transform: translateX(-170px);
        top: -155px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        bottom: 2vh;
        left: 7vw;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 39vw;
        bottom: 11vh;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 7vw;
        bottom: 2vh;
    }

    section.global-expertise #chris {
        top: 116px;
        left: 108px;
    }

    section.global-expertise #juan {
        top: 112px;
        left: 67px;
    }

    section.global-expertise #haley {
        top: 132px;
        left: 107px;
    }

    section.global-expertise #joanna {
        top: 119px;
        left: 89px;
    }

    section.global-expertise #london {
        top: 97px;
        left: 196px;
    }

    section.global-expertise #galicia {
        top: 115px;
        left: 192px;
    }

    section.global-expertise #nairobi {
        top: 167px;
        left: 241px;
    }

    section.global-expertise #toronto {
        top: 100px;
        left: 109px;
    }

    section.global-expertise #berlin {
        top: 101px;
        left: 211px;
    }
}

@media (max-width: 424.98px) {
    section.global-expertise #chris {
        top: 115px;
        left: 105px;
    }

    section.global-expertise #juan {
        top: 110px;
        left: 66px;
    }

    section.global-expertise #haley {
        top: 129px;
        left: 105px;
    }

    section.global-expertise #joanna {
        top: 116px;
        left: 89px;
    }

    section.global-expertise #london {
        top: 96px;
        left: 190px;
    }

    section.global-expertise #galicia {
        top: 113px;
        left: 188px;
    }

    section.global-expertise #nairobi {
        top: 163px;
        left: 234px;
    }

    section.global-expertise #toronto {
        top: 97px;
        left: 107px;
    }

    section.global-expertise #berlin {
        top: 99px;
        left: 206px;
    }

    section.global-expertise #chris .location-tooltip {
        left: -20px;
    }

    /*Page about us style*/
    .experience_section .experience_card .fortune {
        background-size: 60% 100%;
        padding-top: 0px;
        height: 60%;
    }

    /*page about us style finish*/

}

@media (max-width: 413.98px) {
    /*for 360*/

    section.Home-banner {
        padding: 150px 0px 0px 0px;
    }

    /*section.Home-banner .content-area .the-content h1 {*/
    /*    font-size: 36px;*/
    /*}*/

    /*section.Home-banner .content-area .the-content h1 {*/
    /*    font-size: 28px;*/
    /*    line-height: 32px;*/
    /*}*/

    section.Home-banner .content-area .the-content a:last-child {
        /*margin-left: 0px;*/
        margin-top: 10px;
    }

    section.Home-banner .content-area .testimonials-slideshow .author-comment p {
        font-size: 14px;
    }

    section.Home-banner .content-area .testimonials-slideshow .card-body.slick-active {
        width: 320px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 152px;
        bottom: 64px;
    }
    
    section.chase-impact .chase-impact-content h2 {
        padding: 0px 35px;
    }
    
    section.enterprise .fortunes-card .fortune {
          padding: 10px 0px 25px;
    }
    
    section.global-expertise .global-expertise-content h2 {
        line-height: 30px;
    }

    section.our-process .navigating-card .our-process-content h2 {
        line-height: 30px;
    }

    section.our-blog .homePage-blogs p {
        font-size: 14px;
    }

    section.contact-us .the-content-area .contact-form-border {
        padding: 20px 10px;
    }

    footer .footer-content .company-area p {
        font-size: 14px;
    }

    /*Map Styling Start*/

    /*.team-member {*/
    /*    width: 12px;*/
    /*    height: 12px;*/
    /*}*/

    #haley .location-tooltip .map-arrow,
    #monica .location-tooltip .map-arrow,
    #joanna .location-tooltip .map-arrow,
    #jim .location-tooltip .map-arrow {
        text-align: center;
    }

    #haley .location-tooltip .map-arrow img,
    #monica .location-tooltip .map-arrow img,
    #joanna .location-tooltip .map-arrow img,
    #jim .location-tooltip .map-arrow img {
        margin-left: 0px;
    }

    section.global-expertise #chris {
        top: 110px;
        left: 100px;
    }

    section.global-expertise #juan {
        top: 107px;
        left: 63px;
    }

    section.global-expertise #haley {
        top: 125px;
        left: 100px;
    }

    section.global-expertise #joanna {
        top: 112px;
        left: 84px;
    }

    section.global-expertise #london {
        top: 93px;
        left: 185px;
    }

    section.global-expertise #galicia {
        top: 109px;
        left: 181px;
    }

    section.global-expertise #nairobi {
        top: 158px;
        left: 225px;
    }

    section.global-expertise #toronto {
        top: 94px;
        left: 103px;
    }

    section.global-expertise #berlin {
        top: 95px;
        left: 202px;
    }

    section.global-expertise #joanna .location-tooltip {
        left: -83px;
    }

    section.global-expertise #jim .location-tooltip {
        left: -136px;
    }

    section.global-expertise #haley .location-tooltip {
        left: -93px;
    }

    section.global-expertise #toronto .location-tooltip {
        left: -21px;
        bottom: 4px;
    }

    /*Map Styling End*/

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox span {
        font-size: 0px;
    }

    section.contact-us .the-content-area .contact-form-border .contact-form .newsletter-checkbox p.align {
        margin: 10px 30px 10px 0px;
    }
     
    section.contact-us .the-content-area .contact-form-border .background {
        background-position: bottom 148px right 10px;
        background-size: 20%;
    }

    section.faq .accordion .accordion-item.active {
        border: 1px solid #EE7F1A;
    }

    section.faq .accordion .accordion-button {
        padding: 10px;
    }

    section.faq .accordion .accordion-body {
        padding: 0px 12px 12px 12px;
    }

    section.faq .accordion h3 {
        font-size: 20px;
    }

    /*Page about us style*/
    section.meet-our-team .our-team-content p {
        font-size: 14px;
    }

    .designer_name h6 {
        font-size: 15px;
    }

    section.emotive-purpose .the-content-area .the-video video {
        border-radius: 34px;
    }

    section.team_section .the-headings {
        padding-bottom: 0px;
    }

    section.team_section .the-headings p {
        font-size: 16px;
    }

    .team_section .designer_name p {
        font-size: 14px;
    }

    .team_section .social_media_icons img {
        width: 25px;
    }

    .experience_section .our-experience-content p:nth-child(1) {
        font-size: 16px;
    }

    .experience_section .our-experience-content p {
        font-size: 14px;
    }

    .experience_section .experience_card {
        background-size: 98% 100%;
    }

    .experience_section .experience_card .fortune {
        background-size: contain;
    }

    /*page about us style finish*/

    /*page blog css start*/
    .blog-banner .container .about-us-banner-area h1 {

        font-size: 28px;
    }

    .blog-banner .container .about-us-banner-area p {

        font-size: 16px;
    }

    section.behind-our-comapny .the-background-area {

        padding: 0px 10px;
    }

    section.buzzful-blogs .grid_img img {
        border-radius: 10px;
    }

    .blog_video_section .our_blog_video {
        border-radius: 10px;
    }

    section.contact-us .accordion-buttons {
        margin-bottom: 20px;
    }

}

@media (max-width: 399.98px) {
    section.global-expertise #chris {
        top: 106px;
        left: 97px;
    }

    section.global-expertise #juan {
        top: 104px;
        left: 62px;
    }

    section.global-expertise #haley {
        top: 121px;
        left: 98px;
    }

    section.global-expertise #joanna {
        top: 110px;
        left: 82px;
    }

    section.global-expertise #london {
        top: 93px;
        left: 179px;
    }

    section.global-expertise #galicia {
        top: 106px;
        left: 176px;
    }

    section.global-expertise #nairobi {
        top: 154px;
        left: 220px;
    }

    section.global-expertise #toronto {
        top: 94px;
        left: 102px;
    }

    section.global-expertise #berlin {
        top: 94px;
        left: 191px;
    }

    /*page about us*/
    .experience_section .experience_card .fortune {
        background-size: contain;
    }

    /*page about us style finish*/
}

@media (max-width: 389.98px) {
    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 64px;
        bottom: 196px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        bottom: 196px;
        right: 82px;
    }

    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 22px;
        bottom: 6px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 145px;
        bottom: 57px;
    }

    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 20px;
        bottom: 6px;
    }

    section.global-expertise #chris {
        top: 104px;
        left: 95px;
    }

    section.global-expertise #juan {
        top: 101px;
        left: 61px;
    }

    section.global-expertise #haley {
        top: 118px;
        left: 95px;
    }

    section.global-expertise #joanna {
        top: 107px;
        left: 80px;
    }

    section.global-expertise #london {
        top: 90px;
        left: 173px;
    }

    section.global-expertise #galicia {
        top: 103px;
        left: 169px;
    }

    section.global-expertise #nairobi {
        top: 148px;
        left: 212px;
    }

    section.global-expertise #toronto {
        top: 90px;
        left: 96px;
    }

    section.global-expertise #berlin {
        top: 91px;
        left: 186px;
    }

}

@media (max-width: 374.98px) {
    section.Home-banner .featured-employee .emp:nth-child(2) {
        left: 53px;
    }

    section.Home-banner .featured-employee .emp:nth-child(4) {
        right: 71px;
    }

    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 138px;
    }

    section.global-expertise #chris {
        top: 100px;
        left: 89px;
    }

    section.global-expertise #juan {
        top: 97px;
        left: 58px;
    }

    section.global-expertise #haley {
        top: 113px;
        left: 91px;
    }

    section.global-expertise #joanna {
        top: 104px;
        left: 77px;
    }

    section.global-expertise #london {
        top: 87px;
        left: 167px;
    }

    section.global-expertise #galicia {
        top: 100px;
        left: 163px;
    }

    section.global-expertise #nairobi {
        top: 143px;
        left: 202px;
    }

    section.global-expertise #toronto {
        top: 86px;
        left: 93px;
    }

    section.global-expertise #berlin {
        top: 87px;
        left: 180px;
    }

    /*Page about us*/
    .experience_section .experience_card .fortune {
        background-size: contain;
    }
    /*page about us style finish*/

    /*section.Home-banner .content-area .the-content h1 span {*/
    /*    font-size: 46px !important;*/
    /*}*/
}

@media (max-width: 359.98px) {
    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 18px;
        bottom: 6px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 128px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 16px;
        bottom: 6px;
    }
    
    section.chase-impact .chase-impact-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 339.98px) {
    section.Home-banner .social-icons .icon:nth-child(3) {
        left: 118px;
        bottom: 47px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(5) {
        right: 13px;
        bottom: 2px;
    }
    
    section.Home-banner .social-icons .icon:nth-child(2) {
        left: 13px;
        bottom: 2px;
    }
}

