<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* nav */
.hover-indicator {
    position: absolute;
    background: rgba(23, 43, 59, 0.705);
    border-radius: 8px;
    z-index: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    left: 0;
    pointer-events: none;
}

.navbar-nav {
    position: relative;
}

.navbar-nav li a:hover~.hover-indicator {
    opacity: 1;
}

.navbar-nav li a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    padding: 14px;
    text-decoration: none;
    position: relative;
    display: flex;
    z-index: 1;
}

html[lang="ar"] .navbar-nav li a {
    font-size: 18px;
}

.navbar-nav li a i {
    font-size: 20px;
}

.navbar-nav li a:hover {
    color: #f4f8ff;
}

.navbar-nav li.active a {
    color: #f4f8ff;
    font-weight: 600;
}

ul.dropdown-menu {
    border-bottom: 0 solid #222;
    background: #313131;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.161);
    position: absolute;
    top: 100%;
    margin-top: -1px;
    border-radius: 0;
    z-index: 9999;
    padding: 0 0;
    transform: none !important;
    border: none;
    min-width: 240px;
}

.navbar-nav ul.dropdown-menu a {
    font-size: 18px;
    padding: 12px 15px;
    display: block;
    line-height: 34px;
    color: var(--whiteColor);
    margin: 0;
    border-bottom: 1px solid #222;
}

.navbar-nav ul.dropdown-menu a:hover {
    color: #ccc;
    border-color: #111;
}

.navbar-toggler {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-light .navbar-toggler {
    border: none;
    text-align: right;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 38px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    margin: 0 0 0 auto;

}

.navbar-toggler .icon-bar:nth-of-type(3) {
    width: 26px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 8px;
}

.mobile-menu .navbar-toggler {
    position: absolute;
    top: 2em;
    right: 0;
}

.navbar-toggler .open .icon-bar:first-of-type {
    transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
    -webkit-transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0;
}

.navbar-toggler .open .icon-bar:nth-of-type(2) {
    opacity: 0;
    transition: 0s ease-in-out;
    -webkit-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
}

.navbar-toggler .open .icon-bar:nth-of-type(3) {

    transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
    -webkit-transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
    -webkit-transform: translate(-1px, 5px) rotate(-45deg);
    -ms-transform: translate(-1px, 5px) rotate(-45deg);
    transform: translate(-1px, 5px) rotate(-45deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    width: 38px;
}

.navbar-toggler .icon-bar:first-of-type,
.navbar-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggler .icon-bar:nth-of-type(2) {
    opacity: 1;
}

.navbar-toggler .icon-bar,
.navbar-toggler .open .icon-bar {
    background: var(--whiteColor);
}

.navbar-area {
    padding: 15px 0;
    background-color: rgba(19, 26, 42, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(6px);
}

.navbar-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(19, 26, 42, 0.5);
    -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.dark .navbar-toggler .icon-bar,
.dark .navbar-toggler .open .icon-bar {
    background: #0E1421;
}

.mobile-menu {
    display: none;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 2px;
}

.mobile-nav li.nav-item a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px 16px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: block;
}

.mobile-nav a.lang,
.mobile-nav a.wotn-btn {
    margin: 0 16px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

a.lang {
    border-radius: 18px;
    border: 2px solid #FFF;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 45px;
    height: 45px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
}

a.lang:hover {
    border: 2px solid #85b0cf;
}

.top_logo a img {
    display: block;
    margin: 0 auto;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    background-color: #099;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 5px;
    padding: 15px 25px 15px 25px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: -5px;
}

.default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #172b3b;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn i {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
}

.default-btn:hover {
    color: #fff;
}

.default-btn:hover span {
    width: 225%;
    height: 562.5px;
}

.default-btn:focus {
    color: #fff;
}

a.wotn-btn {
    position: relative;
    display: flex;
}

a.wotn-btn span.text,
button.wotn-btn span.text {
    height: 45px;
    line-height: 45px;
    background: #fff;
    padding: 0 25px;
    border-radius: 18px;
    color: #0e1421;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

a.wotn-btn.stand-alone span.text,
button.wotn-btn.stand-alone span.text {
    padding: 0 35px;
}

a.wotn-btn.stand-alone.back span.text,
button.wotn-btn.stand-alone.back span.text {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}

a.wotn-btn span.arrow,
button.wotn-btn span.arrow {
    height: 45px;
    width: 45px;
    line-height: 45px;
    padding: 0 12px;
    border-radius: 18px;
    color: #fff;
    display: block;
    position: relative;
    background: #355166 url(../images/icons/arrow-right1.png) no-repeat center;
    background-position-x: -45px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

a.wotn-btn:hover span.arrow,
button.wotn-btn:hover span.arrow {
    background-position-x: 0;
}

a.wotn-btn.download span.arrow,
button.wotn-btn.download span.arrow {
    background: #355166 url(../images/icons/download.png) no-repeat center;
    background-position-y: -45px;
    background-position-x: 50%;
}

a.wotn-btn.download:hover span.arrow,
button.wotn-btn.download:hover span.arrow {
    background-position-y: 0;
}

.dark a.wotn-btn span.text,
.dark button.wotn-btn span.text {
    background: #0E1421;
    color: #fff;
}

.dark a.wotn-btn:hover span.text,
a.wotn-btn:hover span.text,
.dark button.wotn-btn:hover span.text,
button.wotn-btn:hover span.text {
    background: #355166;
    color: #fff;
}

header.navbar-area.is-sticky.dark {
    background: rgba(255, 255, 255, 0.719);
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
}

header.navbar-area.is-sticky.dark .navbar-nav li a {
    color: #0E1421;
}

header.navbar-area.is-sticky.dark .navbar-nav li a:hover,
header.navbar-area.is-sticky.dark .navbar-nav li.active a {
    color: #4e6e87;
}

header.navbar-area.is-sticky.dark .hover-indicator {
    background: rgba(23, 43, 59, 0.07);
}

header.navbar-area.is-sticky.dark .top_logo a img {
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    filter: brightness(0);
}

header.navbar-area.is-sticky.dark a.lang {
    border: 2px solid #1b212d;
    color: var(--White, #1b212d);
}

header.navbar-area.is-sticky.dark a.lang:hover {
    border: 2px solid #355166;
    color: var(--White, #355166);
}

.hero-video-wrapper video {
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


.video-background-wrapper {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.video-background-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-background-wrapper span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.video-background-wrapper a.arrow {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 9;
    width: 40px;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    background: url(../videos/frames/frame_1.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-background-wrapper {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.video-background-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-background-wrapper span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.video-background-wrapper a.arrow {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 9;
    width: 40px;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.hero-section {
    background: #1b212d;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding-bottom: 4em;
    z-index: 99;
    width: 100%;
}

.arrow1 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content h1,
.video-content h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}

.hero-content h1 span,
.video-content h2 span {
    transform: translate(0, 100%);
    opacity: 0;
    line-height: 1em;

    display: inline-block;
    color: #677D8D;
}

.hero-content h1 span:first-child,
.video-content h2 span:first-child {
    margin-right: 7px;
}

.hero-content h1 span+span,
.video-content h2 span+span {
    margin-right: 7px;
}

a.arrow-link {
    display: block;
    width: 66px;
    height: 66px;
    line-height: 61px;
    border-radius: 24px;
    border: 2px solid #FFF;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    flex: 0 0 auto;
    text-align: center;
    position: relative;
}

a.arrow-link:hover {
    border-color: #677D8D;
}


@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/* ----------our-story------------ */

.our-story {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #0e1421;
    padding-top: 95px;
}

.our-story-left-text h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    color: white;
    text-transform: capitalize;
    padding-bottom: 78px;
    margin: 0;
}

.our-story-left-text h2 span {
    color: #677d8d;
}

.our-story-left-text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 111.111% */
    color: white;
    max-width: 443px;
    margin: 0;
}

.our-story-right-images,
.our-story-right-images .left-images {
    height: 100%;
}

.our-story-right-images .left-images img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 13px;
}

.down-left-img {
    margin-top: 24px;
}

.our-story-solo-img {
    display: flex;
    align-items: end;
    height: 100%;
}

.our-story-solo-img img {
    border-radius: 13px;
}

.our-story .rect-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.our-story .counter-section {
    padding-top: 178px;
    padding-bottom: 122px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    padding: 56px 28px 66px 0px;
}

.counter-box p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
    color: white;
}

.counter-box h3 {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 57px;
    /* 118.75% */
    color: white;
    margin-bottom: 26px;
}

/* --------heroo------- */
/* .story-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: end;
    background-color: #0e1421;
  } */

body,
html {
    overflow-x: hidden;
}

.story-bg img {
    position: relative;
    width: 100%;
}

.story-bg {
    position: relative;
    width: 100%;
}

.story-hero-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.story-hero-bottom {
    padding: 88px 74px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: linear-gradient(0deg, #0e1421 20.25%, rgba(14, 20, 33, 0) 100%);
}

.story-hero-bottom h1 {
    color: #fff;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 58px;
    max-width: 374px;
    padding: 22px 22px 14px 0px;
    margin: 0px;
}

.image-patterns {
    display: flex;
    flex-direction: row;
    max-width: 177px;
    align-items: center;
    max-height: 27px;
    margin-bottom: 22px;
}

.image-patterns img {
    padding: 5px;
    padding-bottom: 0px;
}


.value-card {
    border-radius: 35px;
    background: #e1e4e8;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    justify-content: end;
    height: 313px !important;
}

.value-card .icon {
    margin-top: 47px;
    height: 60px;
    margin-bottom: 47px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
}

.value-card h3 {
    color: #355166;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 113.636% */
    padding-bottom: 16px;
}

.value-card p {
    color: #355166;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    max-width: 220px;
}

.values-left-wrapper,
.values-right-wrapper {
    transition: transform 1s ease-in-out;
}

.values-right-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    transform: translateX(35%);
}

.swiper-horizontal&gt;.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    opacity: 0 !important;
}

/* -----mission-vision-------- */
.mission-vision {
    background: #fafafa;
    position: relative;
    width: 100%;
    height: 100%;
}

.mission-wrapper {
    padding-top: 70px;
    padding-bottom: 370px;
}

.mission-card {
    border-radius: 38px;
    background: #eceef1;
}

.mission-card-text h3 {
    color: #0e1421;

    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    /* 118.75% */
    margin-bottom: 23px;
}

.mission-card-text h3 span {
    color: #677d8d;

    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;

    margin-bottom: 23px;
}

.mission-card-text p {
    color: #0E1421;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
    max-width: 434px;
    margin-bottom: 0px;
}

.mission-card-text {
    padding: 94px 33px 0px 58px;
}

.mission-wrapper.vision {
    padding-bottom: 70px;
    padding-top: 370px;
}

/* ------need-consultant--- */
.need-consultant {
    background: radial-gradient(121.79% 166.43% at 42.61% 50%,
            #fff 0%,
            #b7c1d5 100%);
    padding: 156px 275px 110px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    position: relative;
    z-index: 10;
}

.need-cons-text h3,
.ready-text h2 {
    color: #0e1421;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    /* 118.75% */
}

.need-cons-text h3 span,
.ready-text h2 span {
    color: #677d8d;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    /* 118.75% */
}

.need-cons-text p,
.ready-text p {
    color: #0E1421;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
}

.default-btn {
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    background-color: #0e1421;
    -webkit-transition: 0.6s;
    transition: transform 0.6s ease;
    border-radius: 18px;
    padding: 0px 18px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    max-height: 44px;
}

.arrow-btn {
    display: flex;
    height: 44px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 18px;
    background: var(--Primary-2, #355166);
    transition: transform 0.6s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.need-cons-btn {
    margin-top: 46px;
}

.need-cons-btn a {
    display: flex;
    flex-direction: row;
    max-height: 44px;
    justify-content: center;
    gap: 2px;
    transition: transform 0.6s ease;
    transform: translateX(-48px);
    max-width: fit-content;
    margin: auto;
}

.arrow-btn.hidden {
    opacity: 0;
}

.need-cons-btn a:hover .arrow-btn.hidden {
    opacity: 1;
    transform: translateX(48px);
}

.need-cons-btn a:hover .arrow-btn {
    opacity: 0;
    transform: translateX(48px);
}

.need-cons-btn a:hover .default-btn {
    transform: translateX(48px);
}

/* -------ready-next------- */
.ready-next {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 8;
    margin-top: -170px;
    transform: translateY(110px);
    background: #eceef1 url(../images/ready-img.png) right top no-repeat;
    padding: 10em 0;
}

.ready-text-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.ready-text-content {
    max-width: 490px;
}

.ready-next .need-cons-btn a {
    margin: 0;
}

.ready-img-container img {
    width: 100%;
}

/* -------footer--------- */
.footer-section {
    border-radius: 60px 60px 0px 0px;
    background: var(--Secondry, #1d2d43);
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: 60px;
    position: relative;
    z-index: 9;
}

.upper img {
    height: 60px;
}

.upper p {
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    padding-top: 30px;
}

.upper-middle {
    padding: 0;
    margin: 0;
}

.upper-middle a {
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: underline;
}

.upper-middle a:hover {
    color: #b7c1d5;
}

.upper-bottom {
    padding-top: 63px;
}

.upper-bottom p {
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    padding-bottom: 10px;
}

.footer-icons {
    display: flex;
    flex-direction: row;
}

.footer-icons a {
    margin-right: 11px;
}

.footer-icons a img {
    border-radius: 8px;
    border: 1px solid var(--Grey, #d9dce1);
    display: flex;
    width: 36px;
    height: 36px;
    padding: 8.1px;
    justify-content: center;
    align-items: center;
}

.footer-icons a:hover {
    opacity: 0.5;
}

.middle-footer .middle-left a,
.middle-footer .middle-right a {
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.middle-footer .middle-left a:hover,
.middle-footer .middle-right a:hover {
    color: #b7c1d5;
}

.middle-footer {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.middle-left,
.middle-right {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.top-right {
    text-align: right;
}

.right-footer {
    display: flex;
}

.right-footer-content&gt;p {
    color: #FAFAFA;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
}

.right-footer-content .subscribe {
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-top: 30px;
}

.bottom-right .input-group&gt;.form-control {
    border-radius: 16px;
    background: #152130;
    border: 0;
    color: #FAFAFA;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    min-height: 56px;
}

.bottom-right .input-group .btn {
    border-radius: 14px !important;
    margin-left: -13px !important;
    background: #FAFAFA;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    border: 10px solid #152130;
    color: #0E1421;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.bottom-right .input-group .btn:hover {
    background: #1d2d43;
    color: #fff;
}

.bottom-right .input-group&gt;.form-control::placeholder {
    color: #fff;
}

.bottom-right .input-group&gt;.form-control::-ms-input-placeholder {
    color: #fff;
}

.copy-right {
    padding: 20px 0;
    margin-top: 35px;
    background: #17263a;
    border-top: 1px solid #15253a;
}

.copy-right .flexa {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-right p {
    color: var(--Grey, #D9DCE1);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.proj {
    position: relative;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    height: 440px;
}

.proj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.proj a {
    background: linear-gradient(180deg, rgba(53, 81, 102, 0.00) 0.35%, #1D2D43 78.3%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 30px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.proj a h3 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    min-height: 38px;
    width: 80%;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.proj a p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.proj .video-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 170%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.proj:hover a {
    padding: 200px 30px 40px;
}

.proj:hover a p,
.proj:hover a h3 {
    text-shadow: 0 0 3px rgba(204, 204, 204, 0.507);
}


/* inners */
/* profile page */

.bright {
    filter: brightness(500);
}

.hero-video-wrapper.profile {
    background: #0e1421 url(../images/profile.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.profile:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
}

.our-profile {
    padding: 2em 0 6em;
    position: relative;
    z-index: 8;
    background: #0e1421;
    /* margin-top: -62px;
    transform: translateY(62px); */
}

.profile-block {
    border-radius: 34px;
    background: rgba(29, 45, 67, 0.278);
    padding: 23px;
    margin-bottom: 30px;
}

.profile-block .image {
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 100%;
    margin-bottom: 20px;
}

.profile-block .d-flex .image {
    width: 40%;
    margin-bottom: 0;
    height: 190px;
}

.profile-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-block .image.video img {
    position: relative;
    z-index: 2;
}

.profile-block .play,
.profile-block .play1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 71px;
    height: 71px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.302);
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 71px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    z-index: 5;
}

.profile-block .play:hover,
.profile-block .play1:hover {
    backdrop-filter: blur(1px);
}

.profile-block .image .play img,
.profile-block .image .play1 img {
    width: 25px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-left: 4px;
}

.profile-block .image .play.played img {
    margin-left: 0;
}

.profile-block .image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.profile-block h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 10px;
}

.profile-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12px;
    color: #fff;
}

.profile-block .d-flex&gt;div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* contact */
.contact-section {
    padding: 7em 0;
    padding-bottom: 13em;
    position: relative;
    z-index: 8;
    background: #0E1421 url(../images/contact.png) no-repeat center bottom;
    background-size: 44%;
    background-position-y: 130%;
    background-position-x: 30%;
    margin-top: -62px;
    transform: translateY(62px);
}

.contact-info h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-info h4 span {
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    color: #68869d;
}

.contact-info h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 56px;
    color: #fff;
    margin-bottom: 30px;
}

.contact-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 39px;
}

.contact-info h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}

.contact-info a {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #fff;
    display: block;

}

.conta-block a+a {
    margin-top: 12px;
}

.contact-info a:hover {
    color: #85b0cf;
}


.conta-block img {
    width: 40px;
}

.conta-block {
    display: flex;
    column-gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-form {
    backdrop-filter: blur(10px);
    background: rgba(29, 45, 67, 0.29);
    padding: 50px;
    height: 100%;
    border-radius: 33px;
}

.contact-form .form,
.contact-form&gt;form {
    min-height: 55vh;
}

.contact-form h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
    color: #fff;
}

.contact-form h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.5rem 1.3rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
    border: 1px solid transparent;
    background: rgba(29, 45, 67, 0.698);
    border-radius: 15px;
}

.form-control::placeholder {
    color: #fff;
}

.form-control:focus {
    background: rgba(26, 40, 59, 0.898);
    border: 1px solid rgba(43, 64, 94, 0.898);
    color: #fff;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-pagination {
    column-gap: 15px;
    align-items: center;
}

.form-pagination p {
    color: #FAFAFA;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.form-pagination .pagia span {
    background: #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.form-pagination .pagia span.active {
    background: #677D8D;
    width: 25px;
}

.pagia {
    margin-top: -5px;
}

select.form-control {
    background: rgba(29, 45, 67, 0.698) url(../images/icons/arrow-down.svg) no-repeat right center !important;
    background-position: right 15px center !important;
}

.form-control.upload {
    background: rgba(29, 45, 67, 0.698) url(../images/icons/upload.svg) no-repeat right center !important;
    background-position: right 15px center !important;
}

.hidden {
    display: none;
}

div#slider-container {
    margin-bottom: 35px;
}

.hero-section#contact,
.hero-video-wrapper.contact {
    height: auto;
    min-height: auto;
}

.range-value {
    text-align: right;
    font-size: 16px;
}

.noUi-horizontal {
    height: 7px;
}

.noUi-target {
    background: #24354e;
    border-radius: 4px;
    border: 0;
    box-shadow: none;
}

.noUi-connect {
    background: #D9D9D9;
}

.noUi-handle {
    border: 1px solid #FAFAFA;
    border-radius: 3px;
    background: #1D2D43;
    cursor: default;
    box-shadow: none;
}

.noUi-horizontal .noUi-handle {
    width: 15px;
    height: 15px;
    right: -11px;
    top: -4px;
    border-radius: 4px;
    cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.range-label {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 10px;
}

.range-label div,
.range-label label {
    margin-bottom: 15px;
}

.custom-radio .form-label {
    margin-bottom: 15px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.custom-radio label.btn.btn-secondary,
.custom-radio a.btn.btn-secondary {
    border-radius: 15px;
    background: rgba(29, 45, 67, 0.7);
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    display: block;
    padding: 14px 12px;
    border: 0;
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.custom-radio label.btn.btn-secondary:hover,
.custom-radio a.btn.btn-secondary:hover {
    border-radius: 15px;
    background: #23354e;
}

.custom-radio .btn-check:checked+.btn-secondary {
    background: #fff;
    color: #0E1421;
}

.custom-radio .btn-check:checked+.btn-secondary:hover {
    background: #e6f0ff;
    color: #0E1421;
}

.custom-radio p {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 0;
}

.steps {
    /* display: none; */
}

.contact-form .steps .row &gt; .row {
    margin: 0;
}

.contact-form .steps .row &gt; .row .col-lg-12 {
    padding: 0;
}

.datepicker.dropdown-menu {
    padding: 0;
    background: #1d2d43;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.datepicker table tr td {
    border: 0;
    background: transparent;
    border-radius: 50%;
    padding: 8px 11px;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: transparent;
    color: #fff;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
    color: #fff;
    background-color: #355166;
    border-color: #355166;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    background-color: #355166;
    border-color: #355166;
}

.datepicker table tr td.today {
    color: #fff;
    background-color: #355166;
    border-color: #355166;
}

.datepicker table tr td.new,
.datepicker table tr td.old {
    color: #677d8d;
}

.datepicker table tr td,
.datepicker table tr th,
.datepicker-days thead {
    border: 0;
    background: transparent;
}

th.dow {
    color: #b6b6b6;
    border-top: 1px solid #fff;
}

.datepicker-days thead tr:last-child {
    border-top: 1px solid;
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover,
.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
    background: #122033;
}

.datepicker-dropdown:before {
    border-bottom: 7px solid #33445c;
}

.datepicker-dropdown:after {
    border-bottom: 6px solid #1d2d43;
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid #33445c;
}

.datepicker-dropdown.datepicker-orient-top:after {
    border-top: 6px solid #1d2d43;
}

hr {
    color: #355166;
    background-color: rgb(53 81 102);
}

.custom-radio label.btn.btn-secondary span {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 2px;
    display: block;
    margin-top: 9px;
    margin-bottom: 7px;
}

.custom-radio input[type="radio"] {
    display: none;
}

/* clients page */

.hero-video-wrapper.clients {
    background: #0e1421 url(../images/clients.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.clients:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
    z-index: 1;
}

.our-numbers {
    padding: 6em 0;
    padding-bottom: 8em;
    position: relative;
    z-index: 8;
    background: #0e1421 url(../images/shape2.png) no-repeat right bottom;
    background-size: contain;
}

.our-numbers p span,
.our-numbers .number-block&gt;p:first-child {
    color: #FAFAFA;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 57px;
    margin-bottom: 5px;
}

.our-numbers p span,
.our-numbers .number-block&gt;p:first-child {
    color: #677D8D;
}

.our-numbers p {
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.our-clients {
    padding: 6em 0 4em;
    padding-bottom: 7em;
    background: #E1E4E8;
    border-radius: 0 0 60px 60px;
    position: relative;
    z-index: 10;
}

.our-clients h2 {
    color: #0E1421;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    margin-bottom: 55px;
}

.client-image {
    border-radius: 22px;
    background: #FFF;
    height: 115px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 30px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* inner-project */
.hero-video-wrapper.inner-project {
    z-index: 99;
}

.hero-video-wrapper.inner-project:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    z-index: 9;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
}


.hero-content .image {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin-bottom: 20px;
}

.hero-content .image+.container {
    z-index: 999;
}

.hero-content .image:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    z-index: 9;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
}

.hero-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content .image.video img {
    position: relative;
    z-index: 2;
}

.hero-content .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 71px;
    height: 71px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.302);
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 71px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    z-index: 99;
}

.hero-content .play:hover {
    backdrop-filter: blur(1px);
}

.hero-content .image .play img {
    width: 25px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-left: 4px;
}

.hero-content .image .play.played img {
    margin-left: 0;
}

.hero-content .image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-content .image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 114vh;
}

.hero-section#inner-project+.our-numbers {
    padding-top: 2em !important;
}

.swiper.Slider2 {
    padding-bottom: 65px;
}

.project-swiper-pagination.swiper-pagination-horizontal {
    width: auto;
}

.project-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    opacity: 1;
}

.project-swiper-pagination .swiper-pagination-bullet-active {
    background: #677D8D;
    width: 25px;
}

.slider2-buttons {
    position: absolute;
    bottom: -50px;
    width: 100%;
}

.slider2-buttons img {
    height: 30px;
}

.slider2-buttons img:hover {
    filter: brightness(500);
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.project-detail-block {
    padding: 0 0 6em;
    position: relative;
    background: #0e1421;
}

.proj-image {
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.proj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-d h3 {
    color: #FAFAFA;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 30px;
}

.project-d h3 span {
    color: #677D8D;
}

.project-d ul {
    margin: 0;
    padding: 0;
    margin-bottom: 1.5em;
}

.project-d ul li {
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    list-style: inside;
}

/* projects */
.hero-video-wrapper.projects {
    background: #0e1421 url(../images/projects/projects.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.projects:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
    z-index: 1;
}

.our-projects {
    padding: 6em 0;
    position: relative;
    z-index: 8;
    background: #0e1421;
    margin-top: -62px;
    transform: translateY(62px);
}

.our-projects .proj {
    margin-bottom: 30px;
}

ul.filter {
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 10px;
    list-style: none;
    margin-bottom: 50px;
}

ul.filter li a {
    border-radius: 18px;
    background: #1D2D43;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    color: #fff;
    padding: 10px 28px;
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

ul.filter li a:hover {
    background: #2c3e57;
}

ul.filter li a.active {
    background: #fff;
    color: #0E1421;
}

.list-of-projects .col-lg-4 {
    opacity: 0;
    transform: translate(40px, 130px);
    transition: all 0.5s ease-in-out;
    position: relative;
}

.list-of-projects .col-lg-4.show {
    opacity: 1;
    transform: translate(0, 0);
}

.list-of-projects {
    min-height: 50vh;
}

/* blogs page */

.hero-video-wrapper.blogs {
    background: #0e1421 url(../images/blogs/blog-hero.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.blogs:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
}

.our-blogs {
    padding: 6em 0;
    position: relative;
    z-index: 8;
    background: #0e1421;
    margin-top: -62px;
    transform: translateY(62px);
}

.blog-block {
    border-radius: 34px;
    background: rgba(29, 45, 67, 0.278);
    padding: 23px;
    margin-bottom: 30px;
}

.blog-block .image {
    border-radius: 26px;
    width: 100%;
    margin-bottom: 20px;
}

.blog-block .d-flex .image {
    width: 40%;
    flex: 0 0 40%;
    margin-bottom: 0;
}

.blog-block .image a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 195px;
    width: 100%;
    margin-bottom: 0;
    border-radius: 26px;
}

.blog-block .image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-block h6 {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
}

.blog-block h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.blog-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    color: #fff;
}

.blog-block .d-flex&gt;div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* about page */

.hero-video-wrapper.about {
    background: #0e1421 url(../images/about/about-hero.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.about:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
    z-index: 1;
}

.lead {
    padding: 6em 0;
    position: relative;
    background: #0e1421 url(../images/shape3.png) no-repeat left bottom;
}

.lead h2 {
    color: #FAFAFA;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 30px;
}

.lead h2 span {
    color: #677D8D;
    padding: 0 10px;
}

.lead p {
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.lead-image {
    position: relative;
    overflow: hidden;
    height: 270px;
    border-radius: 13px;
}

.col-lg-7&gt;.lead-image {
    height: 500px;
}

.lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
}

.lead .our-numbers {
    background: transparent;
    padding-top: 8em;
    padding-bottom: 0;
}

.about-section {
    padding: 6em 0;
    position: relative;
    background: #FAFAFA;
}

.mv-block {
    border-radius: 38px;
    background: #ECEEF1;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.mv-block.sec {
    margin-top: 130px;
}

.mv-block h2 {
    color: #0E1421;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    margin-bottom: 30px;
    padding: 0 60px;
}

.mv-block h2 span {
    color: #677D8D;
}

.mv-block p {
    color: #0E1421;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0 60px;
}

.mv-image {
    position: relative;
    overflow: hidden;
}

.mv-image:before {
    content: "";
    width: 60%;
    height: 61%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(2px);
    display: none;
}

.consultation {
    background: radial-gradient(121.79% 166.43% at 42.61% 50%, #FFF 0%, #B7C1D5 100%);
    padding: 153px 275px 107px 275px;
    border-radius: 0px 0px 60px 60px;
    margin-bottom: 120px;
    text-align: center;
}

.consultation h2 {
    color: #0E1421;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
}

.consultation h2 span {
    color: #677D8D;
}

.consultation p {
    color: #0E1421;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 30px;
}

.consultation a.wotn-btn {
    justify-content: center;
}

.partnerships {
    background: #ECEEF1;
    padding: 6em 0;
}

.partnerships h2 {
    color: #0E1421;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    margin-bottom: 40px;
}

.partnerships h2 span {
    color: #677D8D;
}

.partner-block h3 {
    color: #355166;
    ;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin: 22px 0;
}

.partner-block p {
    color: #355166;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.partner-image {
    height: 115px;
    position: relative;
    overflow: hidden;
    padding: 15px;
    background: #f2f5f9;
    border-radius: 20px;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.partner-swiper-pagination.swiper-pagination-horizontal {
    width: auto;
}

.partner-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    opacity: 1;
}

.partner-swiper-pagination .swiper-pagination-bullet-active {
    background: #677D8D;
    width: 25px;
}

/* values */
.values-section {

    background: radial-gradient(121.79% 166.43% at 42.61% 50%, #FFF 0%, #B7C1D5 100%);
    position: relative;
    min-height: 700px;

}

.values-section h2 {
    color: #0E1421;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
}

.values-section h2 span {
    color: #677D8D;
}

.values-section p {
    color: #0E1421;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.values-section .col-lg-8 {
    position: relative;
    height: 100%;
}

.swipe {
    background: radial-gradient(121.79% 166.43% at 42.61% 50%, #FFF 0%, #B7C1D5 100%);
    transform: translateX(40%);
    padding: 175px 72px;
    position: relative;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.swipe .container {
    margin: 0;
}

.swipe.full-w .container {
    margin: 0 auto;
}

.value-block {
    border-radius: 35px;
    background: #E1E4E8;
    padding: 47px 31px 36px 31px;
}

.value-block h3 {
    color: #355166;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin: 24px 0;
}

.value-block p {
    color: #355166;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    min-height: 100px;
}

/* .swipe .swiper {
    width: 100%;
    position: absolute;
    left: 72px;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
} */

@media (min-width: 1200px) {
    .swipe .swiper {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .swipe .swiper {
        max-width: 1320px;
    }
}

.value-block .images {
    height: 99px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.value-block .images img {
    transition: transform 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.value-block .images img.hove {
    transform: translate(-50%, -50%) scale(0);
}

.value-block:hover .images img {
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
}

.value-block:hover .images img.hove {
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
}

.covered {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #E1E4E8;
}

/* services page */

.hero-video-wrapper.services {
    background: #0e1421 url(../images/services/services-hero.jpg) no-repeat center;
    background-size: cover;
}

.hero-video-wrapper.services:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
    z-index: 1;
}

.our-services {
    padding: 6em 0;
    position: relative;
    background: #0E1421 url(../images/services/service-back.png) no-repeat right top;
}

.our-services p.service-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 57px;
    color: #FFFFFF;
    margin-bottom: 20px;
}



.our-services p.service-title span {
    color: #677D8D;
}

.our-services p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.service-block {
    border-radius: 28px;
    background: rgba(29, 45, 67, 0.28);
    backdrop-filter: blur(9.4px);
    padding: 32px 24px;
    margin-bottom: 30px;
}

.service-block h3 {
    color: #FAFAFA;
    font-weight: 400;
    font-size: 21px;
    line-height: 57px;
    margin: 0;
}

ul.service-features1 {
    padding: 0;
    margin: 0;
    list-style: inside;
}

ul.service-features1 li {
    color: #FAFAFA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.service-block-icon {
    position: relative;
    overflow: hidden;
    height: 125px;
    display: inline-block;
}

.service-block-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.list-of-services {
    margin-top: 3em;
}

/* not-found */
.not-found-section {
    padding: 9em 0;
    position: relative;
    z-index: 8;
    background: #0E1421 url(../images/not-found.jpg) no-repeat center top;
    background-size: cover;
    margin-top: -62px;
    transform: translateY(62px);
}

.hero-section#not-found,
.hero-video-wrapper.not-found {
    height: auto;
    min-height: auto;
}

.not-found-block {
    border-radius: 48px;
    background: rgba(29, 45, 67, 0.29);
    backdrop-filter: blur(15.199999809265137px);
    min-height: 80vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-found-block h1 {
    color: #FAFAFA;
    font-size: 150px;
    font-style: normal;
    font-weight: 500;
    line-height: 187px;
}

.not-found-block h1 span {
    position: relative;
    display: inline-block;
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.not-found-block h3 {
    color: #FAFAFA;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 58px;
}

.not-found-block p {
    color: #FAFAFA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 30px;
}

/* privacy */
.privacy-section {
    padding: 9em 0;
    position: relative;
    z-index: 8;
    background: #0E1421 url(../images/privacy/privacy-b.png) no-repeat center;
    background-size: cover;
    margin-top: -62px;
    transform: translateY(62px);
}

.hero-section#privacy,
.hero-video-wrapper.privacy {
    height: auto;
    min-height: auto;
}

.maine h2 {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 57px;
    margin-bottom: 15px;
}

.maine h3 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 15px;
}

.maine p {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.privacy-block {
    border-radius: 40px;
    background: rgba(29, 45, 67, 0.29);
    backdrop-filter: blur(40px);
    padding: 40px;
    margin: 50px 0;
}

.privacy-block img {
    display: block;
    margin: 0 auto;
}

.privacy-block .col-lg-6 {
    margin-bottom: 40px;
}

.privacy-block h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
}

.privacy-block h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
}

.privacy-block p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.privacy-block ul {
    margin: 0;
    list-style: inside;
    padding: 0;
}

.privacy-block li {
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    column-gap: 10px;
}

.privacy-block li span {
    line-height: 26px;
    display: inline-block;
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #fff;
    margin-top: 9px;
}

/* blog-details */
.hero-video-wrapper.stand-a {
    background: #0E1421;
}

.hero-video-wrapper.stand-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.hero-video-wrapper.stand-a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: linear-gradient(179.92deg, rgba(14, 20, 33, 0) 6.09%, #0E1421 86.21%);
    z-index: 1;
}

.hero-content .col-lg-4 p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
}

.blog-details {
    padding: 3em 0;
    position: relative;
    background: #0e1421;
}

.blog-details p {
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog-details a {
    color: #85b0cf;
}

.blog-details a:hover {
    color: #fff;
}

.blog-details h2,
.blog-details h3 {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    margin: 20px 0;
}


.blog-details ul,
.blog-details ol {
    padding: 0;
    margin: 0;
}

.blog-details ul li,
.blog-details ol li {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    list-style: inside;
    margin-bottom: 8px;
}

.blog-details img {
    border-radius: 31px;
    margin: 20px auto;
    display: block;
}

ul.numberic li {
    list-style: inside number;
}

img.lazy[data-src] {
    background: #101725 url(../images/img-loader.gif) no-repeat center;
    background-size: 200px;
}

.alert-danger {
    color: #fff;
    background-color: #dd3333;
    font-size: 16px;
    border-color: #dd3333;
    padding: 0.7rem 1rem;
}

.right-footer-content p.alert-danger {
    text-align: center;
    display: none;
    color: #fff !important;
    font-size: 16px;
    padding: 0.1rem 1rem;
}

.details-proj {
    margin: 6em 0 0.5em;
}

.details-proj h2 {
    font-weight: 400;
    font-size: 38px;
    line-height: 45px;
    letter-spacing: 0%;
    color: #fff;
}

.details-proj h2 span {
    color: #677D8D;
    display: block;
}

.details-proj .client-image {
    width: auto;
    display: inline-block;
    padding: 20px;
    border-radius: 15px;
}

.details-proj p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}

p.loadingMessage.alert-success {
    background: #36A170;
    border: 0;
}

button#submit {
    background: transparent;
    border: 0;
    outline: 0;
}

.values-swiper-pagination.swiper-pagination-horizontal {
    width: auto;
}

.values-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    opacity: 1;
}

.values-swiper-pagination .swiper-pagination-bullet-active {
    background: #677D8D;
    width: 25px;
}

/* ar */

html[lang="ar"] a.wotn-btn span.arrow,
html[lang="ar"] button.wotn-btn span.arrow {
    background: #355166 url(../images/icons/arrow-left1.png) no-repeat center;
    background-position-x: 0;
}

html[lang="ar"] a.wotn-btn:hover span.arrow,
html[lang="ar"] button.wotn-btn:hover span.arrow {
    background-position-x: -45px;
}

html[lang="ar"] a.wotn-btn.download span.arrow,
html[lang="ar"] button.wotn-btn.download span.arrow {
    background: #355166 url(../images/icons/download.png) no-repeat center;
    background-position-y: -45px;
    background-position-x: 50%;
}

html[lang="ar"] a.wotn-btn.download:hover span.arrow,
html[lang="ar"] button.wotn-btn.download:hover span.arrow {
    background-position-y: 0;
}

html[lang="ar"] .ready-next {
    background: #eceef1 url(../images/ready-img1.png) left center no-repeat;
}

html[lang="ar"] .services-menu .dot {
    right: auto;
    left: -38px;
}

html[lang="ar"] section.services-section .row .col-lg-6:first-child {
    border-left: 1px solid #0E1421;
    border-right: 0;
}

html[lang="ar"] #switcher-container {
    left: 25px;
    right: auto;
}

html[lang="ar"] a.arrow-link img {
    transform: rotate(180deg);
    margin-top: -2px;
}

html[lang="ar"] .pro-card .ende a img {
    transform: rotate(180deg);
}

html[lang="ar"] .slider2-buttons {
    direction: ltr;
    justify-content: flex-start !important;
    column-gap: 10px;
}

html[lang="ar"] .swipe {
    transform: translateX(-40%);
}

html[lang="ar"] .mv-image:before {
    left: auto;
    right: 0;
}

html[lang="ar"] .form-control.upload {
    background-position-x: 15px !important;
}

html[lang="ar"] select.form-control {
    background-position-x: 15px !important;
}

html[lang="ar"] .noUi-target {
    direction: ltr;
}

html[lang="ar"] .navbar-toggler {
    right: 10px;
    left: auto;
}

/* html[lang="ar"] .hover-indicator {
    right: 0;
    left: auto;
} */

html[lang="ar"] .navbar-expand-xl .navbar-nav {
    flex-direction: row-reverse;
    direction: ltr;
}

.alert-success {
    color: #0f5132;
    background-color: #0fc545;
    border-color: transparent;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

span.field-validation-error {
    color: #fff !important;
    font-size: 13px !important;
}

.hero-video-wrapper.inner-project {
    height: 75%;
}

.hero-section#inner-project {
    min-height: 75vh;
}

.hero-section#inner-project .hero-content {
    height: 75vh;
}

.hero-section#inner-project .hero-content .image {
    height: 75vh;
}


.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    padding: 23px;
    height: auto;
    width: auto;
    backdrop-filter: blur(6px);
    background-color: rgba(19, 26, 42, 0.5);
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 3px #000;
}

.project-d-slider .proj-image {
    height: 600px;
}

@media (min-width: 992px) {
    .col-lg-15 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.conta-block i {
    border: 2px solid #fff;
    color: #fff;
    padding: 8px;
    border-radius: 12px;
    font-size: 23px;
    font-weight: lighter;
}

.upper-middle a {
    display: flex;
    column-gap: 10px;
    align-items: center;
    text-decoration: none;
}

.upper-middle a span {
    text-decoration: underline;
}

.upper-middle a i {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: lighter;
    text-decoration: none;
}

.upper-middle a i:before {
    text-decoration: none;
}

.upper-middle div.mb-2 {
    margin-bottom: .9rem !important;
}

.home-services {
    padding: 6em 0;
    position: relative;
    background: #0E1421 url(../images/services/service-back.png) no-repeat right top;
}

.home-services h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    color: white;
    padding-bottom: 15px;
    margin: 0;
}

.home-services h2 span {
    color: #677d8d;
}

.home-services p {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    color: white;
}

.service-block .d-flex {
    column-gap: 15px;
}

.s-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.s-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-feature {
    background: linear-gradient(356.94deg, #273C58 -10.35%, #0E1421 116.05%);
    border-radius: 26px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.service-feature p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin: 0;
    margin-top: 15px;
    min-height: 45px;
}

.service-feature img {
    height: 40px;
}

.custom-radio label.btn.btn-secondary img,
.custom-radio a.btn.btn-secondary img {
    display: block;
    margin: 0 auto;
    margin-bottom: 6px;
}

.custom-radio .btn-check:checked+.btn-secondary img {
    filter: invert(67%) sepia(9%) saturate(1526%) hue-rotate(175deg) brightness(94%) contrast(89%);
}

.hero-video-wrapper.projects:after,
.hero-video-wrapper.about:after,
.hero-video-wrapper.clients:after,
.hero-video-wrapper.services:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.35;
}


.hero-video-wrapper.projects video,
.hero-video-wrapper.about video,
.hero-video-wrapper.clients video,
.hero-video-wrapper.services video {
    position: relative;
}

.profile-block p {
    min-height: 78px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #0e1421;
}

.tooltip-inner {
    max-width: 250px;
    padding: .55rem .95rem;
    background-color: #0e1421;
    font-size: 16px;
    font-weight: 600;
}

div#html5-watermark,
div#html5lightbox-watermark {
    display: none !important;
}

#html5-text {
    color: #ffffff !important;
    font-size: 16px !important;
    text-align: center !important;
}

.html5-elem-wrap,
.html5-elem-box {
    background-color: #151d30 !important;
    border-radius: 15px;
}

#html5-lightbox-overlay {
    background-color: #0a0f1a !important;
}

.html5-image {
    padding: 20px !important;
}

.html5boxSeekerPlay,
.html5boxVolumeBarActive {
    background: #84b3d6 !important;
}

#html5-close img {
    width: 47px !important;
    background: #2c3e57 !important;
    border-radius: 50%;
    padding: 12px !important;
    border: 2px solid #131b2c;
    transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
}

#html5-close img:hover {
    background: #355166 !important;
    transform: rotate(180deg);
}

.lightboxcontainer {
    width: 100%;
    text-align: left;
}

.lightboxleft {
    width: 40%;
    float: left;
}

.lightboxright {
    width: 60%;
    float: left;
}

.lightboxright iframe {
    min-height: 390px;
}

.divtext {
    margin: 36px;
}

@media (max-width: 800px) {
    .lightboxleft {
        width: 100%;
    }

    .lightboxright {
        width: 100%;
    }

    .divtext {
        margin: 12px;
    }
}

.popover {
    background-color: #0e1421;
    border: 4px solid rgba(29, 45, 67, 0.7);
    bottom: 5px !important;
    top: auto !important;
}

@media (min-width: 1000px) {
    .popover {
        max-width: 413px;
    }
}

.popover h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 26px;
}

.popover p {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    line-height: 18px;
    margin-bottom: 3px;
}

.bs-popover-auto[data-popper-placement^=top]&gt;.popover-arrow::before,
.bs-popover-top&gt;.popover-arrow::before {
    border-top-color: rgba(29, 45, 67, 0.7) !important;
    border-bottom-color: rgba(29, 45, 67, 0.7) !important;
    border-width: .8rem .8rem 0;
}

.bs-popover-auto[data-popper-placement^=top]&gt;.popover-arrow::after,
.bs-popover-top&gt;.popover-arrow::after {
    border-top-color: rgba(29, 45, 67, 0.7) !important;
    border-width: .8rem .8rem 0;
}

.bs-popover-auto[data-popper-placement^=top]&gt;.popover-arrow,
.bs-popover-top&gt;.popover-arrow {
    bottom: -16px;
}

.popover a.wotn-btn span.text,
.popover button.wotn-btn span.text {
    border-radius: 12px;
}

.popover a.wotn-btn span.text {
    height: 38px;
    line-height: 38px;
    padding: 0 14px;
}

.cer {
    position: absolute;
    right: 25px;
    top: 2px;
    z-index: 1;
    width: 57px;
}

html[lang="ar"] .cer {
    left: 25px;
    right: auto;
}


.cer-block img {
    height: 50px;
}

.cer-block .d-flex div {
    position: relative;
    padding: 0 17px;
}

.cer-block .d-flex div:before {
    content: "";
    width: 1px;
    height: 80%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #3b4f6a;
}

html[lang="ar"] .cer-block .d-flex div:before {
    right: 0;
    left: auto;
}

.cer-block .d-flex div:first-child:before {
    display: none;
}

.swal2-popup {
    border-radius: 15px !important;
    background: #1d2d43 !important;
    color: #fff !important;
}

.swal2-title {
    color: #8399aa !important;
    padding: .1em 1em 0 !important;
}

.swal2-html-container {
    color: #fff !important;
}

.swal2-popup .btn-primary {
    height: 45px;
    line-height: 45px;
    background: #fff;
    padding: 0 25px;
    border-radius: 18px;
    color: #0e1421;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.swal2-popup .btn-outline-primary {
    height: 45px;
    line-height: 45px;
    background: transparent;
    padding: 0 25px;
    border-radius: 18px;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.swal2-popup .btn-outline-primary:hover,
.swal2-popup .btn-primary:hover {
    background: #0e1421;
    color: #fff;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left],
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right],
.swal2-icon.swal2-success .swal2-success-fix {
    background: #1d2d43 !important;
}

.steps .custom-radio .form-group .col-lg-4 {
    position: relative;
}

p.HomeCallAction {
    font-size: 26px;
    font-weight: 500;
    margin: 20px 0;
}

html[lang="ar"] .contact-info&gt;p+.conta-block+.conta-block {
    /* display: none; */
    direction: ltr;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}

html[lang="ar"] .upper-middle div.mb-2:last-child {
    direction: ltr;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}

html[lang="ar"] .upper-middle div.mb-2:last-child a {
    flex-direction: row-reverse;
}

html[lang="ar"] .contact-form h3 {
    font-size: 24px !important;
}

html[lang="ar"] .contact-info a {
    font-size: 16px;
}

html[lang="ar"] .contact-info h2 {
    font-size: 40px;
}

html[lang="ar"] [type=email],
html[lang="ar"] [type=number],
html[lang="ar"] [type=tel],
html[lang="ar"] [type=url],
html[lang="ar"] .datepicker {
    direction: rtl;
}

html[lang="ar"] .home-services,
html[lang="ar"] .our-services {
    background: #0E1421 url(../images/services/service-back-ar.png) no-repeat left top;
}

html[lang="ar"] .our-numbers p span,
html[lang="ar"] .our-numbers .number-block&gt;p:first-child {
    font-size: 38px;
    line-height: 30px;
}

html[lang="ar"] .hero-content h1,
html[lang="ar"] .video-content h2 {
    font-size: 44px;
}

html[lang="ar"] .hero-content .arrow1+.container h1 {
    direction: ltr;
    text-align: left;
}

html[lang="ar"] .blog-block h3 {
    font-size: 20px;
}

html[lang="ar"] .our-services p.service-title,
html[lang="ar"] .home-services h2 {
    font-size: 38px;
}

.navbar-area .col-lg-2.d-none.d-lg-block .justify-content-end,
.navbar-area .col-lg-3.d-none.d-lg-block .justify-content-end {
    justify-content: flex-start !important;
}

html[lang="ar"] .hero-content .arrow1+.container .col-lg-4 .col-lg-10 {
    direction: ltr;
}

html[lang="ar"] .pro-card {
    direction: rtl;
}

.blog-details h4 {
    color: #85b0cf;
}

.hero-section#profile,
.hero-video-wrapper.profile,
.hero-section#profile .hero-content {
    height: 50vh;
    min-height: 50vh;
}

.editClick,
.HideeditClick {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -29px);
    background: #122033;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 0 5px 8px rgba(16, 23, 37, 0.2);
    color: #FFF;
    z-index: 99999;
    cursor: pointer;
    display: flex;
    column-gap: 5px;
}

.editClick img,
.HideeditClick img {
    width: 20px;
}

.editBlock {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #122033;
    border: 2px solid #fff;
    text-align: center;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    line-height: 41px;
    box-shadow: 0px 0 1px 3px rgba(16, 23, 37, 0.2);
    color: #FFF;
    z-index: 99999;
    cursor: pointer;
    display: none;
}

.upper-middle .editBlock {
    display: none;
    line-height: 41px;
}

.editBlock img {
    width: 18px !important;
    border: none !important;
    height: auto !important;
    padding: 0px !important;
    display: inline !important;
}

.editBlock:hover,
.editClick:hover {
    background: #0a121d;
}

.p-r {
    position: relative;
}

/* circular-menu */
.circular-menu {
    position: fixed;
    bottom: 2em;
    right: 1em;
    z-index: 9999999999;
}

.circular-menu .floating-btn {
    display: block;
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    background-color: rgb(50 74 113);
    box-shadow: 0 0px 7px 0 #adb9cf;
    text-align: center;
    line-height: 3.2;
    cursor: pointer;
    outline: 0;
    color: #fff !important;
}

.circular-menu.active .floating-btn {
    box-shadow: inset 0 0 3px hsla(0, 0%, 0%, 0.3);
}

.circular-menu .floating-btn:active {
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.4);
}

.circular-menu .floating-btn i {
    font-size: 1.3em;
    transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu:after {
    display: block;
    content: " ";
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    background-color: rgba(27, 133, 190, 0);
    transition: all 0.3s ease;
}

.circular-menu.active:after {
    transform: scale3d(5.5, 5.5, 1);
    transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
    padding: 0;
    margin: 0;
}

.circular-menu .menu-item {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    z-index: -1;
    display: block;
    text-decoration: none;
    color: rgb(50 74 113);
    font-size: 1em;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-align: center;
    line-height: 3;
    background-color: #fff;
    transition: transform 0.3s ease, background 0.2s ease;
    transition-timing-function: ease, ease;
    box-shadow: 0 0 22px 5px #f5f9fc6b;
}

.circular-menu.active .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
    transform: translate3d(-1em, -4.2em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
    transform: translate3d(-4em, -2em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
    transform: translate3d(-4em, 1.5em, 0);
}

.alone-video {
    width: 100%;
    height: 70vh;
}

.video-section {
    padding: 5em 0;
    padding-bottom: 6em;
    background: #0E1421;
    margin-top: -62px;
    transform: translateY(62px);
}

.alert-success {
    background-color: #209956;
    font-size: 17px;
}

.alert {
    padding: 0.8rem 1rem;
}

.contact-section button.accordion-button {
    color: var(--White, #FAFAFA);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    border-radius: 33px;
    background: transparent;
    padding: 1.5rem 1.7rem;
}

.contact-section button.accordion-button span {
    font-size: 18px;
}

.contact-section .accordion-item {
    border-radius: 33px;
    background: rgba(29, 45, 67, 0.29);
    backdrop-filter: blur(15.199999809265137px);
    margin-bottom: 30px;
}

.contact-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}</pre></body></html>