@import url(../vendor/bootstrap/bootstrap.min.css);
@import url(animate.css);
@import url(../vendor/fontAwesome/all.css);
@import url(../vendor/fancyBox/jquery.fancybox.css);
@import url(../vendor/swiper/swiper-bundle.min.css);
@import url(../vendor/slick/slick.css);
@import url(../vendor/slick/slick-theme.css);
@import url(../vendor/odometer/odometer.css);
@import url(../vendor/niceSelect/nice-select.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* End Fonts */

:root {
    --main-color: #273B92;
    --sec-color: #051248;
    --dark-color: #000;
    --dark-gray: #393939;
    --bg-color: #F9F9F9;
    --thr-color: #5F72C9;
}

z {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    /* color: #fff; */
    text-align: start;
}

section,
footer {
    overflow: hidden;
    position: relative;
}

p {
    margin: 0;
    color: var(--dark-color);
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}


/* Start Loading */

.loader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999999999999999999999999999999;
    background: #fff;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.loader .loader-inner img {
    max-width: 250px;
}


/* End Loading */


/* Start Not-found */

.not-found .not-found-pro {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.not-found .not-found-pro img {
    max-height: 400px;
}

.not-found .not-found-pro h2 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.not-found .not-found-pro h4 {
    margin: 15px 0;
    font-size: 20px;
    color: #777;
}

.not-found .not-found-pro p {
    margin: 25px 0 15px;
    font-size: 14px;
    color: #777;
    /* font-weight: bold; */
    position: relative;
}

.not-found .not-found-pro .btn.go-home {
    padding: 0;
    line-height: normal;
    min-height: auto;
    background: transparent;
    color: var(--sec-color);
    font-size: 20px;
    text-decoration: underline;
    margin: 0 auto;
}

.not-found .not-found-pro p::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    border-bottom: 1px #f1f1f1 solid;
    margin: auto;
    width: 100%;
    bottom: 0;
    height: 1px;
    z-index: -2;
}

.not-found .not-found-pro p::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    border: 1px #f1f1f1 solid;
}

.not-found.not-found-404 .not-found-pro h2 {
    margin: 20px 0;
}


/* End Not-found */


/* Start Select Nice */

select {
    display: none;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    /* float: right; */
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    line-height: 50px;
    outline: none;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #E2DDDD;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #707070;
    padding: 0 20px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    content: "\f107";
    display: block;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 21px;
    top: 0;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    transition: all 0.15s ease-in-out;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    border: none !important;
    transform: none !important;
    font-size: 18px;
    color: #333;
    /* opacity: .35; */
    /* right: auto; */
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white-color);
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 0 10px;
    text-align: start;
    transition: all 0.2s;
    color: #212121;
    background: var(--bg-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--sec-color);
    color: #fff;
}


/* End Select Nice */



/*** 

====================================================================
	Start Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
    background: var(--dark-color);
    transform: translateX(100%);
    transition: all 200ms ease;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    /* text-align: left; */
    display: none;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    max-height: 55px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    visibility: visible;
    transform: none;
    /* transition-delay: 300ms; */
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--main-color);
    opacity: 0;
    transform: translateX(100%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: relative;
    right: -200%;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
    z-index: 5;
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    right: 0px;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.mobile-menu .close-btn {
    position: relative;
    left: 0;
    top: 0;
    line-height: normal;
    width: auto;
    text-align: left;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    /* opacity: 0; */
    margin: 14px 0;
    width: 40px;
    height: 40px;
    /* transition: all .5s; */
    line-height: 40px;
    border: 1px #fff solid;
    text-align: center;
    border-radius: 50%;
    transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -webkit-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    justify-content: center;
}

.mobile-menu-visible .mobile-menu .close-btn {
    /* opacity: 1; */
    /* display: block; */
    /* -webkit-transition-delay: 300ms; */
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    /* max-height: calc(100vh - 100px); */
    /* overflow: hidden; */
    /* overflow-y: scroll; */
    display: block;
    padding-inline-end: 0;
    height: 100%;
}

.mobile-menu .navigation li {
    /* position: relative; */
    display: block;
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: none;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: normal;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    padding-inline-end: 30px;
    margin: 30px 0;
    font-weight: normal;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: var(--sec-color);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: block;
    background: transparent;
    /* height: 0; */
    transition: none;
    overflow: hidden;
    position: absolute;
    /* right: 100%; */
    top: 0;
    padding-inline-start: 13px;
    /* transition: none; */
    position: relative;
}

.sticky-header .navbar-header {
    display: none;
}

.sticky-header .outer-box .nav-btn {
    position: relative;
    top: 4px;
    float: right;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    margin-top: 0px;
    margin-left: 30px;
}

.sticky-header .outer-box .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    margin-left: 30px;
}

.sticky-header .outer-box .search-box-btn {
    color: #000000;
}

.sticky-header .outer-box {
    padding: 22px 0px;
}

.mobile-menu .menu-box .nav-title {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--main-color);
    justify-content: space-between;
}

.mobile-menu .menu-box .nav-title h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.mobile-menu .navigation li.menu-item-has-children>a::after {
    content: "\f178";
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    font-family: 'Font Awesome 6 Pro';
    font-weight: lighter;
    transition: all .5s;
    /* margin-inline-end: -40px; */
}

.mobile-menu .navigation li.open .sub-menu {
    height: auto;
    padding: 0 20px;
}

.mobile-menu .navigation li.menu-item-has-children.open::after {
    transform: rotate(180deg);
}

.pages-bady {
    /* transition: all .5s; */
    overflow: hidden;
}

body.mobile-menu-visible .pages-bady {
    transform: translateX(-100%);
}

.mobile-menu::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 95%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.menu-outer {
    padding: 0;
}

div#navbarSupportedContent {
    height: 100%;
}

.mobile-menu .menu-box::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu .menu-box::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 15%);
}

.mobile-menu .menu-box::-webkit-scrollbar-thumb {
    background: #ffffff5e;
    outline: none;
}

/*** 

====================================================================
	End Sidebar style
====================================================================

***/

/* Start Header */

.head-inner {
    display: flex;
    /* justify-content: space-between; */
    align-items: end;
    -webkit-align-items: end;
}

header {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 30px 0;
}

.mobile-nav-toggler {
    width: 35px;
    height: 35px;
    background: var(--main-color);
    text-align: center;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.item.res-menu {
    display: none;
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li a {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 13px;
    /* text-align: left; */
}

.nav-menu ul li.current-menu-item a,
.nav-menu ul li a:hover,
.menu-right .lang:hover {
    color: #6E88FD !important;
}

.btn.btn-border.btn-white {
    border: 1px solid #FFFFFF;
    color: #fff;
    border-radius: 0;
    box-shadow: none !important;
    outline: none !important;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    background: transparent;
    min-width: auto;
    min-height: auto;
}

.menu-right .lang {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin-inline-start: 20px;
    color: #fff;
    font-family: 'cairo';
}

.btn.btn-border.btn-white:hover,
.btn.btn-border.btn-white:focus {
    border-color: var(--main-color);
    color: #fff;
    background: var(--main-color);
}

/* End Header */

/* Start Banner-h */

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.banner-h, .banner-h .home-slider .row {
    /* min-height: 768px; */
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    max-height: 40%;
    opacity: 0;
}

.banner-h .overlay-img::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, #051248ba  0%, rgba(39, 59, 146, 0) 100%);
    /* opacity: 0.6; */
}

/* End Banner-h */

/* Start About-h */

.about-h,
.what-h {
    padding: 66px 0 0;
}

.title-big {
    margin: 0 0 81px;
    position: relative;
    z-index: 2;
}

.title-big h1 {
    color: #000000;
    font-size: 55px;
    font-weight: 700;
    line-height: 103px;
    text-transform: uppercase;
}

.title-big h1 span {
    display: table;
    position: relative;
    padding: 0;
    font-size: 55px;
    line-height: 123px;
    letter-spacing: 0.07em;
    margin-top: -20px;
    color: #fff;
}

.title-big h1 span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    z-index: -1;
    max-height: 60%;
    margin: auto;
}

.title-big::after,
.footer-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/title.png);
    z-index: -2;
    left: -10%;
    max-width: 610px;
    height: 370px;
    top: -66px;
    opacity: 1;
    background-size: contain;
    background-position: center;
    /* right: 0; */
    /* margin: auto; */
    background-repeat: no-repeat;
}

.title-big::before,
.footer-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    z-index: -1;
    left: -10%;
    max-width: 620px;
    height: 324px;
    top: -66px;
    /* right: 0; */
    /* margin: auto; */
    opacity: 0;
}

.title {
    margin: 0 0 66px;
    position: relative;
    z-index: 2;
}

.title::before {
    content: "";
    position: absolute;
    height: 3px;
    inset: 0;
    margin: auto;
    background: #F0F2F3;
    z-index: -1;
}

.title h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    background: #fff;
    display: table;
    padding: 8px 20px;
    text-transform: uppercase;
    padding-inline-end: 8px;
}

.title h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6.93px;
    background: var(--main-color);
}

.about-h .title::before {
    display: none;
}

.about-h .title {
    animation-duration: 2s;
    margin-top: -6px;
}

.about-text p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 28px;
    max-width: 805.18px;
    animation-duration: 2s;
}

.btn {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 0;
    padding: 10px 24px;
    min-width: 222.87px;
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    min-height: 58.37px;
}

.btn .icon {
    height: 36.51px;
    margin-inline-end: 25px;
    width: 22.44px;
    transition: all .4s ease-in-out;
}

.btn .icon img {
    max-height: 36.51px;
}

.btn:hover {
    color: #fff;
}

.btn:hover .icon {
    transform: scaleX(-1) rotate(-30deg);
}

.about-text .btn {
    margin: 5px 0 0;
}

/* End About-h */

/* Start What-h */

.what-h {
    padding: 100px 0 120px;
}

.slick-slider .slick-arrow {
    position: absolute;
    right: 0;
    background: #EFEFEF;
    width: 52.45px;
    display: flex;
    transform: none;
    top: auto;
    bottom: -120px;
    width: 94.61px;
    height: 67.13px;
    line-height: 67.13px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    opacity: 1 !important;
    z-index: 2;
}

.slick-slider .slick-arrow::before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f104";
    color: var(--main-color);
    left: 0;
    font-size: 23px;
    z-index: 2;
    display: inline-block;
    top: 1px;
    position: relative;
    margin-right: -10px;
}

.slick-slider .slick-arrow::after {
    content: "";
    width: 50.45px;
    height: 2px;
    background: var(--main-color);
    display: inline-block;
    z-index: -1;
    position: relative;
    right: -2px;
    top: 0;
}

.slick-slider .slick-prev.slick-arrow {
    right: 0;
    left: auto;
    transform: scaleX(-1);
}

.slick-slider .slick-next.slick-arrow {
    right: 109.61px;
    /* transform: scaleX(-1); */
}

.event-block {
    box-shadow: 0px 0px 34.26px 0px #273B9226;
    position: relative;
    background: #fff;
    padding: 12px 12px 27px;
    height: 100%;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.event-block .details,
.event-block .img {
    /* max-width: 50%; */
    /* flex: 0 0 50%; */
    /* padding: 0 15px; */
}

.event-block .details {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 265.51px);
    justify-content: space-between;
}

.event-block .events-title {
    margin: 0px 0 18px;
}

.event-block .events-title h3 {
    color: #000;
    margin: 0 0 20px;
    padding: 0 0 25px;
    position: relative;
    font-size: 29.2px;
    font-weight: 700;
    line-height: 39.56px;
    transition: all .4s;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    line-clamp: 2;
    /* -webkit-box-orient: vertical; */
}

.event-block .events-title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 45.86px;
    height: 6.93px;
    background: #AAB4E3;
}

.event-block .events-title h3 span {
    display: block;
    /* margin: 0 0 12px; */
}

.event-block .details p {
    color: #000000;
    font-size: 16.96px;
    font-weight: 400;
    line-height: 26.42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event-block .details .btn {
    margin: 50px 0 0;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.event-block .img {
    height: 265.51px;
    position: relative;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.event-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* filter: grayscale(1); */
}

.event-block .img::after, .project-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.8;
    mix-blend-mode: color-burn;
    max-width: calc(100% - 30px);
    margin: auto;
    opacity: 0;
}

.slick-slide .event-block {
    /* opacity: 0.3; */
    /* transform: translateX(-40%) scale(.92); */
    /* transition: all .4s; */
}

.slick-center .event-block {
    opacity: 1;
    transform: none !important;
}

/* End What-h */

/* Start Projects-h */

.projects-h {
    padding: 90px 0 72px;
    display: none;
}

.projects-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.9;
}

.projects-h .title.title-with-line::before {
    background: #697FDF;
    left: auto;
    width: 82%;
}

.title.title-with-line h3 {
    background: transparent;
}

.project-title {
    margin: 0 0 35px;
    padding: 0;
    /* overflow: hidden; */
}

.project-title h3 {
    opacity: 0;
    color: #fff;
    font-size: 31px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0.02em;
    margin: 0;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    transform: translateX(-100px);
}

.project-title h3 span {
    display: block;
    margin: 13px 0 0;
    line-height: 24px;
    text-transform: uppercase;
}

.project-block {
    max-width: 800px;
}

.project-block .project-inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: center;
    -webkit-align-items: center;
}

.project-block .img,
.project-block .details {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.project-block .img {
    height: 367.21px;
    overflow: hidden;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    visibility: hidden;
    position: relative;
}

.project-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transition: 2s ease-out;
}

.project-block .details p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    /* transform: translateX(-100px); */
    /* opacity: 0; */
    transition: 1s ease-out;
    transition-delay: 0.2s;
    text-align: justify;
}

.project-block .details .btn {
    background: var(--thr-color);
    margin: 30px 0 0;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    overflow: hidden;
    /* clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); */
}

.slick-slide .project-block {
    display: flex;
    flex-direction: column-reverse;
    transition: all .4s ease-in-out;
    transform: translateX(-50%);
}

.slick-slide .project-block .img {
    margin-top: -21px;
    margin-bottom: 21px;
    transition: all .4s ease-in-out;
}

.slick-center .project-block {
    flex-direction: column;
    transform: none !important;
    opacity: 1;
}

.slick-center .project-block .img {
    margin: 0;
}

/* End Projects-h */

/* Start Clients-h */

.clients-h {
    padding: 100px 0 85px !important;
}

.client-block {
    max-width: 176.4px;
    height: 115px;
    line-height: 115px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1s ease-out;
    transition-delay: 0.2s;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    visibility: hidden;
    border: 1px transparent solid;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.clients-slider::before,
.partners-slider::before {
    content: "";
    position: absolute;
    right: -44%;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) -3.45%, #FFFFFF 81.23%);
    /* opacity: 0; */
    display: none;
}

/* End Clients-h */

/* Start Partners-h */

.partners-h .title-big h1 span {
    font-size: 69.97px;
    line-height: 102.63px;
    letter-spacing: 0;
    padding: 0;
}

.partners-h .title-big h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 115px;
    letter-spacing: 0.18em;
}

.partners-slider {
    direction: rtl;
    mask-image: linear-gradient(to left, black, white, transparent);
    -webkit-mask-image: linear-gradient(to left, black, white, transparent);
    z-index: 2;
}

.partners-slider::before {
    right: auto;
    left: -44%;
    transform: scaleX(-1);
    display: none;
}

.partners-h {
    padding: 0;
    display: none;
}

/* End Partners-h */

/* Start Footer */

.logo-f {
    position: relative;
    margin: 0 0 28px;
    text-align: center;
}

.footer-top {
    padding: 150px 0 50px;
}

.footer-top::after {
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    margin-top: -2%;
    max-width: 100%;
}

.footer-top::before {
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    max-width: 100%;
    height: 100%;
}

footer {
    /* overflow: visible; */
}

.logo-f a {
    display: block;
}

.logo-f a img {
    max-width: 375.91px;
}

.text-footer {
    text-align: center;
    margin: 0 0 38px;
}

.text-footer p {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0.18em;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}

.text-footer p span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    background: var(--main-color);
    letter-spacing: 0;
}

.link-f {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.link-f li a {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 15px;
    text-transform: uppercase;
}

.link-f .current-menu-item a,
.link-f li a:hover {
    color: var(--main-color);
}

.footer-bottom {
    border-top: 1px solid #A5A5A5B2;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

.ryad-logo {
    display: inline-block;
    float: right;
    overflow: hidden;
    height: 80px;
}

.copy-right p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.logo img {
    max-width: 177.6px;
}


/* End Footer */

/* Start Animation */

.about-text {
    overflow: hidden;
    padding-inline-start: 55px;
    position: relative;
    z-index: 3;
}

.event-block .img, .project-block .img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
    transform: skewY(0);
}

.event-block .events-title,
.event-block p {
    transition: 1s ease-out;
    transition-delay: 0.2s;
    transform: translateX(-100px);
    opacity: 0;
}

.event-block .events-title, .event-block p {
    opacity: 1;
    transform: none;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
    /* visibility: visible; */
    /* transform: skewY(0); */
}

.animH .event-block .btn,
.animH .project-block .details .btn {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
    transform: skewY(0);
}

.animH .project-block .img img {
    transform: scale(1);
    transition: 4s ease-out;
}

.project-block .details {
    overflow: hidden;
}

.animH .project-block .details p {
    opacity: 1;
    transform: none;
}

.animH .project-title h3 {
    transform: none;
    opacity: 1;
}

.client-block {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
    transform: skewY(0);
}

/* End Animation */

/* Start About-page */

.about-page {
    padding: 100px 0 0;
    overflow: visible;
}

.about-h::after,
.what-h::after,
.page-inner::after {
    content: "";
    position: absolute;
    right: 0;
    background: url(../images/after-about.svg);
    width: 133.78px;
    height: 100%;
    top: 0;
    background-repeat: repeat-y;
    background-size: 50%;
    background-position: center right;
}

.page-inner {
    position: relative;
}

.about-page.about-h::after {
    display: none;
}

/* End About-page */

/* Start Services-page */

.nav-services-h {
    padding: 311px 0;
    min-height: 1071px;
}

.nav-services-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 18, 72, 0.7) 0%, rgba(39, 59, 146, 0) 100%);
}

.nav-services-h .nav.nav-tabs {
    border: none;
    display: block;
    padding-inline-start: 14px;
}

.nav-services-h .nav.nav-tabs .nav-link {
    display: inline-flex;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    margin: 7px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 37px;
    position: relative;
    transition: all .5s;
    opacity: 0.7;
    /* align-items: center; */
}

.nav-services-h .nav.nav-tabs .nav-link span {
    display: inline-block;
    transition: all .3s;
    /* max-width: calc(100% - 23px); */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* width: 100%; */
    text-transform: uppercase;
}

.nav-services-h .nav.nav-tabs .nav-link span::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto 0;
    max-height: 30px;
    background: var(--main-color);
    z-index: -1;
    /* top: 0; */
}

.nav-services-h .nav.nav-tabs .nav-link .num {
    font-style: normal;
    transition: all .5s;
}

.nav-services-h .nav.nav-tabs .nav-link.active span {
    position: relative;
    margin-inline-start: 14px;
}

.nav-services-h .nav.nav-tabs .nav-link.active {
    opacity: 1;
    transform: scale(1.1);
    /* font-family: Montserrat; */
    font-size: 54px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: left;
}

.nav-services-h .nav.nav-tabs .nav-link.active .num {
    color: var(--main-color);
}

.services-page {
    padding: 96px 0 0;
    overflow: visible;
}

.img-serv {
    position: relative;
    height: 449.09px;
    z-index: 3;
    /* height: 100%; */
}

.img-serv::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: var(--main-color); */
    /* opacity: 0.8; */
    /* mix-blend-mode: color-burn; */
}

.services-page .row {
    align-items: center;
    -webkit-align-items: center;
}

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

.nav-services-h .nav.nav-tabs .nav-link.active span::after {
    max-height: 57.54px;
    /* top: 6px; */
}

/* End Services-page */

/* Start Clients-page */

.breadcrumb-h {
    /* padding: 289px 0 100px; */
}

.breadcrumb-h .row {
    min-height: 325.34px;
    align-items: center;
    -webkit-align-items: center;
    padding: 161px 0 80px;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 18, 72, 0.7) 46.5%, rgba(39, 59, 146, 0) 100%);
}

.breadcrumb-h .title-big::after,
.breadcrumb-h .title-big::before {
    display: none;
}

.text-bread {}

.text-bread .title-big {
    /* display: table; */
    /* margin: 0 auto; */
    /* text-align: center; */
}

.body-inner {
    padding: 75px 0;
}

.title-center.title-big {
    display: table;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.title-center.title-big span {
    margin-right: auto;
    margin-left: auto;
}

.body-inner .client-block {
    border: 1.33px solid #CECECE;
    margin: 15px 0;
    width: 100%;
  max-width: 100%;
    height: 125.85px;
    line-height: 125.85px;
}

.body-inner .client-block img {
    max-width: 122.49px;
    max-height: 80.71px;
}

/* End Clients-page */

/* Start Contact-page */

.contact-page.body-inner, .clients-page.body-inner {
    /* padding: 225px 0 150px; */
}

.form-contact .form-group {
    margin: 0 0 26px;
}

.form-contact .form-group:last-child {
    margin: 0;
}

.form-contact .form-group label {
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

.form-contact .form-group .form-control {
    border: 1px solid #999999;
    box-shadow: none !important;
    border-radius: 0;
    background: transparent;
    height: 54.38px;
    padding: 0 29px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    line-height: 54.38px;
}

.form-contact .form-group .form-control::placeholder {
    opacity: 0.2;
    color: #000000;
    transition: all .5s;
}

.form-contact .form-group .form-control:focus::placeholder {
    transform: translateX(10px);
    opacity: 0;
}

.form-contact .form-group .form-control:focus {
    border-color: var(--main-color);
}

.form-contact .form-group textarea.form-control {
    height: 157.06px;
    padding-top: 12px;
}

.form-contact .form-group .btn {
    margin: 29px 0 0;
    justify-content: start;
    min-width: 161.53px;
}

.information-h {
    padding: 26px 0;
    display: none;
}

.map-con {
    height: 574.1px;
    position: relative;
}

.map-con::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.4;
    mix-blend-mode: color-burn;
    /* background-blend-mode: color-burn; */
}

.information-h .info-inner {
    padding-top: 40px;
    padding-inline-start: 20px;
}

.information-h .info-inner .item {
    margin: 0 0 26px;
}

.information-h .info-inner .item a {
    display: flex;
    color: #fff;
    align-items: center;
    -webkit-align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.information-h .info-inner .item i {
    font-size: 24.39px;
    width: 25px;
    margin-inline-end: 13px;
}

.information-h .info-inner .item span {
    max-width: calc(100% - 38px);
}

.information-h .info-inner .item u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.information-h .info-inner .item a:hover {
    color: var(--main-color);
}

.form-contact {
    max-width: 1044px;
}

form {
    direction: ltr;
}

.form-contact .form-group .form-control .current {
    opacity: .2;
}

.client-block img {
    max-height: 129px;
    object-fit: contain;
    max-width: 105px;
    margin: 0 auto;
    filter: brightness(0);
}

.client-block:hover {
    /* border-color: var(--sec-color); */
}

.pagination {
    justify-content: center;
    margin: 50px 0 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.pagination .paginated_link .page-numbers {
    width: 45.17px;
    display: inline-flex;
    height: 41.19px;
    line-height: 41.19px;
    justify-content: center;
    color: #100D0D;
    font-size: 16px;
    font-weight: 400;
    border: 0.43px solid #C0C0C0;
    margin: 0 5px;
}

.pagination .paginated_link.active .page-numbers {
    color: var(--main-color);
    border-color: var(--main-color);
}

.pagination .paginated_link .next.page-numbers {}

.partners-h .title-big h1 span::after {
    top: 0;
}

.btns-play {
    color: #fff;
    max-width: 1320px;
    position: absolute;
    z-index: 5;
    margin: 0 auto;
    bottom: 30px;
    left: 0;
    right: 0;
}

.btns-play button {
    color: #fff;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-inline-end: 20px;
    font-size: 20px;
}
/* End Contact-page */

@media(max-width: 1370px){
.slick-slide .event-block {
    /* transform: translateX(-33%) scale(.92); */
}

.slick-slide .project-block {
    transform: translateX(-30%);
}
}

.menu-outer .logo {
    margin: 20px 0;
}

.body-inner .title-big::before, .bod-inner .title-big::after {
    margin: auto;
}

.project-block .img::after {
    /* opacity: .8; */
    mix-blend-mode: color;
    /* background-blend-mode: color; */
    mix-blend-mode: hue;
}

.our-team-inner {
    margin: 0 0 70px;
}

.our-team-inner .team-block {
    margin: 15px 0;
    border: 1.22px solid #CBCBCB;
    padding: 15px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.our-team-inner .team-block .img-block {
    position: relative;
    width: 264.37px;
    height: 240px;
    /* overflow: hidden; */
}

.our-team-inner .team-block .img-block .img, .our-team-inner .team-block .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    background: #fff;
    overflow: hidden;
}

.our-team-inner .team-block .img-block  .s-h {
    position: absolute;
    right: 0;
    bottom: -13px;
    min-width: 92.67px;
    height: 49.71px;
    background: #fff;
    border-start-start-radius: 24.85px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 16px;
}

.our-team-inner .team-block .img-block .s-h a {
    font-size: 14.64px;
    color: #000000;
}

.our-team-inner .team-block .details {
    width: calc(100% - 264.37px);
    padding-inline-start: 23px;
}

.our-team-inner .team-block .details h3 {
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    margin: 0 0 13px;
}

.our-team-inner .team-block .details ul li a {color: #fff;display: flex;align-items: center;-webkit-align-items: center;margin: 10px 0;font-family: Montserrat;font-size: 16px;font-weight: 400;line-height: 26px;letter-spacing: 0em;color: #000000;}

.our-team-inner .team-block .details ul li a i {
    width: 20px;
    font-size: 18px;
}

.our-team-inner .team-block .details ul li a span {
    width: calc(100% - 20px);
    padding-inline-start: 12px;
}

.our-team-inner .team-block .details ul li a span u {
    text-decoration: none;
    direction: ltr;
    display: block;
}


.tab-pane .title-big::before {
    /* top: -181px; */
}

.about-page .title-big {
    margin: 40px 0 0;
}

.about-h.about-page .title-big h1 span {
    /* font-size: 58px; */
}

.services-page .tab-content .title-big {
    margin: 50px 0 0;
}

.banner-h .home-slider .row {
    align-items: center;
    -webkit-align-items: center;
    padding: 361px 0 236px;
}

.slider-block .text-slider {}

.slider-block .text-slider h1 {
    color: #fff;
    font-size: 82px;
    font-weight: 700;
    line-height: 85.68px;
    margin: 60px 0 63px;
    text-transform: uppercase;
}

.title-h {padding: 100px 0;}

.title-h .title-big {
    margin: 0;
}

.approch-h {
    background: var(--bg-color);
    padding: 100px 0;
}

.approch-block {
    margin: 0 0 30px;
}

.approch-block .icon {
    width: 82px;
    height: 93.54px;
    line-height: 93.54px;
    margin: 0 0 12px;
}

.approch-block  .details {
    max-width: 604.88px;
}

.approch-block .details h3 {
    color: #000;
    font-size: 31px;
    font-weight: 700;
    line-height: 42px;
    padding: 0 0 22px;
    margin: 0 0 22px;
    position: relative;
    transition: all .4s;
}

.approch-block .details h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6.93px;
    width: 45.86px;
    background: #C1C0BE;
    transition: all .4s;
}

.approch-block .details p {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.05px;
}

.approch-block:hover .details h3 {
    color: var(--main-color);
}

.approch-block:hover .details h3::after {
    background: var(--main-color);
}

.what-h::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    max-width: 72.7%;
    width: 100%;
    z-index: -1;
}

.what-h .title h3 {
    background: var(--main-color);
    color: #fff;
}

.what-h .title::before {
    background: #5469C7;
    max-width: 66.7%;
    right: auto;
    width: 100%;
}

.events-slider2 .item {
    padding: 0 15px;
    height: auto;
    opacity: 0;
}

.events-slider2 .slick-track {
    display: flex;
}

.title-h .title-big h1 span {
    /* font-size: 69.97px; */
    /* font-weight: 700; */
    /* line-height: 102.63px; */
    /* letter-spacing: 0; */
}

.title-h .title-big.title-center {
    margin: 0 auto;
}

.what-h2::after {
    left: auto;
}

.what-h2 .title h3 {
    background: #fff;
    color: #000000;
}

.what-h2 .title::before {
    /* max-width: 100%; */
}

.what-h .title h3::before {
    background: #697FDF;
}

.events-slider2 .slick-list {
    padding: 0 !important;
    margin-right: -15px;
    margin-left: -15px;
    overflow: visible;
}

.event-block:hover .events-title h3 {
    color: var(--main-color);
}

.banner-h .slick-slider .slick-arrow {
    width: auto;
    color: #fff;
    min-width: auto;
    width: 17px;
}

.banner-h .slick-slider .slick-arrow::before {
    color: #fff;
}

.banner-h .slick-slider .slick-arrow.slick-next::before {
    content: "\f105";
}

.banner-h .slick-slider .slick-arrow.slick-next {
    right: 35px;
    text-align: left;
}

.banner-h .slick-slider .slick-arrow.slick-prev {
    left: 35px;
    text-align: right;
}

.projects-h .title.title-with-line h3 {
    color: #fff;
}

.approch-h .title h3 {
    background: var(--bg-color);
}

.text-bread h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 41.81px;
    max-width: 735px;
    margin: 0;
    text-transform: uppercase;
}

.body-inner .project-block .project-inner .img {
    clip-path: initial;
    opacity: 1;
    visibility: visible;
}

.body-inner .project-block .project-inner .details .project-title h3 {
    color: #000;
    font-size: 24.16px;
    font-weight: 700;
    line-height: 32.73px;
    letter-spacing: 0.02em;
    opacity: 1;
    transform: none;
}

.body-inner .project-block .project-inner {
    align-items: inherit;
    -webkit-align-items: inherit;
}

.body-inner .project-block .project-inner .details .project-title {
    margin: 0 0 17px;
}

.body-inner .project-block .project-inner .details p {
    color: #000000;
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.body-inner .project-block .project-inner .details .btn {
    visibility: visible;
    transform: none;
    clip-path: inherit;
    background: var(--main-color);
}

.body-inner .project-block {
    margin: 0 0 30px;
}

.title-serv {
    margin: 0 0 88px;
}

.title-serv h1 {
    color: #fff;
    font-size: 59.87px;
    font-weight: 700;
    line-height: 155.6px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    -webkit-align-items: start;
}

.title-serv h1 span {
    display: inline-block;
    margin-top: -50px;
    font-size: 36.99px;
    font-weight: 700;
    line-height: 48.49px;
    letter-spacing: 0.07em;
    position: relative;
}

.tabs-serv .nav.nav-tabs {
    margin: 0 0 71px;
    justify-content: center;
    border: none;
    display: inline-flex;
    background: #fff;
    padding: 0 18px;
}

.tabs-serv {
    z-index: 2;
    position: relative;
    text-align: center;
}

.tabs-serv::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    left: 0;
    border-bottom: 3px solid #F0F2F3;
    z-index: -1;
}

.tabs-serv .nav.nav-tabs .nav-item .nav-link {
    background: #EEEEEE;
    border-radius: 0;
    padding: 14px 54px;
    margin: 0 10px;
    font-size: 19.04px;
    font-weight: 700;
    line-height: 29.74px;
    color: #000;
    text-transform: uppercase;
}

.tabs-serv .nav.nav-tabs .nav-item .nav-link.active {
    background: var(--main-color);
    color: #fff;
}

.tabs-serv .event-block .img {
    visibility: visible;
    opacity: 1;
    clip-path: inherit;
}

.tabs-serv .event-block .details .events-title, .tabs-serv .event-block .details p {
    opacity: 1;
    transform: none;
    text-align: start;
}

.tabs-serv .event-block {
    margin: 32px 0;
    height: calc(100% - 62px);
}

.body-inner + .title-h {
    padding-top: 0;
}

.banner-h .slick-dots {
    bottom: 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-h .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.banner-h .slick-dots li button {
    width: 14.45px;
    height: 14.45px;
    border: 1px #fff solid;
    border-radius: 50%;
    transition: all .3s;
    background: transparent;
}

.banner-h .slick-dots li button::before {
    display: none;
}

.banner-h .slick-dots li.slick-active button {
    background: #fff;
}

.slick-dotted.slick-slider {margin: 0 !important;}

.slider-block {
    position: relative;
    height: 100vh;
}

.what-h2 .slick-slider .slick-prev.slick-arrow {
    right: auto;
    left: 109.61px;
}

.what-h2 .slick-slider .slick-next.slick-arrow {
    right: auto;
    left: 0;
}

.projects-h .projects-slider .slick-list {
    overflow: visible;
}

.about-text ul {
    padding-inline-start: 20px;
}

.about-text ul li {
    list-style: inherit;
    display: list-item;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 10px;
    max-width: 805.18px;
    animation-duration: 2s;
}

.clients-h .title h3, .partners-h .title h3 {
    text-transform: uppercase;
}

.services-archive .row {
    align-items: inherit;
    -webkit-align-items: inherit;
}

.head-inner .head-inner-nav {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    padding-inline-start: 22px;
    width: calc(100% - 177.6px);
    justify-content: space-between;
    position: relative;
    top: 14px;
}

.banner-h .item {
    height: auto;
}

.banner-h .slick-track {
    display: flex;
}

.events-slider2 .item.slick-slide.slick-active {
    opacity: 1;
}

.title-big.title-center::after {
    right: 0;
    left: 0;
    margin: 0 auto;
}

.title-big.title-center h1 {
    font-size: 63.97px;
    font-weight: 700;
    line-height: 106.97px;
    letter-spacing: 0.18em;
}

.title-big.title-center h1 span {letter-spacing: 0;}

.title-h .title-big.letter-spacing h1 {/* font-size: 63.97px; *//* font-weight: 700; *//* line-height: 106.97px; *//* letter-spacing: 0.18em; */}

.title-h .title-big.letter-spacing h1 span {
    letter-spacing: 0;
}

.project-page .title::before {
    display: none;
}

.project-page .title {
    margin: 0 0 36px;
}

.clients-h .title {
    margin: 0 0 20px;
}

.partners-h .title {
    margin: 0 0 39px;
}

.clients-slider {
    mask-image: linear-gradient(to right, black, white, transparent);
    -webkit-mask-image: linear-gradient(to right, black, white, transparent);
}

.tab-pane .title::before {
    display: none;
}

.clients-page .col-md-2 {
    width: 12.5%;
}

.title-big.title-center.no-letter-spacing h1, .title-big.title-center.no-letter-spacing h1 span {
    letter-spacing: 0 !important;
}

.head-inner .head-inner-nav .nav-menu {
    margin: 0 auto;
}

.about-h .title-big h1 span {
    /* font-size: 63px; */
}

.title-2 .title-big h1 span {
    /* font-size: 41.97px; */
    /* font-weight: 700; */
    /* line-height: 93.63px; */
}

.title-2 .title-big h1 {}

.title-3 .title-big h1 span {/* font-size: 54.97px; *//* line-height: 87.63px; */}

.about-page .title-big h1 {
    /* font-size: 53px; */
    /* line-height: 90px; */
}

.tab-pane .title-big h1 span {
    font-size: 81px;
    line-height: 110px;
}

.clients-page .title-big h1 span {
    font-size: 70px;
    line-height: 99px;
}

.title-4 .title-big h1 span {
    /* font-size: 54.97px; */
    /* line-height: 87.63px; */
}

.services-page .tab-pane .row {
    align-items: inherit;
    -webkit-align-items: inherit;
}

.services-page .tab-pane .about-text {
    padding-top: 70px;
}

.contact-page .title {
    margin: 0 0 15px;
}

.title.title-contact {
    margin: 0 0 52px;
}

.approch-page + .title-h .title-big h1 span {
    /* font-size: 41.97px; */
    /* line-height: 74.63px; */
}

.project-page .title-big h1 span {
    font-size: 75px;
    line-height: 102px;
}

.title-serv h1 span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #273B92;
    z-index: -1;
    height: 64%;
    margin: auto;
}

.title-serv.soft h1 {
    letter-spacing: 0.3em;
}

.text-about-inner-h {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    -webkit-align-items: start;
}

.about-page .text-about-inner-h {
    position: relative;
}

.about-page .text-about-inner-h::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/title.png);
    max-width: 817.18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150%;
    top: -20%;
}

.breadcrumb-h .overlay-img img {
    object-position: center 60%;
}

.project-page .row {
    align-items: inherit;
    -webkit-align-items: inherit;
}

.contact-page.inquire-page .title {
    margin: 0 0 52px;
}

.projects-h .title h3::before {
    background: #697FDF;
}

.nice-select .list {
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
}

.breadcrumb-h.breadcrumb-project .overlay-img img {
    object-position: center 78%;
}

.services-page .row {
    justify-content: center;
}


.nav-menu ul li .sub-menu {
    position: absolute;
    display: block;
    min-width: 220px;
    top: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0);
    transition: .3s ease-out;
    /* transition-delay: 0.2s; */
    overflow: hidden;
    padding: 17px 18px;
    background: #FFFFFF;
    border-radius: 0;
    border: none;
}

.nav-menu ul li:hover .sub-menu {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.item.res-menu {
    display: none;
}

.nav-menu ul li .sub-menu li a {
    margin: 0;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--dark-color) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.96px;
}

.nav-menu ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.nav-menu ul li .sub-menu li a::before {
    display: none;
    content: "\f355";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    position: absolute;
    top: 0;
    font-size: 13.64px;
    top: 47%;
    transform: translateY(-50%) translateX(15px);
    transition: all .3s;
    overflow: hidden;
    right: 0;
    opacity: 0;
}

.nav-menu ul li .sub-menu li a:hover {
    /* padding-inline-start: 14px; */
    color: var(--main-color) !important;
}

.nav-menu ul li .sub-menu li a:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.nav-menu ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 10px;
}

.what-h + .title-3 .title-big h1 span::after {
    /*max-height: 83%;*/
}

@media (max-width: 1400px){
    .nav-menu ul li a {
    margin: 0 10px;
    font-size: 15px;
}
}

@media (max-width: 1200px){
    .what-h::after {
    max-width: 70%;
}
}

