@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Fredoka:wght@300..700&display=swap?family=El+Messiri:wght@400..700&display=swap');

/* End Fonts */

:root {
    --main-color: #CF2132;
    --sec-color: #94969a;
    --dark-color: #0E0E0E;
    --color-gray: #E6E6E6;
    --bg-grad: linear-gradient(180deg, #181717 11.24%, rgba(81, 81, 81, 0.49) 312.5%);
    --bg-dark: #0C0C0C;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    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: "Fredoka", sans-serif;
    background: var(--dark-color);
    text-align: start;
    /* height: auto !important; */
}

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

p {
    margin: 0;
    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;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

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

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 19.850613vh 13.65625vw;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 0 0 5.351170568561873vh;
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    color: #848282;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/* Start Header */

.header-med .head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

header.sticky {
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 24px 0;
    background: #0000001A;
    overflow: hidden;
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid #FFFFFF;
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    color: var(--main-color);
    text-decoration: underline;
    font-family: El Messiri;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.01px;
}

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

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

.navbar-collapse {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.navbar-collapse .navigation {
    width: 50%;
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    color: #fff;
    text-decoration: underline;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
}

/* End Header */

/* Start Banner-h */

.banner-h .row {
    height: 100vh;
    align-items: center;
    -webkit-align-items: center;
    padding-top: 120px;
}

.home-slider {
    position: absolute;
    right: -4%;
    bottom: 0;
    margin: auto 0;
    /* overflow: hidden; */
    direction: ltr;
    height: 459.61px;
    top: 0;
    width: 43%;
}

.home-slider .item {
    transform: scale(.3) translateX(-250%);
    opacity: .20;
    transition: all .5s;
    backface-visibility: visible;
}

.home-slider .item.slick-slide.slick-current.slick-active.slick-center+.item.slick-slide.slick-active {
    transform: scale(.7) translateX(261%);
    opacity: 1;
    transform: scale(1) translateX(120%);
}

.home-slider .slick-list {
    /* overflow: visible; */
}

.home-slider .item.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(.6) translateX(170%);
    opacity: 0.3;
}

.nav-slider .home-nav,
.history-nav-slider .history-nav {
    position: absolute;
    right: 0;
    top: auto;
    width: 54.67px;
    height: 55.71px;
    border: 0.51px solid #4F4F4F;
    /* opacity: 0.3; */
    transition: all .4s;
    border-radius: 50%;
    left: auto;
    color: var(--main-color);
    font-size: 21.49px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

/* .nav-slider .slick-prev::before,
.nav-slider .slick-next::before {
    font-family: 'Font Awesome 6 Pro';
    color: var(--main-color);
    font-size: 25.68px;
    font-weight: bold;
} */

.nav-slider .swiper-button-prev.home-nav,
.nav-slider .swiper-button-prev.history-nav {
    left: 0;
}

.nav-slider .home-nav:hover,
.nav-slider .history-nav:hover {
    background: var(--bg-dark);
    opacity: 1;
}

.home-slider .item.swiper-slide-active {
    opacity: 1;
    transform: none;
}

.home-slider .item.swiper-slide-next {
    transform: scale(.6) translateX(-33%);
    opacity: 0.3;
}

.home-slider .item.swiper-slide-next+.swiper-slide.item {
    visibility: visible;
}

.nav-slider {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 126px;
    max-width: 127.67px;
    margin: 0 auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.nav-slider .home-nav i و .nav-slider .history-nav i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-slider .home-nav.swiper-button-disabled و .nav-slider .history-nav.swiper-button-disabled {
    opacity: 0.3;
}

.text-banner h1,
.text-banner h2 {
    color: #fff;
    font-size: 78px;
    font-weight: 500;
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.text-banner h1 span,
.text-banner h2 span {
    color: var(--main-color);
}

.text-banner h2:nth-child(2),
.text-banner h1:nth-child(2) {
    padding-inline-start: 140px;
}

.text-banner h2 {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.breakingNews>ul {
    padding: 0;
    height: 54px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.breakingNews>ul>li>a {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: Fredoka;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 31px;
    background: linear-gradient(128.91deg, #FFFFFF 3.65%, rgba(255, 255, 255, 0.18) 71.73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.breakingNews>ul>li {
    height: 54px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.breakingNews {
    height: 54px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.img-banner {
    height: 459.61px;
    overflow: hidden;
    border-radius: 53.4px;
}

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

/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 50px 0 115px;
}

.img-about {
    border-radius: 48px;
    height: 382px;
    overflow: hidden;
    margin-bottom: 26px;
}

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

.text-about h3 {
    color: var(--main-color);
    font-size: 32px;
    font-weight: 500;
    line-height: 42.1px;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-h .col-md-6:nth-child(1) .text-about h3 {}

.text-about p {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.text-about+.text-about {
    margin-top: 46px;
}

.about-h .row {}

.readMore {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #fff;
    padding-top: 62px;
    height: 278px;
}

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

.readMore span {
    color: var(--color-gray);
    font-size: 32px;
    font-weight: 500;
    line-height: 27.05px;
    text-decoration: underline;
    text-transform: uppercase;
    text-align: end;
    min-height: 73px;
    transition: all .4s;
}

.readMore .icon {
    width: 101.45px;
    height: 103.37px;
    border: 1.13px solid #FFFFFF;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: all .5s;
    font-size: 47.64px;
    color: var(--main-color);
}

.readMore .icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.readMore:hover .icon,
.serv-block:hover .btn-more i {
    background: var(--main-color);
    border-color: var(--main-color);
    stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    transform: scale(2) translate(24px, -29px);
}

.readMore:hover span {
    opacity: 0;
}

/* End About-h */

/* Start What-h */

.what-h {
    padding: 155px 0 145px;
}

.what-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-grad);
}

.title {
    margin-bottom: 89px;
}

.title h3 {
    color: #fff;
    font-size: 78px;
    font-weight: 500;
    line-height: 96px;
    margin: 0;
    text-transform: uppercase;
}

.title h3 .colorH {
    color: var(--main-color);
}

.all-what .col-h {
    width: 20%;
    flex: 0 0 auto;
    padding: 0 4.5px;
}

.what-block {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.8) 0%, rgba(12, 12, 12, 0.8) 72.61%);
    border-radius: 24px;
    overflow: hidden;
    padding: 62px 34px 71px;
    padding-inline-end: 14px;
    transition: all .5s;
}

.what-block .num {
    color: var(--main-color);
    font-size: 78px;
    font-weight: 500;
    line-height: 96px;
    opacity: 0.2;
    margin-bottom: 50px;
    transition: all .5s ease-in-out;
}

.what-block .details p {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #B6B6B6;
    transition: all .5s ease-in-out;
}

.all-what.row {
    margin-right: -4.5px;
    margin-left: -4.5px;
}

.all-what .col-h:nth-child(even) {
    padding-top: 64px;
}

.what-block:hover .num {
    padding-inline-start: 70px;
    opacity: 1;
    -webkit-text-stroke-color: var(--main-color);
    -webkit-text-stroke-width: 2px;
    color: transparent;
    transition: all .5s ease-in-out;
}

.what-block:hover .details p {
    color: #fff;
    transition: all .5s ease-in-out;
}

.what-block:hover {
    background: linear-gradient(180deg, #151515 0%, #0C0C0C 72.61%);
}

/* End What-h */

/* Start Services-h */

.services-h {
    padding: 152px 0;
}

.serv-block {
    margin: 10px 0;
    height: calc(100% - 20px);
    padding: 50px 36px 39px;
    position: relative;
    border: 1px #343131 solid;
    border-radius: 28.04px;
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    transition: all .5s ease-in-out;
}

.title.title-center {
    text-align: center;
}

.serv-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #343131 0%, #1E1E1E 51.34%, #343131 100%);
    border-radius: 28.04px;
    z-index: -1;
    opacity: 0;
}

.serv-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 19, 19, 0.6) 0%, rgba(13, 12, 12, 0.6) 100%);
    z-index: -1;
    transition: all .5s ease-in-out;
}

.serv-block .details {
    width: calc(100% - 157px);
}

.serv-block .details h3 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    color: #fff;
}

.serv-block .details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    color: #E6E6E6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-more i {
    width: 101.45px;
    height: 103.37px;
    border: 1.13px solid #FFFFFF;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: all .5s;
    font-size: 47.64px;
    color: var(--main-color);
    justify-content: center;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.serv-block:hover .btn-more i {
    transform: scale(1.4) translate(-16px, 1px);
}

.serv-block:hover {
    border-color: #FFFFFF;
}

.serv-block:hover::before {
    background: linear-gradient(180deg, #151515 0%, #0C0C0C 72.61%);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    outline: non;
}

body {
    overscroll-behavior: none;
}

.img-h {
    position: relative;
}

.img-h img {
    opacity: 0;
}

.img-h::after {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--height);
    bottom: 0;
    left: 0;
    background: #000000;
}

/* End Services-h */


/* Start Partners-h */

.partners-h {
    padding: 133px 0 162px;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 65px;
}

.title-flex .title {
    margin: 0;
}

.showMore {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 86px;
}

.showMore span {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    line-height: 27.05px;
    color: #E6E6E6;
    text-decoration: underline;
}

.showMore .icon {
    width: 71.17px;
    height: 72.52px;
    line-height: 72.52px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 0.79px solid #FFFFFF;
    transition: all .4s;
}

.showMore:hover .icon {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: rotate(45deg);
}

.showMore:hover .icon svg path {
    stroke: #fff;
}

.showMore .icon svg path {
    transition: all .4s;
}

.all-partners .item.slick-slide {
    padding: 8px;
}

.part-block {
    background: #fff;
    height: 113px;
    width: 262px;
    line-height: 113px;
    text-align: center;
}

.part-block img {
    display: inline-block;
    max-height: 57.75px;
    max-width: 213.53px;
    object-fit: contain;
    object-position: center;
    opacity: 1;
}

.slick.marquee {
    direction: ltr;
}

.slick.marquee .item.slick-slide {
    float: left !important;
}

/* End Partners-h */

/* Start News-h */

.news-h {
    padding: 178px 0 213px;
}

.news-slider .item {
    padding: 0 16px;
}

.all-news .slick-list {
    margin-right: -16px;
    margin-left: -16px;
}

.block-news .img-block {
    width: 100%;
    height: 100%;
    /* border-radius: 40.39px; */
    /* overflow: hidden; */
    mix-blend-mode: luminosity;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(45, 45, 45, 0.85) 76.86%);
}

.block-news .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: luminosity;
    filter: grayscale(1);
}

.block-news::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(45, 45, 45, 0.85) 76.86%);
    z-index: 1;
    transition: all .4s;
}

.block-news {
    height: 403.89px;
    border-radius: 40.39px;
    overflow: hidden;
}

.block-news .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 61px 33px 24px;
    padding-inline-end: 26px;
    z-index: 2;
}

.block-news .details h3 {
    color: #fff;
    font-size: 28.27px;
    font-weight: 500;
    line-height: 38.37px;
    margin-bottom: 22px;
}

.read-more {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 30px;
    font-family: El Messiri;
    font-size: 24px;
    font-weight: 700;
    line-height: 34.02px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: -50px;
    transition: all .4s;
    opacity: 0;
}

.block-news::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(39, 6, 6, 0.85) 71.1%);
    background-blend-mode: luminosity;
    opacity: 0;
    transition: all .4s;
}

.read-more .icon {
    width: 42.23px;
    height: 43.03px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 0.47px solid #FFFFFF;
    transition: all .4s;
    stroke-width: 1px;
    -webkit-text-stroke-color: var(--main-color);
    -webkit-text-stroke-width: 0.47px;
    font-size: 18.15px;
    transform: rotate(-45deg);
    transition-delay: 0.1s;
}

.read-more .icon i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.block-news:hover::before {
    opacity: 0;
}

.block-news:hover::after {
    opacity: 1;
}

.block-news:hover .details .read-more {
    opacity: 1;
    margin: 0;
}

.block-news:hover .details .read-more .icon {
    transform: none;
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* End News-h */

/* Start Counter-h */

footer .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #181717 11.24%, rgba(81, 81, 81, 0.49) 312.5%);
}

.counter-h {
    padding: 116px 0 85px;
}

.counter-h .col-md-3 {
    width: 20%;
}

.counter-block {
    text-align: center;
}

.counter-block h5 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 21px;
}

.counter-item {
    direction: ltr;
}

.counter-block .counter-item {
    font-size: 78px;
    font-weight: 500;
    line-height: 96px;
    /* background: linear-gradient(180deg, #CF2132 0%, rgba(2, 2, 2, 0) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.counter-block .counter-item span {
    background: linear-gradient(180deg, #CF2132 0%, rgba(2, 2, 2, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* End Counter-h */

/* Start Footer */

.footer-top .row {
    margin: 0;
    background: #0C0C0C4D;
    padding: 96px 75px 52px;
    border-radius: 32px;
}

.logo-f {
    display: block;
    max-width: 350.59px;
    margin: 0 auto;
}

.col-md-5 .foot-block {
    padding-inline-start: 152px;
}

.foot-block h3 {
    font-family: El Messiri;
    font-size: 28.27px;
    font-weight: 700;
    line-height: 40.39px;
    margin-bottom: 32px;
    color: var(--main-color);
}

.links-f ul {
    display: flex;
    flex-wrap: wrap;
}

.links-f ul li {
    width: 50%;
    flex: 0 0 auto;
}

.links-f ul li:nth-last-child(1),
.links-f ul li:nth-last-child(2) {
    width: 100%;
}

.links-f ul li a {
    margin-bottom: 16px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    color: #fff;
}

.info-f ul li a {
    display: flex;
    gap: 9px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 19px;
}

.info-f ul li i {
    width: 23.93px;
    font-size: 17px;
    padding-top: 8px;
}

.info-f ul li u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.info-f ul li span {
    width: calc(100% - 32.93px);
}

.links-f ul li a:hover,
.info-f ul li a:hover {
    color: var(--main-color);
}

.footer-bottom {
    padding: 33px 0;
}

.copy-right {
    text-align: center;
}

.copy-right p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    text-transform: capitalize;
}

.copy-right p span {
    text-transform: uppercase;
    color: var(--main-color);
}

/* End Footer */

/* Start Animation */

.all-what .col-h:nth-child(1),
.services-h .col-md-6:nth-child(2) {
    animation-delay: 0.5s;
    animation-duration: 1.5s;
}

.all-what .col-h:nth-child(2),
.services-h .col-md-6:nth-child(3) {
    animation-delay: .7s;
    animation-duration: 1.5s;
}

.all-what .col-h:nth-child(3) {
    animation-delay: .9s;
    animation-duration: 1.5s;
}

.all-what .col-h:nth-child(4) {
    animation-delay: 1.1s;
    animation-duration: 1.5s;
}

.all-what .col-h:nth-child(5) {
    animation-delay: 1.3s;
    animation-duration: 1.5s;
}

header.sticky.active {
    position: fixed !important;
}

/* End Animation */

/* Start About-page */

.breadcrumb-h {
    padding: 172px 0 92px;
}

.text-bread h1 {
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 500;
    line-height: 42.1px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0;
}

.about-h.about-page {
    padding: 134px 0 161px;
}

.text-about-page {
    max-width: 721px;
    margin-bottom: 58px;
}

.text-about-page h3 {
    color: #E6E6E6;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.text-about-page p {
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.about-top.row {
    align-items: center;
    -webkit-align-items: center;
}

.count-about-page {
    width: 356px;
    height: 356px;
    margin-inline-start: auto;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(180deg, rgba(20, 19, 19, 0.6) 0%, rgba(13, 12, 12, 0.6) 100%);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.count-about-page::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(180deg, #343131 0%, #1E1E1E 51.34%, #343131 100%);
}

.count-about-page .counter-item {
    color: var(--main-color);
    font-size: 121.26px;
    font-weight: 500;
    line-height: 149.24px;
    margin-bottom: 18px;
    height: 133px;
}

.count-about-page h5 {
    color: #F8DEE0;
    font-size: 24.87px;
    font-weight: 400;
    line-height: 40.42px;
    margin: 0;
}

.about-bottom .img-about {
    height: 288px;
    border-radius: 32px;
    max-width: 747px;
    margin-inline-end: 20px;
}

.about-page .text-about+.text-about {
    margin-top: 32px;
}

.value-h {
    padding: 161px 0;
}

.value-block {
    padding: 32px 35px 35px;
    height: calc(100% - 30px);
    margin: 15px 0;
    border: 1px solid rgb(81 81 81 / 30%);
    background: rgb(6 6 6 / 30%);
    border-radius: 24px;
    transition: all .4s ease-in-out;
}

.value-block .icon {
    width: 51px;
    height: 51px;
    line-height: 51px;
    margin-bottom: 33px;
}

.value-block .icon img {
    max-width: 51px;
    max-height: 51px;
    object-fit: contain;
    object-position: center;
}

.value-block .details h3 {
    color: #F8DEE0;
    font-size: 32px;
    font-weight: 500;
    line-height: 42.1px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    transition: all .4s ease-in-out;
}

.value-block .details p {
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    /* text-transform: capitalize; */
}

.history-h .title h3 .colorH+div {
    color: var(--main-color);
}

.history-nav-slider {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 28px;
}

.history-nav-slider .history-nav {
    width: 86.45px;
    height: 86.45px;
    line-height: 86.45px;
    font-size: 33.78px;
    position: relative;
}

.history-h {
    padding: 20px 0 161px;
}

.all-history .swiper.history-slider {
    /* overflow: visible; */
    width: 138%;
}

.all-history .swiper.history-slider .swiper-slide-next+.item~.item {
    opacity: 0.5;
}

.all-history .swiper.history-slider .item {
    transition: all .4s;
}

.history-block {
    margin: 15px 0 0;
}

.value-block:hover {
    background: #060606;
    border-color: #fff;
}

.value-block:hover .details h3 {
    color: #fff;
}

.history-block .img {
    height: 249px;
    border-radius: 12px 12px 0 0;
}

.history-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}

.history-block .details {
    padding-top: 13px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.history-block .details h2 {
    font-size: 78px;
    font-weight: 500;
    line-height: 96px;
    color: transparent;
    margin: 0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--main-color);
    width: 164px;
    transition: all .4s ease-in-out;
}

.history-block .details h3 {
    margin: 0;
    width: calc(100% - 164px);
    padding-inline-start: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #F8DEE0;
    transition: all .4s ease-in-out;
}

.history-block:hover .details h2,
.history-block:hover .details h3 {
    color: #fff;
    -webkit-text-stroke-color: #fff;
}

.history-block:hover .img img {
    filter: none;
}

/* End About-page */

/* Start Services-page */

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

.all-pages {
    text-align: center;
    margin-top: 54px;
}

.all-pages .pagination {
    display: inline-flex;
    border: 1px solid rgb(103 103 103 / 40%);
    border-radius: 16px;
    padding: 22px;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
}

.all-pages .pagination .page-item {
    margin: 0 7px;
}

.all-pages .pagination .page-item .page-link {
    padding: 0;
    background: transparent;
    border: none;
    color: #E7E7E7;
    opacity: .20;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.all-pages .pagination .page-item.active .page-link {
    width: 32px;
    height: 33px;
    line-height: 32px;
    background: #9B1926;
    opacity: 1;
    border-radius: 8px;
    color: #fff;
}

.all-pages .pagination .page-item.prev-page .page-link,
.all-pages .pagination .page-item.next-page .page-link {
    border: 1px solid var(--main-color);
    opacity: 1;
    min-width: 86px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-height: 32px;
    gap: 6px;
    border-radius: 8px;
    font-family: Fredoka;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--main-color);
    text-transform: lowercase;
    padding: 4px;
}

.all-pages .pagination .disabled .page-link {
    opacity: 0.3 !important;
}

/* End Services-page */

/* Start Single-serv */

.img-serv {
    overflow: hidden;
    height: 405px;
    border-radius: 24px;
}

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

.single-page {
    padding-bottom: 172px;
}

.title-single {
    margin-bottom: 75px;
}

.title-single h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 500;
    line-height: 96px;
    color: #E6E6E6;
    max-width: 1285px;
}

.text-single {
    padding-inline-start: 10px;
}

.text-single p {
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 27px;
}

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

.text-single ul li {
    display: list-item;
    list-style: disc;
    margin: 5px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #E7E7E7;
}

/* End Single-serv */

/* Start News-h */

.body-inner .block-news {
    margin: 15px 0;
}

/* End News-h */

/* Start Single-news */

.single-news .img-serv {
    margin-bottom: 81px;
}

.single-news .title-single {
    /* max-width: 608px; */
}

/* End Single-news */

/* Start Media-page */

.tabs-h {
    text-align: center;
    margin-bottom: 38px;
}

.tabs-h .nav.nav-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid rgb(103 103 103 / 40%);
    padding: 16px 18px;
    border-radius: 16px;
    gap: 14px;
}

.tabs-h .nav.nav-tabs .nav-item .nav-link {
    min-width: 122px;
    background: var(--main-color);
    min-height: 40px;
    color: #fff;
    border: none;
    transition: all .4s ease-in-out;
    border-radius: 8px;
    text-transform: capitalize;
    opacity: 0.5;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tabs-h .nav.nav-tabs .nav-item .nav-link.active {
    opacity: 1;
}

.tabs-inner .item {
    width: 25%;
    flex: 0 0 auto;
}

.tabs-inner .item:nth-child(1),
.tabs-inner .item:nth-child(5),
.tabs-inner .item:nth-child(9) {
    width: 50%;
}

.media-block {
    display: block;
    height: 324px;
    border-radius: 24px;
    overflow: hidden;
    margin: 10px 0;
}

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

.media-block::before {
    content: "\f04b";
    font-family: 'Font Awesome 6 sharp';
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 4;
    font-weight: bold;
    width: 79px;
    height: 79px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    border: 2px solid #FFFFFF;
    font-size: 29.22px;
    transition: all .4s ease-in-out;
    transform: scale(.5);
    opacity: 0;
}

.media-block:hover::before {
    opacity: 1;
    transform: none;
}

.media-block.img-media::before {
    content: "\f00e";
    font-weight: 200;
}

/* End Media-page */

/* Start Partners-page */

.partners-page .col-md-3 {
    width: 20%;
}

.partners-page .part-block {
    width: 100%;
    margin: 10px 0;
    border-radius: 16px;
    height: 121px;
    line-height: 121px;
}

/* End Partners-page */

/* Start Career-page */

.form-group {
    position: relative;
}

.form-group .label-h {
    position: absolute;
    top: 27px;
    left: 16px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    color: #333;
    pointer-events: none;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}


.form-group input:focus+label,
.form-group input.has-value+label,
.form-group textarea:focus+label,
.form-group textarea.has-value+label {
    top: 15px;
    font-size: 14px;
    /* color: #3A75BC; */
    font-weight: 300;
}

.form-group textarea:focus+label,
.form-group textarea.has-value+label {
    top: 30px;
}

.form-group input:focus::-webkit-input-placeholder {
    color: transparent;
}

.title-career {
    margin-bottom: 42px;
}

.title-career h3 {
    color: #E1B6B7;
    font-size: 32px;
    font-weight: 500;
    line-height: 42.1px;
    letter-spacing: 0.04em;
    margin: 0;
}

.block-career form {
    background: #141313;
    padding: 80px 55px;
    border-radius: 24px;
}

.block-career .form-group {
    margin-bottom: 16px;
}

.block-career .form-group .form-control {
    border: 1px solid #232222;
    background: #D9D9D905;
    height: 56px;
    border-radius: 12px;
    transition: all .4s ease-in-out;
    padding: 15px 16px;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    direction: ltr;
}

.block-career .form-group .form-control:focus, .block-career .form-group .form-control.has-value {
    box-shadow: none;
    border: 1px solid #4D4D4F;
    color: #fff;
    padding-top: 24px;
    padding-bottom: 5px;
}

.nice-select:after {
    left: auto;
    right: 20px;
    top: 15px;
    color: #fff;
    font-size: 27.19px;
    font-weight: 300;
}

.block-career .form-group .form-control.file-upload-group .file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0;
    cursor: pointer;
}

.block-career .form-group .file-upload-group.form-control {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.form-group .for-sm-input-file {
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    background: #F0BABF;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

button.btn.btn-form {
    width: 100%;
    background: var(--main-color);
    color: #fff;
    min-height: 56px;
    margin-top: 16px;
    border-radius: 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    text-transform: capitalize;
}

.block-career.jobs-h {
    max-width: 569px;
    margin-inline-start: auto;
}

.all-jobs .accordion-item {
    margin-bottom: 20px;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.all-jobs .accordion-item .accordion-header .accordion-button {
    background: #141313;
    border-radius: 24px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    text-align: start;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    line-height: 31px;
    color: #fff;
    box-shadow: none !important;
    outline: none !important;
}

.all-jobs .accordion-item .accordion-header .accordion-button::after {
    color: var(--main-color);
    margin: 0;
    content: "\2b";
    font-family: 'Font Awesome 6 Pro';
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #F0BABF;
    border-radius: 50%;
    font-weight: 400;
    transition: all .4s;
    margin-inline-start: 15px;
}

.all-jobs .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(180deg);
}

.accordion-body {
    padding: 28px 30px;
    border-top: none;
    background: #141313;
    border-radius: 24px;
    margin-top: 5px;
}

.accordion-body p {
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

form {
    direction: ltr;
}

body.mobile-menu-visible {
    overflow: hidden;
    height: 100vh;
}

body.mobile-menu-visible .scroll-h {
    overflow: hidden !important;
    transform: none !important;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: 0;
    left: auto;
    /* direction: ltr; */
}

.iti__selected-dial-code {
    direction: ltr;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: right;
}

/* End Career-page */

/* Start Contact-page */

.block-career .form-group textarea.form-control {
    height: 98px;
}

.form-group textarea.has-value+label {
    top: 20px;
}

.block-career .form-group textarea.form-control.has-value {
    padding-top: 30px;
}

.contact-block {
    max-width: 581px;
    margin-inline-start: auto;
    background: #141313;
    border-radius: 24px;
    padding: 57px 36px;
}

.title-contact {
    margin-bottom: 32px;
}

.title-contact h3 {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    margin: 0;
}

.info-contact .info-f ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

.info-contact .info-f ul li {
    width: calc(50% - 24px);
    flex: 0 0 auto;
}

.info-contact {
    margin-bottom: 32px;
}

.map-contact .map-h {
    border-radius: 16px;
    height: 260px;
    overflow: hidden;
}

.map-contact .title-contact {
    margin-bottom: 13px;
}

.block-career, .block-career form {
    height: 100%;
}

.footer-contact {
    background: #141313;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 23, 23, 0) 75.41%, #0E0E0E 100%);
}

/* End Contact-page */