/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    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;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: #853DF3;
    color: #fff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Manrope;
    box-sizing: border-box;
    overflow-x: hidden;
}

.video-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
    bottom: 0;
}

.video-wrapper:after {
    background: linear-gradient(267deg, rgba(47, 12, 186, 0.35) 11.93%, rgba(32, 4, 91, 0.58) 52.15%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    z-index: 5;
}

.video-wrapper video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1945px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header {
    background: linear-gradient(267deg, rgba(47, 12, 186, 0.35) 11.93%, rgba(32, 4, 91, 0.58) 52.15%);
    position: relative;
}

header .container {
    max-width: 1540px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.header-top {
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top button {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
    z-index: 10;
}

.drop-menu-wrapper {
    position: relative;
}

.dropdown-menu {
    border-radius: 20px;
    background: rgba(9, 21, 55, 0.13);
    backdrop-filter: blur(57px);
    padding: 30px;
    width: 371px;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu a {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
    margin-bottom: 20px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    color: #9B96FF;
}

.dropdown-menu .btn {
    width: 164px;
    height: 56px;
    border-radius: 60px;
    background: linear-gradient(90deg, rgba(54, 67, 255, 0.25) 0%, #913DFF 100%);
    backdrop-filter: blur(3.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    margin-bottom: 0;
    text-decoration: none;
}

.dropdown-menu .btn:hover {
    background: #853DF3;
    color: #fff;
}

.header-top button img {
    width: 100%;
    display: block;
}

.header-content h1 {
    color: #FFF;
    font-size: 102px;
    font-style: normal;
    font-weight: 800;
    line-height: 117px; /* 114.706% */
}

.header-content {
    padding-bottom: 204px;
}

.header-content h1 span {
    display: block;
    font-size: 102px;
    font-style: normal;
    font-weight: 600;
    line-height: 117px;
}

.text-block {
    display: flex;
    padding-top: 31px;
    padding-bottom: 40px;
}

.text-block p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    width: 100%;
    max-width: 624px;
    padding-right: 42px;
}


.text-block p span {
    font-weight: 400;
    display: block;
}

.header-content .btn-default {
    width: 242px;
    height: 56px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    text-decoration: none;
    border-radius: 60px;
    background: linear-gradient(90deg, rgba(54, 67, 255, 0.25) 0%, #913DFF 100%);
    backdrop-filter: blur(3.5px);
    position: relative;
}

.header-content .btn-default:before {
    content: "";
    display: block;
    border-radius: 60px;
    background: rgba(49, 61, 221, 0.25);
    top: -11px;
    left: -11px;
    right: -11px;
    bottom: -11px;
    position: absolute;
}

.header-content .btn-default:hover {
    background: #853DF3;
}

.header-content .btn-default:hover:before {
    display: none;
}

main {
    background: #ECEAEE;
}

.top-banner {
    margin-bottom: -125px;
}

.top-banner-container {
    max-width: 1508px;
    margin: 0 auto;
    padding: 26px 88px 40px 26px;
    border-radius: 40px;
    background: #FFF;
    display: flex;
    position: relative;
    top: -150px;
    z-index: 20;
}

.top-banner-img {
    flex-shrink: 0;
    width: 248px;
    position: relative;
    margin-right: 77px;
    margin-left: 117px;
    min-height: 148px;
}

.top-banner-img img {
    position: absolute;
    top: -39px;
}

.top-banner-content h2 {
    color: #1E1726;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px; /* 130% */
}

.top-banner-content p {
    color: #1E1726;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
}

.our-stats {
    background: #ECEAEE;
}

.our-stats .container {
    max-width: 1540px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 60px;
}

.our-stats-row:first-child {
    display: flex;
    align-items: flex-end;
}

.our-stats-row:last-child {
    display: flex;
    padding-top: 32px;
}

.our-stats-row .heading {
    margin-right: 37px;
}

.our-stats-row h2 {
    color: #1E1726;
    text-align: right;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 88.571% */
    padding-bottom: 14px;
}

.our-stats-row p {
    color: #1E1726;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}

.our-stats-item-experience {
    background: url("../images/our-stats-icon1.png") no-repeat center 100% / 70%, url("../images/our-stats-bg-1.png") no-repeat center center / cover;
    border-radius: 40px;
    max-width: 356px;
    padding: 0px 54px;
    height: 298px;
}

.our-stats-item-experience .years {
    display: flex;
}

.our-stats-item-experience .years .num {
    font-size: 148px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%; /* 148px */
    background: linear-gradient(180deg, #FFF 0%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-stats-item-experience .years .years-content {
    color: #FFF;
    font-size: 61px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%; /* 61px */
}

.our-stats-item-experience .years .years-content span {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 127.273% */
    display: block;
    padding: 10px 20px;
}

.our-stats-item-media-spend {
    background: url("../images/$.png") no-repeat center center, url("../images/our-stats-icon3.png") no-repeat 100% 100%, url("../images/our-stats-icon2.png") no-repeat center center / cover;
    border-radius: 40px;
    height: 298px;
    flex-grow: 1;
    margin-left: 32px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.our-stats-item-media-spend .our-stats-icon {
    position: absolute;
    right: 0;
    bottom: 0;
}

.our-stats-item-media-spend .years .num {
    font-size: 148px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%; /* 148px */
    background: linear-gradient(90deg, #FFF 0%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-stats-item-media-spend .years .num span {
    background: linear-gradient(90deg, #FFF 0%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 108px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%;
}

.our-stats-item-media-spend .years .years-content {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 127.273% */
}

.our-stats-item-impressions {
    background: url('../images/icon-earth.png') no-repeat 100% 100%, url("../images/our-stats-bg-3.png") no-repeat center center / cover;
    border-radius: 40px;
    height: 298px;
    width: 47%;
    padding-top: 21px;
    padding-left: 48px;
}

.our-stats-item-impressions .num {
    display: flex;
    font-size: 148px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%; /* 148px */
    background: linear-gradient(90deg, #FFF 0%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    align-items: flex-end;
}

.our-stats-item-impressions .num span {
    background: linear-gradient(90deg, #FFF 0%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 108px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%;
}

.our-stats-item-impressions .years-content {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 127.273% */
}

.our-stats-item-traffic-sources {
    background: url("../images/icon-arrow-stats.png") no-repeat 100% 100%, url("../images/our-stats-bg-4.png") no-repeat center center / cover;
    padding-top: 11px;
    padding-left: 27px;
    margin-left: 30px;
    border-radius: 40px;
}

.our-stats-item-traffic-sources .num {
    color: rgba(0, 0, 0, 0.50);
    font-size: 148px;
    font-style: normal;
    font-weight: 200;
    line-height: 100%; /* 148px */
}

.our-stats-item-traffic-sources .years-content {
    color: #787680;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 127.273% */

}

footer {
    background: url("../images/earth.png") no-repeat 0 100%, url("../images/mail.png") no-repeat 100% 100%, #ECEAEE;
}


.footer-contact {
    background: #BBBCD9;
}

.footer-contact .container {
    max-width: 1540px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;

}

.footer-contact .rights {
    color: #616161;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.42px;
}

.footer-nav a {
    color: #616161;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.42px;
    text-decoration: none;
    margin-left: 10px;
}

.footer-social a {
    text-decoration: none;
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover svg path {
    fill: #6145FF;
}

.footer-form {
    max-width: 940px;
    margin: 0 auto;
    padding: 60px 15px 48px;
}

.footer-form h2 {
    color: #1E1726;
    padding-bottom: 40px;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 88.571% */
    text-align: center;
}

.footer-form form {
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.footer-form p {
    color: #1E1E1E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    padding: 17px 0;
}

.footer-form label {
    color: #1E1726;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    padding-bottom: 5px;
    display: block;

}

.footer-form .form-group {
    width: 100%;
    margin-bottom: 18px;
}

.footer-form label span {
    color: #D63928;
    margin-left: 4px;
}

.footer-form input {
    border-radius: 6px;
    border: 1px solid var(--Light-Grayscale-90, #E2E2E2);
    background: var(--Light-Grayscale-100, #FFF);
    height: 40px;
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
    color: #1E1726;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.footer-form textarea {
    border-radius: 6px;
    border: 1px solid var(--Light-Grayscale-90, #E2E2E2);
    background: var(--Light-Grayscale-100, #FFF);
    width: 100%;
    height: 74px;
    resize: none;
    color: #1E1726;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 12px;
    box-sizing: border-box;
}

.footer-form .btn {
    width: 242px;
    height: 56px;
    border-radius: 60px;
    background: linear-gradient(90deg, rgba(54, 67, 255, 0.25) 0%, #913DFF 100%);
    backdrop-filter: blur(3.5px);
    color: #FFF;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    border: none;
    cursor: pointer;
}

.form-group.form-group-error input, .form-group.form-group-error textarea {
    border: 1px solid red;
}

label.error {
    color: red;
    padding-top: 5px;
}

.footer-form .btn:hover {
    background: #853DF3;
}

.our-philosophies {
    position: relative;
}

.sky-stars {
    position: absolute;
    background: url("../images/sky-starts.png") no-repeat center center / cover;
    z-index: 1;
}

.clouds {
    background: url("../images/clouds.png") repeat top;
    z-index: 5;
    -webkit-animation: move-clouds-back 200s linear infinite;
    animation: move-clouds-back 200s linear infinite;
}

@keyframes move-clouds-back {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 10000px 0;
    }
}

.sky-stars, .clouds {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.our-philosophies .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px 30px;
    position: relative;
    z-index: 10;
}

.our-philosophies h2 {
    color: #FFF;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 88.571% */
    padding-bottom: 52px;
    text-align: center;
}

.our-philosophies-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-philosophies-list-item {
    width: 32%;
    border-radius: 20px;
    background: rgba(90, 130, 248, 0.13);
    backdrop-filter: blur(17px);
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.our-philosophies-list-item h3 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 18px */
    margin-bottom: 10px;
}

.our-philosophies-list-item p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
}

.our-philosophies-item-icon {
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(278deg, #77B2FE 1.28%, #4124FF 88.59%);
    margin-bottom: 10px;
}

.our-verticals .container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 15px 230px;
}

.first-vertical-row {
    display: flex;
    align-items: flex-start;
}

.our-verticals h2 {
    color: #1E1726;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 88.571% */
}

.our-verticals-list {
    display: flex;
}

.our-verticals-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 278px;
    height: 398px;
}

.our-verticals-item:before {
    width: 265px;
    height: 265px;
    position: absolute;
    content: "";
    display: block;
    background: url("../images/polygon.png");
}

.our-verticals-item:after {
    width: 278px;
    height: 402px;
    content: "";
    display: block;
    position: absolute;
    background: url("../images/vertical-item-bg.png") no-repeat center center / cover;
}

.our-verticals-item h4 {
    color: #1E1726;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 22px */
}

.first-vertical-row .our-verticals-item:nth-of-type(2) {
    left: 39px;
}

.first-vertical-row .our-verticals-item:nth-of-type(3) {
    left: 215px;
}

.second-vertical-row .our-verticals-item:nth-of-type(4) {
    top: 155px;
    left: -81px;
}

.second-vertical-row .our-verticals-item:nth-of-type(1) {
    left: 122px;
}

.second-vertical-row .our-verticals-item:nth-of-type(2) {
    top: 163px;
    left: 55px;
}

.second-vertical-row .our-verticals-item:nth-of-type(3) {
    left: -15px;
}

.second-vertical-row .our-verticals-item:nth-of-type(5) {
    right: 224px;
    top: -117px;
}

.our-partners .container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 60px 15px;
}

.our-partners h2 {
    color: #1E1726;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    padding-bottom: 54px;
    line-height: 62px; /* 88.571% */
}

.our-partners-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.our-partners-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 33px;
}

.our-partners-item:nth-of-type(1) {
    max-width: 261px;
    margin-right: 88px;
}

.our-partners-item:nth-of-type(2) {
    max-width: 397px;
    margin-right: 88px;
}

.our-partners-item:nth-of-type(3) {
    max-width: 304px;
    margin-right: 88px;
}

.our-partners-item:nth-of-type(4) {
    max-width: 216px;
}

.our-partners-item:nth-of-type(5) {
    max-width: 250px;
}

.our-partners-item:nth-of-type(6) {
    max-width: 250px;
}

.our-partners-item:nth-of-type(7) {
    max-width: 303px;
}

.our-partners-item:nth-of-type(8) {
    max-width: 274px;
}

.our-partners-item:nth-of-type(9) {
    max-width: 303px;
}


.our-partners-item img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    width: 100%;
    display: block;
}

.our-partners-item:hover img {
    filter: none;
}

.your-new-search {
    background: url("../images/your-new-search-bg.png") no-repeat center center / cover;
    background-attachment: fixed;
}

.your-new-search img {
    max-width: 1500px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.your-new-search .container {
    max-width: 1540px;
    padding: 63px 15px 0;
    margin: 0 auto;
}

.your-new-search h2 {
    color: #FFF;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 88.571% */
    text-align: center;
    padding-bottom: 37px;
}


::-webkit-input-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

::-moz-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

:-ms-input-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

:-moz-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.footer-form textarea::-webkit-input-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 150% */
    font-family: Manrope;
}

.footer-form textarea::-moz-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    font-family: Manrope;
    line-height: 16px; /* 150% */
}

.footer-form textarea:-ms-input-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 150% */
    font-family: Manrope;
}

.footer-form textarea:-moz-placeholder {
    color: rgba(30, 23, 38, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 150% */
    font-family: Manrope;
}

.your-new-search .mob-img {
    display: none;
}

@media (max-width: 1500px) {
    header {
        overflow: hidden;
    }

    .top-banner-container {
        padding-right: 10px;
    }

    .top-banner-img {
        margin-left: 30px;
        margin-right: 30px;
    }

    .our-partners-item:nth-of-type(1) {
        max-width: 200px;
        margin-right: 0px;
    }

    .our-partners-item:nth-of-type(2) {
        max-width: 300px;
        margin-right: 0px;
    }

    .our-partners-item:nth-of-type(3) {
        max-width: 250px;
        margin-right: 0px;
    }

    .our-stats-item-media-spend .years .num,
    .our-stats-item-impressions .num, .our-stats-item-traffic-sources .num, .our-stats-item-experience .years .num {
        font-size: 85px;
    }

    .our-stats-item-media-spend .years .num span,
    .our-stats-item-impressions .num span {
        font-size: 70px;
    }

    .our-stats-item-traffic-sources {
        min-width: 356px;
    }

    .our-stats-item-experience .years .num {
    }


}

@media (max-width: 1200px) {
    .top-banner-content h2 {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 1110px) {
    .header-content h1, .header-content h1 span {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 992px) {
    .header-content h1, .header-content h1 span {
        font-size: 42px;
        line-height: 49px;
    }

    .text-block {
        flex-direction: column;
    }

    .text-block p {
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .our-stats-row:first-child {
        flex-direction: column;
        align-items: center;
    }

    .our-stats-row h2 {
        text-align: center;
        font-size: 38px;
        line-height: 40px;
        padding-bottom: 5px;
    }

    .our-stats-row p {
        text-align: center;
    }

    .our-stats-row .heading {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .top-banner {
        margin-bottom: -135px;
    }

    .our-philosophies h2, .footer-form h2, .our-partners h2, .your-new-search h2 {
        font-size: 30px;
        font-style: normal;
        padding-bottom: 30px;
    }

    .footer-form h2 {
        padding-bottom: 10px;
    }

    .our-philosophies .container, .footer-form {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .our-partners h2 {
        padding-bottom: 10px;
    }

    .footer-form, .our-partners .container {
        padding-top: 10px;
    }

    .our-stats-item-experience,
    .our-stats-item-media-spend,
    .our-stats-item-impressions,
    .our-stats-item-traffic-sources {
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
        height: 200px;
    }

    .our-stats-row:last-child {
        padding-top: 0;
        flex-direction: column;
    }

    .our-stats-item-experience .years .years-content span, .our-stats-item-media-spend .years .years-content,
    .our-stats-item-impressions .years-content, .our-stats-item-traffic-sources .years-content {
        font-size: 16px;
        line-height: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    .our-stats-item-impressions {
        padding-left: 10px;
    }

}

@media (max-width: 768px) {
    .header-content .btn-default {
        width: 100%;
    }

    .top-banner-img {
        max-width: 96px;
        min-height: auto;
    }

    .top-banner-img img {
        width: 96px;
        position: static;
        min-height: auto;
    }

    .top-banner-content h2 {
        font-size: 20px;
    }

    .top-banner-content p {
        font-size: 14px;
    }

    .top-banner-container {
        flex-direction: column-reverse;
        align-items: flex-end;
        padding-bottom: 10px;
    }

    .our-philosophies-list-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-contact .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact .rights {
        padding-bottom: 10px;
    }

    .our-partners-item {
        width: auto !important;
        max-width: 40% !important;
    }

    .your-new-search .desc-img {
        display: none;
    }

    .your-new-search .mob-img {
        display: block;
        max-width: 367px;
        margin: 0 auto;
    }

    .video-wrapper video {
        display: none;
    }

    .video-wrapper:after {
        display: none;
    }

    .video-wrapper {
        background: url("../images/mob-video-img.png") no-repeat center center / cover;
    }

    .header-top {
        padding: 20px 0;
    }

    .header-content h1 + img {
        display: none;
    }

    .text-block {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .text-block p {
        padding-bottom: 15px;
        font-size: 14px;
    }

    .our-stats-item-experience {
        background: url(../images/our-stats-icon1.png) no-repeat center 100% / 50%, url(../images/our-stats-bg-1.png) no-repeat center center / cover;

    }

    .our-stats-item-impressions {
        background: url(../images/icon-earth.png) no-repeat 100% 100% / 35%, url(../images/our-stats-bg-3.png) no-repeat center center / cover;
    }


    .our-stats-item-media-spend {
        background: url(../images/$.png) no-repeat 92% 0 / 16%, url(../images/our-stats-icon3.png) no-repeat 100% 100% / 32%, url(../images/our-stats-icon2.png) no-repeat center center / cover;
    }

    .your-new-search .container {
        padding-top: 10px;
        padding-bottom: 100px;
    }

    .our-partners .container {
        padding-bottom: 10px;
    }

    .our-philosophies .container {
        padding-top: 10px;
    }

    .our-philosophies h2 {
        padding-bottom: 0;
    }

    .footer-form form {
        padding-left: 20px;
        padding-right: 20px;
    }

}

svg {

}

#top-line, #bottom-line, #middle-line {
    transform-box: fill-box;
    transform-origin: center;
}

#dropdown-button.active svg #top-line {
    animation: down-rotate 0.6s ease-out both;
}

#dropdown-button.active svg #middle-line {
    animation: hide 0.6s ease-out forwards;
}

#dropdown-button.active svg #bottom-line {
    animation: up-rotate 0.6s ease-out both;
}

@keyframes up-rotate {
    0% {
        animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
        transform: translateY(0px);
    }
    30% {
        transform-origin: center;
        animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
        transform: translateY(-10px);
    }
    100% {
        transform-origin: center;
        transform: translateY(-10px) rotate(45deg) scale(0.9);
    }
}

@keyframes down-rotate {
    0% {
        animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
        transform: translateY(0px);
    }
    30% {
        transform-origin: center;
        animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
        transform: translateY(10px);
    }
    100% {
        transform-origin: center;
        transform: translateY(10px) rotate(-45deg) scale(0.9);
    }
}

@keyframes hide {
    29% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.up-btn {
    background: linear-gradient(90deg, rgba(54, 67, 255, 0.25) 0%, #913DFF 100%);
    backdrop-filter: blur(3.5px);
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    position: fixed;
    z-index: 5;
    text-align: center;
    bottom: 16px;
    right: 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    line-height: 60px;
}

.up-btn:hover {
    background: #853DF3;
}

.terms .container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 60px 15px;
}

.terms p, .terms ul li {
    color: #1E1726;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.terms .italic {
    font-style: italic;
}

.terms h2 {
    font-size: 40px;
    color: #1E1726;
    font-weight: 600;
    padding-bottom: 20px;
}

.terms h3 {
    color: #1E1726;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding: 10px 0;
}