html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    scroll-behavior: smooth;
    background: #111;
    font-family: "Outfit", sans-serif;
}


ol,
ul {
    list-style: none;
}


a,
img,
input,
button {
    transition: all .4s ease-in-out;
}

img {
    max-width: 100%;
}

/**/


.outfit-<uniquifier > {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.fade-title {
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    margin: auto;
    animation: animate 4s linear forwards;
}

@keyframes animate {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}


.tagline-anim {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 3.8rem;
    font-weight: 300;
    color: #eee;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.word {
    opacity: 0;
}

.word:nth-child(1) {
    animation: cycleText 6s infinite 0s;
}

.word:nth-child(2) {
    animation: cycleText 6s infinite 1s;
}

.word:nth-child(3) {
    animation: cycleText 6s infinite 2s;
}


@keyframes cycleText {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }

    10% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

    70% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        filter: blur(4px);
    }

    100% {
        opacity: 0;
    }
}



body {
    margin: 0 auto;
    max-width: 1920px;
    letter-spacing: .02em;
    font-family: "Outfit", sans-serif;
}

p,
li {
    color: #8B8B8B;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.align-items-center {
    align-items: center;
}

.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-12 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.row.reverse-order .col-md-6:nth-child(1) {
    order: 2;
}

.text-center {
    text-align: center;
}

.container {
    margin: auto;
    padding: 0 20px;
    max-width: 1200px;
}

.cta-btn,
.form-block .cta-btn {
    color: #FFFC04;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    font-weight: 400;
    border-radius: 36px;
    padding: 15px 24px;
    text-align: center;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
    border: 1px solid #FFFC04;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
}

.cta-btn:after {
    content: "";
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #fff;
    transform: rotate(25deg);
    filter: blur(8px);
    transition: all .3s ease-in-out;
    transition: all cubic-bezier(0.17, 0.54, 0.58, 1.1) 1s;
}

.cta-btn:hover:after {
    opacity: 1;
    left: 110%;
    transition: all cubic-bezier(0.17, 0.54, 0.58, 1.1) 1s;
}

.form-block .cta-btn {
    margin-top: 0;
}

.form-block .cta-btn:hover {
    color: #111;
    background: #FFFC04;
}

.common-sec {
    padding: 140px 0;
}

/**/


.site-header .container {
    padding: 10px;
    position: relative;
    max-width: 1200px;
    border: 1px solid rgb(255 255 255 / 10%);
    background: rgb(255 255 255 / 10%);
    border-radius: 36px;
}

.site-header .container:after {
    content: "";
    filter: blur(36px);
    position: absolute;
    background: rgb(255 255 255 / 10%) url(../images/navbar-blur-bg.png) 0 0 no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.25));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(8px);
    border-radius: 16px;
}

/**/


.site-title {
    color: #8B8B8B;
    font-size: 74px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 10px;
}


.site-title span {
    color: #fff;
}

.sub-title {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-radius: 26px;
    background: rgb(255 255 255 / 8%);
    display: inline-block;
    padding: 12px 16px;
    margin-bottom: 5px;
}

p {
    color: #8B8B8B;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/**/
.site-header {
    top: 0;
    z-index: 9999;
    padding: 10px 15px;
    position: fixed;
    background: transparent;
    left: 0;
    right: 0;
}

.site-header.fixed {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

.site-header .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 11;
}

.site-header .header-logo {
    margin: 0;
    min-width: 170px;
    max-width: 130px;
}

.site-header .header-logo a {
    background: url(../images/HDV-media-hover-logo-.svg) 0 0 no-repeat;
    height: 48px;
    width: 48px;
    display: inline-block;
    background-size: 0px;
    background-position: center;
}

.site-header .header-logo a img {
    transition:
        transform 0.5s ease,
        background-position 0.6s ease,
        box-shadow 0.5s ease;
}

.site-header .header-logo a:hover img {
    transform: scale(0);
}

.site-header .header-logo a:hover {
    background-size: 42px;
}

.header-logo img,
.header-logo svg {
    display: block;
    max-width: 100px;
    height: auto;
}

.navigation-links ul {
    display: flex;
    flex-wrap: wrap;
}

.navigation-links ul li > a {
    color: #7B7B7B;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    line-height: 40px;
    padding: 0 15px;
    text-decoration: none;
}

.navigation-links ul li > a:hover,
.navigation-links ul li > a:focus,
.navigation-links ul li > a:active,
.navigation-links ul li > a.active {
    color: #fff;
}

.header-right a {

    margin-top: 0;
}

/**/
.hero-banner-content {
    padding: 0 20px;
    position: relative;
}

.drop-arrow {
    position: absolute;
    bottom: 60px;
    height: 58px;
    width: 34px;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}

.drop-arrow img {
    max-width: 32px;
}

.hero-banner {
    background: #0F0E0E;
    background-image: url(../images/hero-image.png);
    background-size: cover;
    background-position: center;
    padding: 50px 0 0;
}

.hero-banner-content {
    background: url(../images/banner-content-bg.png) 0 0 no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding: 320px 0 200px;
    text-align: center;
}

.hero-banner .hero-banner-content h1 {
    color: #fff;
    font-size: 84px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-banner .hero-banner-content h1 span {
    color: #FFFC04;
}


.hero-banner .hero-banner-content h2 {
    color: #fff;
    font-size: 74px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-banner .hero-banner-content p {
    max-width: 870px;
    margin: 15px auto 0;
}



/**/

.about-sec {
    background: url(../images/about-banner.jpg) 0 0 no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.about-sec .container {
    max-width: 1280px;
}

.about-content-box {
    display: flex;
    flex-wrap: wrap;
    background: url(../images/about-graphic.png) 0 0 no-repeat;
    background-position: center 60px;
    z-index: -1;
}


.about-content-box .about-box-text {
    background: rgb(255 255 255 / 2%);
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 6%);
    padding: 30px 30px;
    position: relative;
}

.about-box-text .serv-icon {
    position: absolute;
    left: calc(100% + 50px);
    height: 60px;
    width: 60px;
    top: calc(100% - 42px);
    z-index: 1;
}


.about-content-box .about-box-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(35px);
    background: rgb(0 0 0 / 60%);
    z-index: 5;
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.25));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(8px);
    border-radius: 16px;
}


.about-content-box .about-box-text:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    background: url(../images/stroke-line.svg) 0 0 no-repeat;
    height: 50px;
    width: 80px;
    background-position: top;
}

.about-content-box .about-right-block .about-box-text:after {
    background: url(../images/stroke-line-right.svg) 0 0 no-repeat;
    height: 30px;
    width: 100px;
    background-position: top;
    background-size: 100%;
    right: calc(100% + 1px);
    left: auto;
}

.about-content-box .about-right-block .about-box-text .serv-icon {
    position: absolute;
    right: calc(100% + 69px);
    height: 60px;
    width: 60px;
    left: auto;
    top: calc(100% - 62px);
    z-index: 1;
}

.about-left-block,
.about-right-block {
    flex: 0 0 43%;
}

.about-right-block {
    margin-left: auto;
    margin-top: 120px;
}

.about-box-text ~ .about-box-text {
    margin-top: 80px;
}

.about-box-text p {
    z-index: 10;
    position: relative;
    padding-left: 55px;
}

.about-box-text p:before {
    content: "";
    background: url(../images/plus-icon.png) 0 0 no-repeat;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    top: 5px;
    background-size: 28px;
}

/**/


.work-sec {
    background: url(../images/work-bg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-position: center;
}

.sec-head-content {
    text-align: center;
    margin-bottom: 60px;
}

.work-slider-block {
    padding-left: 16.5%;
}

.work-slider .owl-stage {
    padding-left: 0px !important;
}

.work-video {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid #262626;
}

.work-video img {
    width: 100%;
}

.work-video-content {
    border: 1px solid #515151;
    background: rgb(17 17 17 / 30%);
    padding: 8px;
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    border-radius: 26px;
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.25));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(8px);
    border-radius: 16px;
}

.insta-name {
    border: 1px solid #FFFC04;
    border-radius: 40px;
    display: inline-block;
    padding-right: 16px;
}

.insta-name h6 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.insta-name img {
    height: 40px;
    margin-right: 8px;
    width: 40px !important;
    display: inline-block !important;
}

.insta-meta {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.insta-meta img {
    width: 26px !important;
    margin-right: 8px;
}



/**/

.work-slider .owl-nav {
    position: absolute;
    left: 50%;
    bottom: -95px;
}

.work-slider .owl-nav button {
    position: absolute;
    bottom: 0;
    top: auto;
    font-size: 42px !important;
    background: #262626 !important;
    border: 1px solid #363636 !important;
    left: 50%;
    display: flex !important;
    align-items: center;
    height: 62px;
    width: 62px;
    border-radius: 50% !important;
    justify-content: center;
    transform: translateX(-50%);
}

.work-slider .owl-nav button.owl-prev {
    transform: rotate(180deg);
    margin-left: -120px;
}

.work-slider .owl-nav button span {
    font-size: 0;
}

.work-slider .owl-nav button:hover {
    color: #000 !important;
    background: transparent !important;
}

.work-slider .owl-dots {
    display: none;
}

.work-slider .owl-nav button span:after {
    content: " ";
    background: url(../images/arrow-left.svg) 0 0 no-repeat;
    height: 24px;
    width: 24px;
    display: block;
    background-size: 22px;
}

/**/

.services-sec {
    background: #111111;
}

.services-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.services-box {
    background: url(../images/services-text-bg.png) 0 0 no-repeat;
    background-size: cover;
    border: 1px solid rgb(255 255 255 / 6%);
    padding: 40px 20px;
    border-radius: 16px;
    margin: 8px;
    flex: 0 0 45%;
    max-width: calc(45% - 16px);
    text-align: center;
    transition: all .4s ease-in-out;
    box-sizing: border-box;
}

.services-box:hover {
    background: url(../images/services-box-bg.png) 0 0 no-repeat;
    background-size: cover;
}

.services-box:nth-child(3),
.services-box:nth-child(7) {
    margin-left: 10%;
}

.services-box p {
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-left: 35px;
}

.services-box p:before {
    content: "";
    background: url(../images/strategy-icon.svg) center no-repeat;
    height: 26px;
    width: 26px;
    position: absolute;
    left: 0;
    top: 4px;
    background-size: 41px;
    background-position: top;
    transition: all .4s ease-in-out;
}

.services-box.reels-box p:before {
    background-image: url(../images/reels-icon.svg);
    background-size: 42px;
}

.services-box.calendars-box p:before {
    background-image: url(../images/calendars-icon.svg);
    background-size: 41px;
}

.services-box.performance-box p:before {
    background-image: url(../images/performance-icon.svg);
    background-size: 41px;
}

.services-box.engagement-box p:before {
    background-image: url(../images/engagement-icon.svg);
    background-size: 41px;
}

.services-box.promotions-box p:before {
    background-image: url(../images/promotion-icon.svg);
    background-size: 41px;
}

.services-box.business-box p:before {
    background-image: url(../images/business-icon.svg);
    background-size: 41px;
}

.services-box.growth-box p:before {
    background-image: url(../images/growth-icon.svg);
    background-size: 41px;
}


.services-box:hover p:before {
    background-size: 38px;
    background-position: bottom;
}

.services-box.reels-box:hover p:before {
    background-size: 34px;
}


/**/

.logo-sec {
    background: #111;
    border-top: 1px solid #212121;
    border-bottom: 1px solid #212121;
    padding: 90px 0;
}

.logo-sec .container {
    max-width: 1600px;
}

.logo-block {
    display: flex;
    flex-wrap: wrap;
}

.logo-box {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
    box-sizing: border-box;
}

/**/

.framework-sec {
    background: #111;
    border-top: 1px solid #212121;
}

.framework-sec .container {
    max-width: 1600px;
}

.framework-sec .sec-head-content {
    text-align: left;
}

.framework-box {
    background: #000103;
    border-radius: 34px;
    border: 1px solid #2D2D2D;
    padding: 32px 32px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.create-box {
    background: url(../images/create-bg.png) 0 0 no-repeat;
    background-size: cover;
    background-position: center;
}

.connect-box {
    background: url(../images/connect-bg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-position: center;
}

.framework-box h2 {
    color: #FFFC04;
    font-weight: 100;
}

.framework-box h3 {
    font-size: 62px;
    line-height: 1.2;
    color: #282626;
    font-weight: 100;
    position: absolute;
    right: 15px;
    top: 5px;
}

.framework-box img {
    margin-top: 18px;
}


/**/

.strategy-sec {
    padding: 50px 0 0;
    background: url(../images/strategy-bg.jpg) center no-repeat;
    background-size: cover;
}

.strategy-sec .container {
    max-width: 1400px;
}

.strategy-sec .sec-head-content {
    text-align: left;
}

/**/
.testimonial-sec {
    background: #111;
}

/**/

.newsletter-sec {
    padding: 40px 0;
    background: #111;
    border: 1px solid #212121;
}


.newsletter-sec .container {
    max-width: 1600px;
}

.newsletter-sec .talk-box {
    text-align: right;
}

.newsletter-sec .talk-btn {
    color: #8B8B8B;
    font-size: 60px;
    font-weight: 400;
    text-align: right;
    display: inline-block;
    text-decoration: none;
    background: url(../images/msg-icon.svg) center no-repeat;
    background-position: right;
    padding-right: 50px;
    background-size: 30px;
}

.newsletter-sec .talk-btn:hover {
    color: #fff;
    background: url(../images/msg-hover-icon.svg) center no-repeat;
    background-position: right;
    background-size: 30px;
}

/*Footer*/

.site-footer {
    color: #fff;
    font-size: 13px;
    background-color: #111;
    border-top: 1px solid rgba(0, 0, 0, 0);
}

.site-footer a,
.site-footer p,
.site-footer li {
    line-height: 1.4;
}

.footer-bottom .container,
.site-footer .container {
    max-width: 1600px;
}

.footer-block {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 0;
}

.footer-block-item.footer-logo img {
    margin-bottom: 10px;
}

.footer-block-item {
    width: 100%;
    flex: 0 0 42%;
    max-width: 42%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.footer-block-item.contact-box {
    margin-left: auto;
    flex: 0 0 20%;
    max-width: inherit;
}

.footer-top .h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.addressFooter a {
    color: #fff;
}

.footer-top .addressFooter li {
    position: relative;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
}

.footer-top .addressFooter i {
    font-size: 20px;
    margin-top: 4px;
    min-height: 25px;
    text-align: center;
    padding-right: 12px;
    color: #fff;
    margin-top: 5px;
}


.footer-links li {
    line-height: 1.4;
    margin-bottom: 7px;
}

.footer-links a {
    color: #8B8B8B;
    display: block;
    text-decoration: none;
}

.footer-top .socialicons li {
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

.footer-top a {
    color: #8B8B8B;
    text-decoration: none;
}

.footer-top a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-bottom {
    background: #111;
    color: #f9f9f9;
    padding: 25px 0;
    border-top: 1px dotted #111;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom a {
    color: #fff;
    line-height: 1.4;
    display: inline-block;
    text-decoration: none;
}

.navigation-links .toggle-btn {
    display: none;
}


.footer-bottom-right {
    width: 20.5%;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
}

.social-icons li {
    margin: 0 5px;
}

.social-icons a {
    border: 1px solid #999A9C;
    padding: 0;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a span {
    display: none;
}

.footer-bottom-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright-box p {
    font-size: 14px;
    display: inline-block;
}


.copyright-box a {
    text-decoration: underline;
}

.social-icons a:hover {
    border-radius: 0;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
}

.social-icons a.facebook:hover {
    color: #1877F2;
    border-bottom-color: #1877F2;
}

.social-icons a.instagram:hover {
    color: #F77737;
    border-bottom-color: #F77737;
}

.social-icons a.linkedin:hover {
    color: #0A66C2;
    border-bottom-color: #0A66C2;
}

.hdv-footer-image {
    margin-top: -58px;
}

/**/


.form-sec {
    background: #161616;
    border-radius: 16px;
    padding: 60px 60px;
    ;
}

.form-sec .sec-head-content {
    text-align: left;
}

.form-block .form-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.form-block .form-group {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
    box-sizing: border-box;
    margin-bottom: 18px;
}

.form-block .form-group.full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.form-block label {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.form-block input,
.form-block textarea {
    color: #8B8B8B;
    width: 100%;
    background: #111;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 6%);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 10px 10px;
    box-sizing: border-box;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
}

/* Popup box */
.popup-content {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 1280px;
    margin: 60px auto;
    position: relative;
    box-sizing: border-box;
}

.form-sec #closePopup {
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 18px;
    padding: 0px;
    border: 1px solid #444;
    border-radius: 50%;
    height: 42px;
    cursor: pointer;
    width: 42px;
}

.form-sec #closePopup:hover {
    color: #000;
    background: #fff;
}



/*Responsive*/


@media(max-width:1440px) {
    .hero-banner .hero-banner-content h1 {
        font-size: 72px;
    }

    .hero-banner .hero-banner-content h2 {
        font-size: 62px;
    }

    .site-title {
        font-size: 62px;
    }

    p {
        font-size: 20px;
    }

    .newsletter-sec .talk-btn {
        font-size: 48px;
    }

    .logo-sec {
        padding: 60px 0;
    }

    .common-sec {
        padding: 120px 0;
    }

    .framework-box h3 {
        font-size: 52px;
    }

    .cta-btn,
    .form-block .cta-btn {
        font-size: 16px;
    }

}

@media(max-width:1280px) {

    .navigation-links ul li > a {
        font-size: 16px;
    }

    .hero-banner-content {
        padding: 240px 0 180px;
    }

    .hero-banner .hero-banner-content h1 {
        font-size: 58px;
    }

    .hero-banner .hero-banner-content h2 {
        font-size: 48px;
    }

    .common-sec {
        padding: 100px 0;
    }

    .site-title {
        font-size: 52px;
    }

    p {
        font-size: 18px;
    }

    .about-content-box .about-box-text {
        padding: 15px 20px;
    }

    .about-box-text p {
        padding-left: 40px;
    }

    .insta-name h6 {
        font-size: 16px;
    }

    .insta-meta {
        margin-top: 8px;
        font-size: 15px;
    }

    .work-slider .owl-nav button {
        font-size: 42px !important;
        height: 42px;
        width: 42px;
    }

    .work-slider .owl-nav {
        bottom: -75px;
    }

    .services-box {
        padding: 30px 15px;
    }

    .framework-box li {
        font-size: 16px;
    }

    .framework-box {
        padding: 25px 25px;
    }

    .hdv-footer-image {
        margin-top: 0;
    }

    .work-slider .owl-nav button {
        height: 48px;
        width: 48px;
    }

}

@media(max-width:1024px) {



    .hero-banner-content {
        padding: 140px 0 120px;
    }

    .hero-banner .hero-banner-content h1 {
        font-size: 48px;
    }

    .hero-banner .hero-banner-content h2 {
        font-size: 42px;
    }

    .hero-banner .hero-banner-content p {
        max-width: 600px;
        margin: 15px auto 0;
    }

    .drop-arrow {
        bottom: 30px;
        height: 42px;
        width: 24px;
    }

    .logo-sec {
        padding: 40px 0;
    }

    .common-sec {
        padding: 80px 0;
    }

    .about-left-block,
    .about-right-block {
        flex: 0 0 100%;
    }

    .about-content-box .about-box-text:after {
        display: none;
    }

    .about-box-text ~ .about-box-text {
        margin-top: 20px;
    }

    .about-right-block {
        margin-left: auto;
        margin-top: 20px;
    }

    .sec-head-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-box-text .serv-icon {
        display: none;
    }

    .about-content-box {
        background: transparent;
    }

    .work-slider-block {
        padding-left: 15px;
    }

    .sub-title {
        font-size: 16px;
        padding: 14px 20px;
        margin-bottom: 10px;
    }

    .services-box {
        flex: 0 0 95%;
        max-width: 100%;

    }

    .services-box:nth-child(2n + 2) {
        margin-left: 5% !important;
    }

    .services-box:nth-child(3),
    .services-box:nth-child(7) {
        margin-left: 0;
    }

    .framework-sec .sec-head-content {
        text-align: center;
    }

    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .framework-box {
        padding: 35px 20px;
        text-align: center;
        max-width: 480px;
        margin: 10px auto;
        height: auto;
    }

    /*
    .framework-box.convert-box {
        background-image: url(../images/convert-image.png);
        background-size: cover;
        background-position: center;
       background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
    }
*/

    .framework-box.convert-box img {
        display: none;
    }


    /**/
    .footer-block-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0;
    }

    .navigation-links {
        margin-left: auto;
    }

    .navigation-links .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        top: calc(100% + 10px);
        background: #292929;
        right: 0;
        padding: 20px 10px;
        box-shadow: 0px 8px 10px rgb(0 0 0 / 2%);
        border-radius: 18px;
    }

    .navigation-links .toggle-btn {
        color: #fff;
        display: block;
        margin-right: 10px;
        font-size: 20px;
    }

    .work-slider .owl-nav button.owl-prev {
        margin-left: -80px;
    }

    .site-title {
        font-size: 42px;
    }

    p {
        font-size: 16px;
    }

    .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .strategy-sec .sec-head-content {
        text-align: center;
    }

    .work-video {
        margin-bottom: 20px;
    }

    .newsletter-sec p {
        text-align: center;
    }

    .newsletter-sec .talk-box {
        text-align: center;
        margin-top: 20px;
    }

    .newsletter-sec .talk-btn {
        font-size: 42px;
    }

    .footer-block-item.contact-box {
        margin-left: auto;
        flex: 0 0 30%;
        max-width: inherit;
    }

    .footer-top .h4 {
        font-size: 22px;
    }

    p,
    li {

        font-size: 18px;
    }

    .footer-bottom-left {
        flex: 0 0 60%;
        text-align: left;
    }

    .footer-bottom-right {
        width: 100%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .social-icons {
        justify-content: end;
    }

    .testimonial-block {
        max-width: 580px;
        margin: auto;
    }

    .services-block {
        max-width: 580px;
        margin: auto;
    }

    .logo-block {
        justify-content: center;
    }

    .logo-box {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 10px 10px;
        box-sizing: border-box;
    }

    .connect-box {
        background-position: center top;
    }

    .form-sec {
        padding: 40px 40px;
    }

    .form-sec #closePopup {
        right: 20px;
        top: 20px;
        font-size: 12px;
        height: 30px;
        width: 30px;
    }

}

@media(max-width:767px) {

    .footer-block-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }


    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    p,
    li {
        font-size: 16px;
    }

    .cta-btn,
    .form-block .cta-btn {
        font-size: 14px;
        padding: 12px 14px;
    }


    .hero-banner-content {
        padding: 80px 0 40px;
    }

    .hero-banner .hero-banner-content h1 {
        font-size: 34px;
    }

    .hero-banner .hero-banner-content h2 {
        font-size: 28px;
    }

    .hero-banner {
        padding: 80px 0 0;
    }

    .drop-arrow {
        display: none;
    }

    .hero-banner .hero-banner-content p {
        max-width: 390px;
        margin: 10px auto 0;
    }

    .logo-sec {
        padding: 20px 0;
    }

    .logo-box {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 5px 5px;
        box-sizing: border-box;
    }

    .common-sec {
        padding: 60px 0;
    }

    .site-title {
        font-size: 38px;
    }

    .services-box p:before {
        height: 20px;
        width: 20px;
        top: 4px;
        background-size: 32px;

    }

    .services-box.reels-box p:before,
    .services-box.growth-box p:before,
    .services-box.business-box p:before,
    .services-box.calendars-box p:before,
    .services-box.promotions-box p:before,
    .services-box.engagement-box p:before,
    .services-box.performance-box p:before {
        background-size: 32px;
    }

    .services-box:hover p:before {
        background-size: 32px;
        background-position: center calc(100% - -2px);
    }

    .services-box.reels-box:hover p:before {
        background-size: 30px;
    }

    .framework-box h3 {
        font-size: 42px;
    }

    .footer-block-item {
        text-align: center;
    }

    .footer-block-item.contact-box {
        margin-left: auto;
        flex: 0 0 100%;
        margin-bottom: 0;
    }

    .footer-top .addressFooter li {
        justify-content: center;
    }

    .footer-bottom-left {
        flex: 0 0 100%;
        text-align: center;
        order: 2;
        margin-top: 30px;
    }

    .footer-bottom-right {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .site-header .header-logo {
        min-width: 100px;
        max-width: 100px;
    }

    .form-sec {
        padding: 20px 20px 20px;
    }

    .form-sec .sec-head-content {
        margin-bottom: 30px;
    }
    .form-block label {
        display: none;
    }

}




/**/
