::-webkit-scrollbar {
    width: 4px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', HelveticaNeueCyr, Helvetica, Arial, Verdana, sans-serif;
    font-weight: 300;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button,
button:active,
button:hover,
button:focus,
input:active,
input:hover,
input:focus {
    outline: none !important;
    outline-offset: 0;
    box-shadow: none;
}

input {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

input[type="button"] {
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
}

html {
    position: relative;
}

body {
    font-weight: 300;
    width: 100%;
    margin: 0;
    background-color: #000000;
    box-sizing: border-box;
    color: #FFFFFF;
    overflow-x: hidden;
    overflow-y: scroll;
}

body.hidden {
    overflow-y: hidden;
}

.wrapp {
    overflow: hidden;
}

input {
    outline: none;
    border: none;

}

h2.title-section {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.section-block {
    margin-bottom: 100px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    z-index: 99;
}

.loader .loader-block {
    width: 100px;
    height: 100px;
}

.loader .loader-block img {
    display: flex;
    width: 100%;
}

/*Message Popup*/
.message-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

.message-popup.succes-popup {
    max-width: 280px;
    width: 100%;
}

.message-popup.error-popup {
    max-width: 386px;
    width: 100%;
}

.message-popup .text-block {
    display: flex;
    align-items: center;
    background: #252525;
    border-radius: 20px;
    padding: 20px;
}

.message-popup i {
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

.message-popup.succes-popup i {
    display: flex;
    background: url('../assets/img/common/icon-succes.svg') no-repeat 0 0;
    background-size: contain;
}

.message-popup.error-popup i {
    display: flex;
    background: url('../assets/img/common/icon-error.svg') no-repeat 0 0;
    background-size: contain;
}

.message-popup p {
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
}

/*endsection*/

/*Menu*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    z-index: 20;
    transition: .3s ease;
    background: #000000;
}

/* header.scroll {
    background: #000000;
    transition: .3s ease;
} */

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 117px;
}

header .logo img {
    display: flex;
}

header .menu ul {
    display: flex;
}

header .menu ul li {
    position: relative;
    margin-right: 30px;
}

header .menu ul li:last-child {
    margin-right: 0;
}

#products-dropdown {
    min-width: 148px;
}

header .menu .top-menu-dropdown {
    position: absolute;
    top: 0px;
    left: calc((100% - 148px)/2);
    display: none;
    padding-top: 40px;
    min-width: 148px;
    z-index: 15;
}

header .menu .top-menu-dropdown ul {
    flex-direction: column;
    list-style-type: none;
    padding: 20px;
    background: #000000;
    border-radius: 10px;
}

header .menu ul li a,
header .menu ul li span {
    position: relative;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.6;
    transition: opacity .3s;
    z-index: 16;
    cursor: pointer;
}

header .menu ul li span {
    display: flex;
    align-items: center;
    padding-right: 14px;
}

header .menu ul li span::after {
    content: '';
    position: absolute;
    right: 0;
    width: 14px;
    height: 14px;
    background-image: url('../assets/img/common/menu-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transition: .3s;
}

header .menu ul li span.active::after {
    transform: rotate(0deg);
    transition: .3s;
}

header .menu ul li a.active,
header .menu ul li span.active {
    opacity: 1;
    transition: opacity .3s;
}

header .menu .top-menu-dropdown li {
    width: 100%;
    margin-bottom: 20px;
}

header .menu .top-menu-dropdown li:last-child {
    margin-bottom: 0;
}

header .menu .top-menu-dropdown li a {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    text-transform: inherit;
}

header .menu ul li a:hover,
header .menu ul li span:hover {
    opacity: 1;
    transition: opacity .3s;
}

header .menu-trigger {
    display: none;
}

/*endsection*/

/*Form*/
.form {
    padding: 100px 0;
    background: #161616;
}

.form .container {
    max-width: 434px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form h2 {
    font-family: 'Play', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form form {
    max-width: 100%;
    width: 100%;
}

.form form p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
}

.form .input-block {
    position: relative;
}

.form .input-email {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    padding: 10px 93px 10px 20px;
    background: #FFFFFF;
    border-radius: 999px;
}

.form .form-button {
    width: 73px;
    height: 37px;
    position: absolute;
    right: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    background: #000000;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    cursor: pointer;
    transition: .3s;
}

.form .form-button:hover {
    background: #ACAFB9;
    transition: .3s;
}

/*endsection*/

/*Footer*/
a.learn-more {
    position: relative;
    max-width: 227px;
    width: 100%;
    height: 57px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #FFFFFF;
    padding: 0 40px;
    border-radius: 10px;
}

a.learn-more::after {
    content: '';
    position: absolute;
    right: 22px;
    width: 22px;
    height: 8px;
    background-image: url('../assets/img/home/icons/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/*endsection*/

/*gif-list*/
.gif-list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gif-list .list .item {
    position: relative;
    max-width: 605px;
    width: 100%;
    height: 365px;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 40px;
    margin-bottom: 30px;
}

.gif-list .item img,
.gif-list .item .video-block {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gif-list .video-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 71.37%);
}

.gif-list .item .text {
    display: flex;
    align-items: center;
}

.gif-list .item .text span {
    display: flex;
    font-weight: 800;
    font-size: 90px;
    line-height: 110px;
    opacity: 0.3;
    margin-right: 10px;
}

.gif-list .item .text p {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
}

/*endsection*/

/*features-card*/
.features-card .slider-block {
    margin-bottom: 150px;
}

.features-card h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    margin-bottom: 30px;
}

.features-card .slider-block .current-slide {
    position: relative;
    width: 100%;
    height: 510px;
    margin-bottom: 20px;
}

.loader-slide {
    position: relative;
}

.loader-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* background-image: url('../assets/gifs/common/slider-loader.gif'); */
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 450px 450px;
    background-position: center center;
    border-radius: 20px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
}

.loader-slide.load::before {
    opacity: 1;
    transition: .3s;
}

.features-card .slider-block .current-slide .slide {
    position: absolute;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transition: .3s;
}

.features-card .slider-block .current-slide .slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.features-card .slider-block .current-slide .slide.active {
    opacity: 1;
    transition: .3s;
}

.features-card .slider-block .current-slide .slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.features-card .slider-block .current-slide .slide .text-block {
    max-width: 615px;
    width: 100%;
    padding: 0 0 30px 30px;
    z-index: 2;
}

.features-card .slider-block .current-slide h3 {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.features-card .slider-block .current-slide p {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
}

.features-card .slider-block .navigation-list {
    display: flex;
    justify-content: space-between;
}

.features-card .slider-block .navigation-list .tab {
    position: relative;
    width: 232px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0);
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.features-card .slider-block .navigation-list .tab.active {
    border: 1px solid rgba(255, 255, 255, 1);
    transition: .3s;
}

.features-card .slider-block .navigation-list .tab p {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    opacity: .8;
    transition: .3s;
}

.features-card .slider-block .navigation-list .tab.active p {
    opacity: 1;
    transition: .3s;
}

.features-card .slider-block .navigation-list .tab video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/*endsection*/

/*asset-column*/
.asset-column {
    margin-bottom: 100px;
}

.asset-column .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asset-column.asset-left .left {
    max-width: 605px;
    width: 100%;
}

.asset-column.asset-right .left {
    max-width: 525px;
    width: 100%;
}

.asset-column div img {
    width: 100%;
    border-radius: 20px;
}

.asset-column.asset-left .right {
    max-width: 525px;
    width: 100%;
}

.asset-column.asset-right .right {
    max-width: 605px;
    width: 100%;
}

.asset-column h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.asset-column .list {
    display: flex;
    flex-wrap: wrap;
}

.asset-column .list .item {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 40px;
}

.asset-column .item i {
    display: flex;
    width: 52px;
    height: 52px;
    margin-right: 15px;
}

.asset-column .item p {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

/*endsection*/

/*section-video*/
.section-video {
    height: 542px;
    position: relative;
    overflow: hidden;
}

.section-video .video-block {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.section-video .video-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .5;
    z-index: 0;
}

.section-video .video-block video {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    z-index: -1;
}

.section-video .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-video .text-block {
    max-width: 390px;
    width: 100%;
}

.section-video h2 {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 20px;
}

.section-video p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 30px;
}

/*endsection*/

/*Partnerships*/
.partnerships {
    margin-bottom: 120px;
}

.partnerships h2 {
    margin-bottom: 50px;
}

.partnerships img {
    width: 100%;
}

/* .partnerships .slide-row {
    width: 4232px;
    height: 100px;
    background-image: url('../assets/img/home/icons/partners-row.svg');
    background-repeat: repeat-x;
    background-size: 2116px 100px;
    animation: slideLeft 40s linear infinite;
    background-repeat: round;
    max-width: unset;
    margin-bottom: 14px;
}

@-moz-keyframes slideLeft {
    0% {
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -moz-transform: translate3d(-2116px, 0, 0);
        -webkit-transform: translate3d(-2116px, 0, 0);
        -o-transform: translate3d(-2116px, 0, 0);
        -ms-transform: translate3d(-2116px, 0, 0);
        transform: translate3d(-2116px, 0, 0);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -moz-transform: translate3d(-2116px, 0, 0);
        -webkit-transform: translate3d(-2116px, 0, 0);
        -o-transform: translate3d(-2116px, 0, 0);
        -ms-transform: translate3d(-2116px, 0, 0);
        transform: translate3d(-2116px, 0, 0);
    }
}

@keyframes slideLeft {
    0% {
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -moz-transform: translate3d(-2116px, 0, 0);
        -webkit-transform: translate3d(-2116px, 0, 0);
        -o-transform: translate3d(-2116px, 0, 0);
        -ms-transform: translate3d(-2116px, 0, 0);
        transform: translate3d(-2116px, 0, 0);
    }
}

.partnerships .slide-row img {
    display: none;
} */
/*endsection*/

/*video-link*/
.video-link {
    margin-bottom: 100px;
}

.video-link h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.video-link .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.video-link .list .item {
    max-width: 224px;
    width: 100%;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.video-link .item .text-block {
    margin-bottom: 10px;
}

.video-link .item .top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.video-link .item .top i {
    display: flex;
    width: 48px;
    height: 48px;
    margin-right: 20px;
}

.video-link .item .top i.icon-gaming {
    background-image: url('../assets/img/common/icon-gaming.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-launch {
    background-image: url('../assets/img/common/icon-launch.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-sports {
    background-image: url('../assets/img/common/icon-sports.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-virtual {
    background-image: url('../assets/img/common/icon-virtual.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-simulation {
    background-image: url('../assets/img/common/icon-simulation.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-skill {
    background-image: url('../assets/img/common/icon-skill.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-studying {
    background-image: url('../assets/img/common/icon-studying.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-traveling {
    background-image: url('../assets/img/common/icon-traveling.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-streaming {
    background-image: url('../assets/img/common/icon-streaming.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-film {
    background-image: url('../assets/img/common/icon-film.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-customization {
    background-image: url('../assets/img/common/icon-customization.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-exhibitions {
    background-image: url('../assets/img/common/icon-exhibitions.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top i.icon-offline {
    background-image: url('../assets/img/common/icon-offline.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.video-link .item .top p {
    width: calc(100% - 68px);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
}

.video-link .item span {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: #ACAFB9;
}

.video-link .item .icon-block {
    display: flex;
    justify-content: flex-end;
    display: none;
}

.video-link .item .icon-block i {
    display: flex;
    width: 34px;
    height: 34px;
    background-image: url('../assets/img/common/icon-play.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/*endsection*/

/*Footer*/
footer {
    background: rgba(255, 255, 255, 0.05);
}

footer .container {
    padding: 100px 20px;
}

footer .top {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(172, 175, 185, .3);
}

footer .top .footer-menu {
    max-width: 165px;
    width: 100%;
    margin-right: 50px;
}

footer .top .footer-menu:last-child {
    margin-right: 0;
}

footer .top span {
    display: flex;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
}

footer .top li {
    display: flex;
    margin-bottom: 10px;
}

footer .top li:last-child {
    margin-bottom: 0;
}

footer .top a {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    color: #ACAFB9;
    transition: .3s;
}

footer .top a:hover {
    color: #FFFFFF;
    transition: .3s;
}

footer .center {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(172, 175, 185, .3);
}

footer .center .text-block {
    margin-right: 107px;
}

footer .center .text-block:last-child {
    margin-right: 0;
}

footer .center .footer-title {
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

footer .center p.email,
footer .center p.location,
footer .center p.phone {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #ACAFB9;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 21px;
}

footer .center p.location {
    margin-bottom: 10px;
}

footer .center a {
    font-weight: 600;
    font-size: 10px;
    line-height: 16px;
    color: #ACAFB9;
    margin-right: 2px;
}

footer .center p.email::before,
footer .center p.location::before,
footer .center p.phone::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
}

footer .center p.email::before {
    background: url('../assets/img/common/icon-email.svg') no-repeat 0 0;
    background-size: contain;
}

footer .center p.location::before {
    background: url('../assets/img/common/icon-location.svg') no-repeat 0 0;
    background-size: contain;
}

footer .center p.phone::before {
    background: url('../assets/img/common/icon-phone.svg') no-repeat 0 0;
    background-size: contain;
}

footer .center .text-block:last-child {
    margin-right: 0;
}

footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .bottom .copyright {
    display: flex;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #ACAFB9;
}

footer .bottom .copyright i {
    display: flex;
    width: 15px;
    height: 16px;
    background: url('../assets/img/common/icon-copyright.svg') no-repeat 0 0;
    background-size: contain;
    margin: 0 10px;
}

footer .bottom .social {
    display: flex;
    align-items: center;
}

footer .bottom .social a {
    display: flex;
    width: 16px;
    height: 16px;
    margin-right: 30px;
    opacity: .6;
}

footer .bottom .social a:last-child {
    margin-right: 0;
}

footer .bottom .social a:hover {
    opacity: 1;
    transition: .3s;
}

footer .bottom .social a.youtube {
    background-image: url('../assets/img/common/icon-youtube.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

footer .bottom .social a.twitter {
    background-image: url('../assets/img/common/icon-twitter.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

footer .bottom .social a.whatsapp {
    background-image: url('../assets/img/common/icon-whatsapp.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

footer .bottom .social a.tiktok {
    background-image: url('../assets/img/common/icon-tiktok.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

footer .bottom .social a.instagram {
    background-image: url('../assets/img/common/icon-instagram.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/*endsection*/

/*404*/
.notfound {
    height: 100vh;
    background: url('../assets/img/404/bg-404.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}

.notfound .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notfound .text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notfound .text-block .logo {
    width: 144px;
    margin-bottom: 50px;
}

.notfound .text-block .logo img {
    width: 100%;
    opacity: .5;
}

.notfound .text-block {
    max-width: 870px;
    width: 100%;
}

.notfound .text-block h1 {
    font-size: 64px;
    line-height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.notfound .text-block p {
    max-width: 520px;
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

/*endsection*/


@media (-webkit-min-device-pixel-ratio: 2) {

    /*404*/
    .notfound {
        background: url('../assets/img/404/bg-404-2x.jpg') no-repeat;
    }

    /*endsection*/
}

@media (max-width: 480px) {
    h2.title-section {
        font-size: 32px;
        line-height: 39px;
    }

    /*Header*/
    header {
        padding: 24px 0 20px 0;
        background: rgba(0, 0, 0, 0.95);
    }

    header.scroll {
        background: rgba(0, 0, 0, 0.95);
    }

    header .logo img {
        width: 120px;
    }

    header .menu {
        position: fixed;
        top: -2px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: none;
        margin-top: 68px;
    }

    header .menu ul {
        max-width: 265px;
        width: 100%;
        flex-direction: column;
        margin: 0 auto;
    }

    header .menu ul li {
        margin-top: 30px;
        margin-right: 0;
    }

    header .menu ul li a,
    header .menu ul li span {
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
        opacity: 1;
    }

    header .menu ul li span::after {
        width: 32px;
        height: 32px;
    }

    #products-dropdown {
        min-width: unset;
        position: relative;
        left: unset;
        padding-top: 27px;
        max-height: 0;
        max-width: initial;
        display: block;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease-out;
    }

    #products-dropdown.active {
        max-height: 400px;
        transition: max-height 0.4s ease-in;
    }

    header .menu .top-menu-dropdown ul {
        max-width: 100%;
        background: none;
        border-radius: 0;
        margin-top: 30px;
        padding: 0 20px;
    }

    header .menu .top-menu-dropdown li {
        margin: 0 0 20px 0;
        padding: 0;
    }

    header .menu .top-menu-dropdown li a {
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 150%;
    }

    header .menu-trigger {
        display: none;
    }

    header .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    header .menu-trigger {
        position: relative;
        width: 22px;
        height: 17px;
    }

    header .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
    }

    header .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    header .menu-trigger span:nth-of-type(2) {
        top: 8px;
    }

    header .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    header .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(8px) rotate(-45deg);
    }

    header .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    header .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-8px) rotate(45deg);
    }

    /*endsection*/

    /*Message Popup*/
    .message-popup {
        padding: 0 20px;
    }

    .message-popup p {
        max-width: calc(100% - 34px);
        font-size: 12px;
    }

    .message-popup i {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    /*endsection*/

    /*Form*/
    .form {
        padding: 70px 0;
    }

    .form .container {
        flex-direction: column;
    }

    .form h2 {
        max-width: 100%;
        font-size: 30px;
        line-height: 52px;
        text-align: left;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .form form {
        max-width: 100%;
    }

    .form .input-email {
        height: 48px;
        padding-right: 120px;
    }

    .form .form-button {
        width: 112px;
        height: 48px;
    }

    /*endsection*/

    /*gif-list*/
    .gif-list .list .item {
        max-width: 100%;
        height: 285px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .gif-list .item img,
    .gif-list .item .video-block {
        width: 440px;
        left: calc((100% - 440px)/2);
    }

    /*endsection*/

    /*features-card*/
    .features-card .slider-block {
        margin-bottom: 100px;
    }

    .features-card .slider-block .navigation-list {
        display: none;
    }

    .features-card .slider-block .current-slide {
        height: auto;
    }

    .features-card .slider-block .current-slide .slide {
        position: relative;
        height: 200px;
        opacity: 1;
        margin-bottom: 30px;
    }

    .features-card .slider-block .current-slide .slide video {
        width: 440px;
        height: 200px;
        left: calc((100% - 440px) / 2);
    }

    .features-card .slider-block .current-slide .slide .text-block {
        padding: 20px;
    }

    .features-card .slider-block .current-slide h3 {
        font-size: 24px;
        line-height: 29px;
    }

    .features-card .slider-block .current-slide p {
        font-size: 14px;
        line-height: 150%;
    }

    /*endsection*/

    /*asset-column*/
    .asset-column {
        margin-bottom: 70px;
    }

    .asset-column .container {
        flex-direction: column;
    }

    .asset-column.asset-right .container {
        flex-direction: column-reverse;
    }

    .asset-column h3 {
        font-size: 24px;
        line-height: 29px;
        text-transform: capitalize;
    }

    .asset-column div img {
        margin-bottom: 30px;
    }

    .asset-column .list {
        justify-content: space-between;
    }

    .asset-column .list .item {
        width: 44%;
        margin-bottom: 30px;
    }

    .asset-column .item i {
        width: 40px;
        height: 40px;
    }

    .asset-column .item p {
        font-size: 14px;
        line-height: 24px;
    }

    .asset-column .item p br {
        display: none;
    }

    /*endsection*/

    /*section-video*/
    .section-video {
        height: 466px;
    }

    .section-video h2 {
        font-size: 32px;
        line-height: 100%;
    }

    .section-video p {
        font-weight: 300;
        font-size: 16px;
        line-height: 140%;
    }

    /*endsection*/

    /*Partnerships*/
    .partnerships {
        margin-bottom: 80px;
    }

    .partnerships h2 {
        margin-bottom: 20px;
    }

    /* .partnerships .slide-row {
        width: 100%;
        height: auto;
        animation: none;
        background: none;
        padding: 0 20px;
    } */

    .partnerships .slide-row img {
        display: flex;
        width: 100%;
    }

    /*endsection*/

    /*video-link*/
    .video-link h2 {
        font-size: 32px;
        line-height: 39px;
        margin-bottom: 30px;
    }

    .video-link .list .item {
        max-width: 100%;
        width: calc(50% - 5px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 10px;
        margin-bottom: 10px;
    }

    .video-link .item .top {
        flex-direction: column;
        align-items: center;
    }

    .video-link .item .text-block {
        margin-bottom: 20px;
    }

    .video-link .item .top i {
        width: 32px;
        height: 32px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .video-link .item .top p {
        width: 100%;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .video-link .item span {
        display: flex;
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    /*endsection*/

    /*Footer*/
    footer .container {
        padding: 50px 20px;
    }

    footer .top {
        flex-direction: column;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    footer .top .footer-menu {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    footer .top .footer-menu:last-child {
        margin-bottom: 0;
    }

    footer .top span {
        position: relative;
        font-size: 12px;
        line-height: 150%;
        display: flex;
        align-items: center;
        padding: 9px 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }

    footer .top span::before {
        content: '';
        position: absolute;
        right: 0;
        width: 6px;
        height: 6px;
        background-image: url('../assets/img/common/footer-arrow.svg');
        background-repeat: no-repeat;
        background-size: contain;
        transition: .3s;
    }

    footer .top span.active::before {
        transform: rotate(180deg);
        transition: .3s;
    }

    footer .top .footer-menu-dropdown {
        max-height: 0;
        max-width: initial;
        display: block;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    footer .top .footer-menu-dropdown.active {
        max-height: 300px;
        transition: max-height 0.4s ease-in;
    }

    footer .top .footer-menu-dropdown ul {
        margin-top: 20px;
    }

    footer .top a {
        font-size: 12px;
        line-height: 150%;
    }

    footer .top a:hover {
        color: inherit;
    }

    footer .center {
        flex-direction: column;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    footer .center .text-block:first-child {
        margin-right: 0;
    }

    footer .center .text-block {
        margin-bottom: 30px;
        margin-right: 0;
    }

    footer .center .text-block:last-child {
        margin-bottom: 0;
    }

    footer .center .footer-title {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 10px;
    }

    footer .center p.email {
        font-size: 10px;
        line-height: 12px;
    }

    footer .center p.location {
        font-size: 10px;
        line-height: 12px;
    }

    footer .bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 0;
    }

    footer .bottom .social {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    footer .bottom .social a {
        width: 24px;
        height: 24px;
    }

    footer .bottom .copyright {
        max-width: 185px;
        font-size: 10px;
        line-height: 12px;
        text-align: left;
    }

    footer .bottom .copyright i {
        width: 11px;
        height: 12px;
        margin-left: 0;
    }

    footer .center .right .list .item p {
        font-size: 10px;
        line-height: 12px;
    }

    /*endsection*/

    /*404*/
    .notfound {
        background: url('../assets/img/404/bg-404-mob-2x.jpg') no-repeat;
    }

    .notfound .text-block .logo {
        width: 120px;
        margin-bottom: 30px;
    }

    .notfound .text-block h1 {
        font-size: 32px;
        line-height: 35px;
    }

    .notfound .text-block h1 br {
        display: none;
    }

    .notfound .text-block p {
        max-width: 100%;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    /*endsection*/
}

@media (max-width: 375px) {

    /*Form*/
    .form h2 {
        font-size: 24px;
        line-height: 40px;
    }

    .form form p {
        font-size: 16px;
    }

    .form .input-email {
        height: 37px;
        padding: 10px 78px 10px 10px;
    }

    .form .form-button {
        width: 73px;
        height: 37px;
    }

    /*endsection*/
}