html {
    overflow-x: hidden;
}

html.fixed {
    overflow: hidden;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    background: #c1c1c1;
}

html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background-color: #222;
    outline: none;
}

html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
    background: #E55468;
}

body {
    color: #0E2544;
    font-size: 16px;
    font-family: "Open Sans";
    font-weight: 400;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a:active, a:hover {
    text-decoration: none;
}

button,
.btn {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
    outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    color: #0E2544;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}

.btn:hover,
.btn:focus {
    outline: 0;
    box-shadow: none;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gilroy";
    color: #0E2544;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 48px;
    line-height: 1.3;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
}

h5 {
    font-size: 20px;
    line-height: 1.2;
}

h6 {
    font-size: 16px;
    line-height: 1.2;
}

hr {
    margin: 20px 0;
    border-color: #352323;
}

ol {
    list-style: decimal;
}

p:last-child {
    margin-bottom: 0;
}

/* Form */
label {
    color: #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: #E55468;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #E55468;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #E55468;
    color: #fff;
    text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
    color: #0E2544;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #0E2544;
    font-size: 16px;
    opacity: 1;
}

/* Button */
.btn-theme {
    color: #fff;
    border-color: #E55468;
    background: #E55468;
}

.btn-theme:hover {
    background: #E55468;
    color: #fff;
    border-color: #E55468;
}

.btn-rounded {
    border-radius: 100% !important;
}

.btn-square {
    border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
    background: #ddd;
}

.bg-white {
    background: #fff;
}

.bg-black {
    background: #000;
}

.bg-theme {
    background: #E55468;
}

.bg-dark {
    background-color: #101a23 !important;
}

.bg-off-white {
    background-color: #f7f7f7;
}

.bg-off-white-2 {
    background-color: #f1f8ff;
}

.bg-blue {
    background-color: #4c87ff !important;
}

.bg-yellow {
    background-color: #fea116 !important;
}

.bg-pink {
    background-color: #fc4557 !important;
}

.bg-egg-blue {
    background-color: #1cb5a3 !important;
}

.bg-purple {
    background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
    background: #ddd;
}

.white-color {
    color: #fff;
}

.black-color {
    color: #000;
}

.theme-color {
    color: #E55468;
}

/* Others Common Css Here :) */
.table-row {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

.separator {
    border-top: 1px solid #f2f2f2;
}

[data-overlay] {
    position: relative;
    z-index: 1;
}

[data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
}

[data-overlay=light]::before {
    background-color: #fff;
}

[data-overlay=dark]::before {
    background-color: #000a2d;
}

[data-overlay=theme]::before {
    background-color: #E55468;
}

[data-opacity="1"]::before {
    opacity: 0.1;
}

[data-opacity="2"]::before {
    opacity: 0.2;
}

[data-opacity="3"]::before {
    opacity: 0.3;
}

[data-opacity="4"]::before {
    opacity: 0.4;
}

[data-opacity="5"]::before {
    opacity: 0.5;
}

[data-opacity="6"]::before {
    opacity: 0.6;
}

[data-opacity="7"]::before {
    opacity: 0.7;
}

[data-opacity="8"]::before {
    opacity: 0.8;
}

[data-opacity="9"]::before {
    opacity: 0.9;
}

.header-area {
    position: absolute;
    top: 0;
    z-index: 99998;
    padding: 40px;
}

.header-area-right {
    right: 0;
}

.header-area-left {
    left: 0;
}



.header-area.sticky-header {
    position: fixed;
}



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

.logo {
    position: relative;
    z-index: 1;
    width: 93px;
    height: 93px;
}

.logo a {
    display: inline-block;
}

.logo a img {
    max-width: 93px;
    width: 100%;
}

.menu-bar:hover .bar-wrap {
    background: #0E2544;
}

.menu-bar:hover .bar-wrap .bar-wrap-open .bar-1,
.menu-bar:hover .bar-wrap .bar-wrap-open .bar-2,
.menu-bar:hover .bar-wrap .bar-wrap-open .bar-3 {
    transform: translate(-50%, -50%) rotate(180deg);
}

.menu-bar .bar-wrap {
    width: 96px;
    height: 96px;
    position: relative;
    z-index: 1;
    background: #E55468;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}

.menu-bar .bar-wrap.active {
    background: #E55468;
}

/*.menu-bar .bar-wrap.active .bar-wrap-open {*/
/*  visibility: hidden;*/
/*  opacity: 0;*/
/*}*/
/*.menu-bar .bar-wrap.active .bar-wrap-close {*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*}*/
.menu-bar .bar-wrap .bar-wrap-open {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-bar .bar-wrap.active .bar-wrap-open .bar-1 {
    transform: rotate(225deg);
    top: 60%;
    left: 30%;
}

.menu-bar .bar-wrap.active .bar-wrap-open .bar-2 {
    opacity: 0;
}

.menu-bar .bar-wrap.active .bar-wrap-open .bar-3 {
    transform: rotate(135deg);
    top: 35%;
    left: 30%;
}

.menu-bar .bar-wrap .bar-wrap-open .bar-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 3px;
    width: 39px;
    background: #fff;
    border-radius: 10px;
    margin-top: -12px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-bar .bar-wrap .bar-wrap-open .bar-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 3px;
    width: 29px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-bar .bar-wrap .bar-wrap-open .bar-3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 3px;
    width: 39px;
    background: #fff;
    border-radius: 10px;
    margin-top: 12px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-bar .bar-wrap .bar-wrap-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}

.menu-bar .bar-wrap .bar-wrap-close .bar-1 {
    position: absolute;
    left: 30%;
    top: 48%;
    transform: rotate(-45deg);
    height: 3px;
    width: 40px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-bar .bar-wrap .bar-wrap-close .bar-2 {
    position: absolute;
    left: 30%;
    top: 48%;
    transform: rotate(45deg);
    height: 3px;
    width: 40px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}



.header-mobile-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 170px;
    visibility: hidden;
    opacity: 0;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    max-height: 100vh;
}

.header-mobile-area .shape {
    position: absolute;
    right: 0;
    top: 0;
    background: #0E2544;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    transform: scale(0);
    z-index: -1;
    -webkit-transition: all 1s linear 0s;
    -moz-transition: all 1s linear 0s;
    -o-transition: all 1s linear 0s;
    transition: all 1s linear 0s;
}

.menu-info-wrapper {
    max-width: 400px;
    opacity: 0;
    margin-left: 30px;
}

.menu-info-wrapper .icon-wrap a {
    margin-right: 100px !important;
}

.menu-info-wrapper .icon-wrap a:last-child {
    margin-right: 0 !important;
}

.main-menu {
    margin-left: 50px;
    opacity: 0;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    display: block;
    margin-bottom: 50px;
}

.main-menu ul li:last-of-type {
    margin-bottom: 0;
}

.main-menu ul li > a.active {
    opacity: 0.5 !important;
}

.main-menu ul li a {
    display: inline-block;
    font-size: 3.5rem;
    line-height: 4rem;
    color: #fff;
    opacity: 0;
    position: relative;
    width: auto;
    font-family: "Gilroy";
    padding-left: 60px;
    transition: all 0.3s ease-out 0s;
}

.main-menu ul li a.visible {
    opacity: 1;
    /*padding-left: 0px;*/
    transition: all 0.3s ease-out 0s;
}

.main-menu ul li a.tip:after {
    content: "TIP!";
    background-color: #E55468;
    border-radius: 50%;
    display: flex;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    position: absolute;
    right: -50px;
    top: -20px;
    flex-direction: column;
    justify-content: center;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.hero-area {
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: bottom center;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #141414;
    opacity: 0.3;
}

.hero-area .hero-content {
    max-width: 875px;
    margin-left: 299px;
}

.hero-area .hero-content h1 {
    font-size: 7.5rem;
    line-height: 9rem;
    font-weight: 900;
    color: #fff;
}

.hero-area .hero-content h1 span {
    color: #E55468;
}

.hero-area .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 999;
    width: 122px;
    height: 122px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "Gilroy";
    animation: bounce 2s infinite;
}

.hero-area .scroll-down:hover {
    background: #E55468;
    border-color: #E55468;
}

.hero-area .shape {
    max-width: 828px;
    position: absolute;
    right: 180px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

.banner-section {
    position: relative;
    z-index: 1;
    padding: 200px 20px;
}

.banner-section .shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    max-width: 900px;
}

.banner-section .shape img {
    max-width: 100%;
}

.banner-section .banner-layout {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 98px;
}

.banner-section .banner-layout .left {
    max-width: 406px;
}

.banner-section .banner-layout .left .circle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 406px;
    height: 406px;
    border-radius: 100%;
    background: #E55468;
    font-size: 41px;
    line-height: 50px;
    font-weight: 900;
    padding: 40px;
    color: #fff;
    text-align: center;
    font-family: "Gilroy";
}

.banner-section .banner-layout .right h2 {
    font-family: "Northwell";
    font-size: 110px;
    line-height: 178px;
    font-weight: 400;
    color: #E55468;
    margin-bottom: -40px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
}

.banner-section .banner-layout .right p {
    font-size: 2.5rem;
    line-height: 3.5rem;
    color: #0E2544;
    font-weight: 900;
    font-family: "Gilroy";
}

.info-section .info-layout .right:hover li {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.info-section .info-layout .right li:hover {
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

.s-hero-area {
    padding-top: 240px;
    padding-bottom: 220px;
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.s-hero-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #141414;
    opacity: 0.3;
}

.s-hero-area .s-hero-content .read-more a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 12px 40px;
    border: 2px solid #E55468;
    border-radius: 50px;
    backdrop-filter: blur(2em);
}

.s-hero-area .s-hero-content h2 {
    font-size: 120px;
    line-height: 147px;
    color: #fff;
    font-weight: 900;
    font-family: "Gilroy";
    margin-bottom: 0;
}

.e-hero-area {
    position: relative;
    z-index: 1;
    padding-top: 180px;
    padding-bottom: 160px;
}

.e-hero-area .shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    filter: blur(300px);
    opacity: 0.5;
    max-width: 100%;
}

.e-hero-area .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 999;
    width: 122px;
    height: 122px;
    border: 2px solid #E55468;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: #E55468;
    font-size: 18px;
    font-weight: 900;
    font-family: "Gilroy";
    animation: bounce 2s infinite;
}

.e-hero-area .e-hero-content {
    position: relative;
    z-index: 2;
}

.e-hero-area .e-hero-content h2 {
    font-family: "Gilroy";
    font-size: 120px;
    line-height: 147px;
    color: #0E2544;
    margin-bottom: 0;
}

.e-hero-area .e-hero-content h3 {
    font-family: "Northwell";
    font-size: 110px;
    line-height: 178px;
    margin-bottom: 8px;
    color: #E55468;
    font-weight: 400;
}

.e-hero-area .e-hero-content p {
    font-size: 28px;
    line-height: 48px;
    font-weight: 400;
    color: #0E2544;
    margin-bottom: 45px;
    max-width: 576px;
}

.e-hero-area .e-hero-content .read-more a {
    display: inline-block;
    padding: 12px 50px;
    background: #E55468;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 50px;
}

.e-hero-area .e-hero-thumb {
    aspect-ratio: 1/1;
    width: 744px;
    background: #DBDEE3;
    border-radius: 50%;
    margin-left: -218px;
    overflow: hidden;
    object-fit: contain;
    object-position: top;
}

.e-hero-area .e-hero-thumb > img {
    object-fit: contain;
    object-position: center;
}

.e-hero-area .e-hero-thumb img {
    width: 100%;
}

.s-about-area .s-about-content h2 {
    font-family: "Northwell";
    font-size: 6rem;
    line-height: 11rem;
    font-weight: 400;
    color: #E55468;
    margin-bottom: -40px;
    margin-left: -40px;
}

.s-about-area .s-about-content h3 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 3.5rem;
    color: #0E2544;
    max-width: 525px;
}

.s-about-area .s-about-box {
    width: 406px;
    height: 406px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    background: #E55468;
    border-radius: 100%;
    padding: 50px;
    color: #fff;
}

.s-tab-section {
    background: #0E2544;
}

.s-tab-section .s-tab-nav .nav-tabs {
    flex-direction: column;
    border: 0;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.s-tab-section .s-tab-nav .nav-tabs:hover button.nav-link {
    opacity: 0.25;
    transition: all 0.3s ease-in-out;
}

.s-tab-section .s-tab-nav .nav-tabs button.nav-link:hover {
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

.s-tab-section .s-tab-nav .nav-tabs .nav-link {
    text-align: left;
    color: #fff;
    font-size: 40px;
    line-height: 56px;
    opacity: 0.25;
    margin-bottom: 35px;
    border: 0;
    transition: all 0.3s ease-in-out;
}

.s-tab-section .s-tab-nav .nav-tabs .nav-link i {
    margin-right: 10px;
    color: #E55468;
}

.s-tab-section .s-tab-nav .nav-tabs .nav-link.active {
    background: none;
    opacity: 1;
}

.s-tab-content h2 {
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 900;
    font-family: "Gilroy";
    color: #fff;
    margin-bottom: 30px;
    padding: 50px;
    text-align: center;
}

.s-tab-content h2 span {
    color: #E55468;
}

.s-tab-content p {
    font-size: 28px;
    line-height: 42px;
    color: #fff;
    font-weight: 400;
}

.e-about-section .e-about-text {
    font-size: 28px;
    line-height: 48px;
    color: #0E2544;
}

.info-section {
    background: #F7F7F7;
    padding: 120px 20px;
}

.info-section .info-layout {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    gap: 100px;
}

.info-section .info-layout .left {
    max-width: 706px;
}

.info-section .info-layout .left h2 {
    font-family: "Northwell";
    font-weight: 400;
    font-size: 5rem;
    line-height: 12rem;
    margin-bottom: -50px;
    margin-left: -40px;
    color: #E55468;
}

.info-section .info-layout .left h3 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 80px;
    line-height: 107px;
    color: #0E2544;
    margin-bottom: 52px;
}

.info-section .info-layout .left p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 3rem;
    color: #0E2544;
}

.info-section .info-layout .right .list-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-section .info-layout .right .list-wrap li {
    display: block;
    margin-bottom: 50px;
}

.info-section .info-layout .right .list-wrap li:last-child {
    margin-bottom: 0;
}

.info-section .info-layout .right .list-wrap li.active > a {
    opacity: 0.5;
}

.info-section .info-layout .right .list-wrap li a {
    display: block;
    font-size: 41px;
    line-height: 56px;
    color: #0E2544;
}

.info-section .info-layout .right .list-wrap li a img {
    display: inline-block;
    margin-right: 20px;
}

.case-slider-active {
    position: relative;
    z-index: 1;
}

.case-slider-active .case-pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 10;
}

.case-slider-active .case-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: none;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.case-slider-active .case-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.6);
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
}

.case-slider-active .case-slide-wrap {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 1080px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.case-slider-active .case-slide-wrap .case-content-wrapper {
    width: 100%;
    max-width: 1252px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper .read-more {
    margin-bottom: 50px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper .read-more a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 12px 40px;
    border: 2px solid #E55468;
    border-radius: 50px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper h2 {
    font-family: "Northwell";
    font-weight: 400;
    font-size: 110px;
    line-height: 178px;
    color: #fff;
    margin-bottom: -30px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper h3 {
    display: inline-block;
    color: #fff;
    font-size: 7rem;
    line-height: 6.5rem;
    margin: 30px 0 50px;
    position: relative;
    z-index: 1;
    cursor: url(../img/shape/cursor-1.svg) 50 50, auto;
}

.case-slider-active .case-slide-wrap .case-content-wrapper h3 .title-btn {
    position: absolute;
    right: -30px;
    bottom: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 96px;
    height: 96px;
    background: #E55468;
    padding: 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
    border-radius: 50%;
}

.case-slider-active .case-slide-wrap .case-content-wrapper h3 .title-btn img {
    height: 15px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper h3 .title-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.case-slider-active .case-slide-wrap .case-content-wrapper .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.case-slider-active .case-slide-wrap .case-content-wrapper .case-tags a {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    backdrop-filter: blur(2em);
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
}

.case-slider-active .case-slide-wrap .case-content-wrapper .case-tags a:hover {
    /*backdrop-filter: blur(0em);*/
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    border-color: #E55468;
}

.case-slider-active .caseButton {
    display: none;
    position: absolute;
    bottom: 75px;
    right: 75px;
}
.case-slider-active .caseButton img {
    width: 200px;
}

.pro-case-slider-active {
    top: -61px;
}

.brand-area {
    padding-top: 100px;
    padding-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
}

.brand-area .brand-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand-area .brand-title h2 {
    font-family: "Northwell";
    font-weight: 400;
    font-size: 6.5rem;
    line-height: 11rem;
    margin-bottom: -50px;
    margin-left: -40px;
    color: #E55468;
}

.brand-area .brand-title h3 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 80px;
    line-height: 107px;
    color: #0E2544;
    margin-bottom: 52px;
}

.brand-area .brand-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 100px 150px;
}

.team-area {
    background: #F7F7F7;
    padding-top: 100px;
    padding-bottom: 130px;
}

.team-area .team-heading {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-area .team-heading h2 {
    font-family: "Northwell";
    font-weight: 400;
    font-size: 110px;
    line-height: 178px;
    margin-bottom: -50px;
    margin-left: -40px;
    color: #E55468;
}

.team-area .team-heading h3 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 80px;
    line-height: 107px;
    color: #0E2544;
    margin-bottom: 52px;
}

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

.team-wrapper .left {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 10;
    padding-right: 50px;
}

.team-wrapper .left h2 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: "Northwell";
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    margin-bottom: 0;
}

.team-wrapper .left h2 .title-btn {
    position: absolute;
    left: 100%;
    bottom: 30%;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 96px;
    height: 96px;
    color: #fff;
    background: #E55468;
    padding: 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
    border-radius: 50%;
    font-family: "Gilroy";
}

.team-wrapper .right {
    width: 100%;
    max-width: 1200px;
}

.team-wrapper .right .team-layout {
    display: flex;
    gap: 50px;
}

.team-wrapper .right .team-btn {
    margin-top: 100px;
    text-align: center;
}

.team-wrapper .right .team-btn a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #E55468;
    padding: 12px 28px;
    border: 2px solid #E55468;
    border-radius: 50px;
    text-transform: uppercase;
}

.team-wrapper .right .team-btn a:hover {
    background: #E55468;
    color: #fff;
}

.team-wrapper .right .pro-team-btn {
    text-align: left;
}

.team-wrap {
    width: 250px;
    height: 813px;
    background: #c6cbd1;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.team-wrap:nth-child(even), .team-wrapper .swiper-slide:nth-child(odd) .team-wrap {
    background: #F7DEE0;
}

.team-wrap .thumb {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-align: center;
    background: bottom center no-repeat;
    background-size: auto 100%;
}

/*.team-wrap .thumb img {*/
/*    max-width: 250px;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    object-position: top center;*/
/*}*/

.team-wrap .title-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: "Gilroy";
    font-size: 5rem;
    line-height: 5rem;
    color: #fff;
    text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
    z-index: 3;
    width: 600px;
    padding: 50px 70px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear 0s;
    -moz-transition: opacity 0.3s linear 0s;
    -o-transition: opacity 0.3s linear 0s;
    transition: opacity 0.3s linear 0s;
    /*transition-delay: 0.3s;*/
}

.team-wrap .title-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: "Gilroy";
    font-size: 80px;
    line-height: 107px;
    color: #fff;
    text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
    z-index: 3;
    width: 100%;
    padding: 50px 70px;
    transform: rotate(-90deg);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.team-wrap .signe {
    position: absolute;
    right: 40px;
    top: 40px;
    text-align: right;
    height: 350px;
    font-size: 4rem;
    font-family: "Northwell";
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.team-wrap.slide-team, .team-wrap.active {
    width: 692px;
}

.team-wrap.slide-team .thumb img, .team-wrap.active .thumb img {
    max-width: 100%;
    height: 100%;
}

.team-wrap.slide-team .signe, .team-wrap.active .signe {
    visibility: visible;
    opacity: 1;
}

.team-wrap.slide-team .title-2, .team-wrap.active .title-2 {
    visibility: hidden;
    opacity: 0;
    bottom: 60px;
}

.team-wrap.slide-team .title-1, .team-wrap.active .title-1 {
    visibility: visible;
    opacity: 1;
}

.team-wrap.slide-team {
    max-width: 100%;
}

.team-slider {
    position: relative;
}

.team-slider .team-pagination {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    z-index: 10;
}

.team-slider .team-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid #E55468;
    border-radius: 50%;
    background: none;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.team-slider .team-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #E55468;
    transform: scale(1.6);
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
}

.team-area.team-hero {
    background: #fff;
}

.team-area.team-hero .team-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.s-service-content {
    position: relative;
    z-index: 1;
}

.s-service-content .title {
    margin-left: -110px;
}

.s-service-content .title h1 {
    font-family: "Northwell";
    font-size: 110px;
    font-weight: 400;
    line-height: 178px;
    color: #E55468;
    margin-bottom: 0;
}

.s-service-content .description p {
    max-width: 996px;
    font-family: "Gilroy";
    font-size: 3rem;
    font-weight: 800;
    line-height: 4.5rem;
    color: #0E2544;
}

.s-service-content .pro-description p {
    max-width: 1334px;
    /*margin-right: -110px;*/
}

.s-service-content .pro-description p:first-child {
    margin-bottom: 90px;
}

.s-service-content .scroll-down {
    z-index: 999;
    width: 122px;
    height: 122px;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: #E55468;
    font-family: "Gilroy";
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    animation: bounce 2s infinite;
}

.s-service-content .scroll-down img {
    max-width: 100%;
}

.s-service-content .pro-scroll-down {
    margin-top: 160px;
    margin-bottom: 0;
}

.s-service-card {
    display: grid;
    grid-template-columns: 280px 489px 1fr;
    align-items: center;
    padding: 44px 0;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    cursor: url(../img/shape/cursor-1.svg) 50 50, auto;
}

.s-service-card:hover .description {
    visibility: visible;
    opacity: 1;
}

.s-service-card .card-icon {
    text-align: center;
}

.s-service-card .card-icon img {
    /*max-width: 182px;*/
}

.s-service-card .title {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.s-service-card .title h1 {
    font-family: "Gilroy";
    font-size: 70px;
    font-weight: 800;
    line-height: 107px;
    color: #0E2544;
    margin-bottom: 0;
}

/*.s-service-card .description {*/
/*    visibility: hidden;*/
/*    opacity: 0;*/
/*    -webkit-transition: all 0.3s linear 0s;*/
/*    -moz-transition: all 0.3s linear 0s;*/
/*    -o-transition: all 0.3s linear 0s;*/
/*    transition: all 0.3s linear 0s;*/
/*}*/

.s-service-card .description p {
    font-family: "Open Sans";
    font-size: 1rem;
    font-weight: 400;
    line-height: 32px;
    color: #0E2544;
}

.s-service-card .read-more {
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 96px;
    height: 96px;
    background: #E55468;
    padding: 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
    border-radius: 50%;
    color: #FFFFFF;
    margin-top: 20px;
}

.e-feature-wrap {
    position: relative;
    z-index: 1;
}

.e-feature-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 482px;
    background: #F7F7F7;
    z-index: -1;
}

.e-feature-wrap .e-feature-content h2 {
    font-family: "Northwell";
    font-size: 110px;
    line-height: 178px;
    color: #E55468;
    font-weight: 400;
    margin-left: -40px;
    margin-bottom: -40px;
}

.e-feature-wrap .e-feature-content h3 {
    font-size: 80px;
    line-height: 107px;
}

.e-feature-wrap .ef-content p {
    font-size: 28px;
    line-height: 48px;
    color: #0E2544;
    margin-bottom: 20px;
}

.pro-info-left h2 {
    font-family: "Northwell";
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 400;
    color: #E55468;
    margin-bottom: 20px;
    margin-left: -110px;
}

.pro-info-left h3 {
    font-family: "Gilroy";
    font-size: 5rem;
    line-height: 6rem;
    font-weight: 900;
    color: #0E2544;
    margin-bottom: 0;
}

.pro-info-right .list-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-info-right .list-wrap li {
    margin-bottom: 41px;
}

.pro-info-right .list-wrap li a {
    display: flex;
    align-items: center;
    font-family: "Gilroy";
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: 900;
    color: #0E2544;
}

.pro-info-right .list-wrap li a img {
    margin-right: 19px;
}

.pro-info-right .list-wrap li ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-info-right .list-wrap li ul li {
    margin-bottom: 0;
}

.pro-info-right .list-wrap li ul li a {
    display: inline-block;
    margin-left: 30px;
    font-family: "Open Sans";
    font-size: 1rem;
    line-height: 2.2rem;
    font-weight: 400;
    color: #0E2544;
}
.pro-info-right .list-wrap li.diensten li a:hover {
    color: #E55468;
}

.pro-scroll-down {
    z-index: 999;
    width: 122px;
    height: 122px;
    border-radius: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: #E55468;
    font-family: "Gilroy";
    margin-top: 160px;
    margin-left: auto;
    margin-right: auto;
    animation: bounce 2s infinite;
}

.pro-scroll-down img {
    max-width: 100%;
}

.pro-scroll-down:hover {
    color: #fff;
}

.pro-info-section {
    position: relative;
    z-index: 9;
}

.pro-info-section .pro-website-btn a {
    display: inline-block;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 24px;
    color: #E55468;
    line-height: 24px !important;
    padding: 12px 28px !important;
    border: 2px solid #E55468;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 10px;
}

.pro-info-section .pro-website-btn a:hover {
    background: #E55468;
    color: #fff;
}

.pro-bg-area {
    position: relative;
    /*top: -50px;*/
}

.pro-bg-area img {
    width: 100%;
}

.pro-bg-area .video-wrap {
    position: relative;
    z-index: 1;
}

.pro-bg-area .video-wrap video {
    width: 100%;
    object-fit: cover;
}

.quote-area {
    background-color: #FFFFFF;
}

.query-title h1 {
    font-family: "Gilroy";
    font-size: 80px;
    line-height: 107px;
    font-weight: 900;
    color: #E55468;
    margin-bottom: 0;
}

.query-question p {
    font-family: "Open Sans";
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: 400;
    color: #0E2544;
}

.query-description p {
    font-family: "Open Sans";
    font-size: 1rem;
    line-height: 2.2rem;
    font-weight: 400;
    color: #0E2544;
}

.pro-thumb-area {
    position: relative;
    z-index: 1;
}

.pro-thumb-area:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 515px;
    width: 100%;
    background: #F7F7F7;
}

.quote-area {
    background: #0E2544;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-content .icon {
    position: absolute;
    z-index: 2;
    top: -15px;
    left: -55px;
}

.quote-content .icon img {
    width: 112px;
}

.quote-content h2 {
    font-family: "Open Sans";
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 19px;
}

.quote-content p {
    font-family: "Open Sans";
    font-size: 24px;
    line-height: 68px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
}

.portfolio-bg-area img {
    width: 100%;
}

#scrollVideoTrigger {
    padding: 110px 0;
}

#scrollVideoTrigger.fixed {
    position: fixed;
}

.pin-spacer {
    z-index: -2;
}

video.video-background {
    width: 120vw;
    height: auto;
     z-index: -2;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    position: relative;
}

.pro-video-thumb {
    position: relative;
    z-index: 1;
}

.pro-video-thumb img {
    width: 100%;
}

.pro-video-thumb .play-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pro-video-thumb .play-btn a img {
    width: 110px;
}

.e-feature-thumb {
    width: 100%;
    overflow: hidden;
    border: 1px solid #F7F7F7;
    border-radius: 40px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.e-feature-thumb.caseBox {
    aspect-ratio: 5/4;
    display: block;
    background-size: cover;
    transform: translateY(0);
    transition: all 0.2s ease-in-out 0s !important;
}

.e-feature-thumb.caseBox h3 {
    color: #FFFFFF;
}

.e-feature-thumb.caseBox:hover {
    transform: translateY(-10px);
}

.e-feature-thumb a {
    display: block;
}

.e-feature-thumb img {
    width: 100%;
}

.contact-hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
    background: #0E2544;
}

.contact-hero-section .contact-hero-content h2 {
    font-size: 110px;
    font-family: "Northwell";
    line-height: 178px;
    font-weight: 400;
    color: #E55468;
    margin-bottom: -120px;
}

.contact-hero-section .contact-hero-content h3 {
    font-size: 100px;
    line-height: 127px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.contact-hero-section .contact-hero-content p {
    font-size: 28px;
    line-height: 48px;
    color: #fff;
    margin-bottom: 30px;
}

.contact-hero-section .contact-hero-content p span {
    color: #E55468;
    display: block;
}

.contact-area .content-content h2 {
    font-size: 100px;
    line-height: 127px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-area .content-content p {
    font-size: 28px;
    line-height: 48px;
    margin-bottom: 30px;
}

.contact-area .contact-form .input-wrap {
    margin-bottom: 40px;
}

.contact-area .contact-form .input-wrap label {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #0E2544;
    margin-bottom: 16px;
}

.contact-area .contact-form .input-wrap input {
    width: 100%;
    height: 60px;
    background: #F7F7F7;
    color: #0E2544;
    border: 0;
    border-radius: 15px;
    padding: 15px;
}

.contact-area .contact-form .input-wrap textarea {
    width: 100%;
    height: 221px;
    background: #F7F7F7;
    color: #0E2544;
    border: 0;
    border-radius: 15px;
    padding: 15px;
}

.contact-area .contact-form .input-button button {
    padding: 12px 35px;
    border: 0;
    background: #E55468;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    border-radius: 50px;
}

.footer-area {
    background: #0E2544;
    border-bottom: 5px solid #E55468;
}

.footer-content .title h1 {
    font-family: "Gilroy";
    font-size: 100px;
    font-weight: 800;
    line-height: 107px;
    color: #FFFFFF;
    margin-bottom: 52px;
}

.footer-content .footer-info h4 {
    font-family: "Open Sans";
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    color: #E55468;
    margin-bottom: 0;
}

.footer-content .footer-info .text {
    margin-bottom: 40px;
}

.footer-content .footer-info .text p {
    font-family: "Open Sans";
    font-size: 22px;
    font-weight: 400;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.footer-content .footer-info a {
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 42px;
    color: #FFFFFF;
    font-family: "Open Sans";
}

.social-icon-wrap p {
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.social-icon-wrap .icon-wrap {
    margin-bottom: 80px;
}

.social-icon-wrap .icon-wrap a {
    font-size: 22px;
    color: #FFFFFF;
    margin-right: 150px;
}

.footer-area .newsletter-wrap h3 {
    font-family: "Gilroy";
    font-size: 48px;
    font-weight: 800;
    line-height: 68px;
}

.newsletter-wrap h3 {
    font-family: "Open Sans";
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 56px;
    max-width: 320px;
}

.newsletter-wrap p {
    color: #FFFFFF;
}

.newsletter-wrap h3 span {
    color: #E55468;
}

.newsletter-wrap .input-wrap input {
    width: 100%;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
    padding-bottom: 12px;
    border: 0;
    border-bottom: 1px solid #FFFFFF;
    background: transparent;
    margin-bottom: 36px;
}

.newsletter-wrap .input-wrap input::-webkit-input-placeholder {
    color: #FFFFFF;
}

.newsletter-wrap .input-wrap input:-moz-placeholder {
    color: #FFFFFF;
}

.newsletter-wrap .input-wrap input::-moz-placeholder {
    color: #FFFFFF;
}

.newsletter-wrap .input-wrap input:-ms-input-placeholder {
    color: #FFFFFF;
}

.newsletter-wrap .input-wrap button {
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    color: #FFFFFF;
    padding: 12px 31px;
    background: #E55468;
    border: 0;
    border-radius: 100px;
}

.s-service-area > .container {
    position: relative;
    z-index: 10;
}

.brand-item:hover img {
    opacity: 1;
    filter: none;
}

.brand-item img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s, filter 0.3s;;
}

.aspect-youtube {
    aspect-ratio: 6 / 9;;
}

span.dot {
    color: #0E2544;
}

.grecaptcha-badge {
    visibility: hidden;
}
