/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --prim: #ffffff;
    --second: #8f1939;
    --third: #e96c24;
    --fourth: #a2a2a2;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto"), url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "ElMessiri";
    src: local("ElMessiri"), url("../fonts/El_Messiri/ElMessiri-VariableFont_wght.ttf") format("truetype");
}

@font-face {
    font-family: "Jazeera";
    src: local("Jazeera"), url("../fonts/Al-Jazeera-Arabic-Regular.8230ad4.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat-Light";
    src: local("Montserrat-Light"), url("../fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat-Bold";
    src: local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat-Regular";
    src: local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

body {
    color: #444444;
    background-color: #ffffff;
    font-family: "Lato";
}

[dir="rtl"] body {
    font-family: "Jazeera";
}


/* width */

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


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: lightgray;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--second);
}

a {
    color: var(--second);
    text-decoration: none;
    transition: 0.5s;
    font-size: 20px;
}

.newLinkHover {
    position: relative;
}

.newLinkHover::before {
    content: "";
    position: absolute;
    height: 3px;
    min-width: 0px;
    width: 0px;
    bottom: 0px;
    border-radius: 10px;
    transition: all 0.22s ease-in-out 0s;
    background-color: var(--second);
    max-width: 150px;
}

.newLinkHover:hover::before {
    width: calc(100% - 16px);
}

a:hover {
    color: var(--second);
    text-decoration: none;
    text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat-Bold";
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] p,
[dir="rtl"] a,
[dir="rtl"] button,
[dir="rtl"] input {
    font-family: "Jazeera";
}

p {
    line-height: initial;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--second);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

[dir="rtl"] .back-to-top {
    left: 15px;
    right: auto;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--second);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    top: 0px;
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(42, 44, 57, 0.9);
}

#header .navbar {
    top: 0px;
    /*height: 100px;*/
    padding: 0 20px;
}

#header.header-scrolled,
#header.header-scrolled .navbar {
    top: 0;
}

#header .lang {
    border-right: 2px solid;
    border-radius: 0;
    transition: 0.3s;
    padding-right: 18px !important;
}

#header .lang:hover {
    padding-right: 10px !important;
}

#header.header-transparent {
    background: hsla(0, 0%, 100%, .7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 5px auto;
    max-height: 100px;
    width: 200px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
    font-family: 'Lato';
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px 7px 15px;
    margin-left: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #2a2a2a;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 22px;
    line-height: 0;
    margin: 0 5px;
}

.navbar a:hover,
.navbar a:focus,
.navbar .active,
.navbar .nav-link.active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--second);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown .nav-link.active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--second);
    background-color: transparent;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

[dir="rtl"] .dropdown-toggle::after {
    margin-right: 0.255em;
    margin-left: auto;
}

.nav-bar-canvas {
    padding: 20px 0;
}

.navbar .icon-link {
    padding: 5px !important;
    position: relative;
}

.mobile-link {
    display: none;
}

.navbar .newNotify {
    background-color: #d42121;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 9px;
    font-size: 10px;
    height: 8px;
    width: 8px;
}

.navbar .active::before,
.navbar .active::before {
    width: 20px;
}

.navbar .social-links {
    margin: 30px 0 10px 0;
}

.navbar .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.2s;
    font-size: 18px;
    line-height: 16px;
    background-image: linear-gradient(45deg, #00a6fb 50%, transparent);
}

.navbar .social-links i {
    font-size: 22px;
    line-height: 1;
    margin: 0;
}

[dir="rtl"] .navbar .newNotify {
    top: 5px;
    right: auto;
    left: 9px;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 992px) {
    #header .logo img {
        max-height: 80px;
    }
    .navbar li {
        width: 95%;
        margin: 8px auto;
        background-color: #f9f9f9;
        border-radius: 0;
        border-bottom: 1px solid var(--second);
    }
    .navbar .dropdown ul a {
        padding: 10px 10px;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 4px 7px 4px;
        margin-left: 5px;
        font-size: 16px;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
    }
    .dropdown .nav-link {
        margin-inline-end: 8px;
    }
    .mobile-link {
        display: block;
    }
    #header {
        top: 0;
    }
    #header .navbar {
        top: 0px;
    }
    #header .navbar-toggler {
        margin-top: 10px;
        border: 0;
    }
    .nav-bar-canvas {
        padding: 0px 0;
    }
    .offcanvas-header {
        display: flex;
        flex-direction: row-reverse;
    }
    #header .navbar-toggler:focus {
        box-shadow: none;
    }
    #hero {
        padding: 100px 0 0 !important;
    }
    .navbar .dropdown:hover>ul {
        opacity: 0;
        visibility: hidden;
    }
    .navbar .dropdown ul {
        position: relative;
        display: none;
    }
    .navbar .dropdown li {
        border-bottom: 0;
    }
    .navbar .dropdown-menu.show {
        position: relative;
        left: 0;
        top: calc(100% + 30px);
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        display: block;
    }
    .navbar .active::before,
    .navbar .active::before {
        width: 0;
    }
    .mobileIcons {
        display: flex;
        margin-bottom: 30px;
    }
    .mobileIcons a {
        position: relative;
        padding: 8px;
    }
    .mobileSearch {
        margin-bottom: 30px;
        gap: 10px;
        display: flex;
    }
    .mobileSearch .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: var(--second) transparent transparent transparent;
        border-style: solid;
    }
    .mobileSearch .select2-container--default .select2-selection--single {
        background-color: #eee;
        border-radius: 5px;
        border: 0;
        border-bottom: 1px solid var(--second);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: var(--second);
    color: #fff;
    font-size: 14px;
    text-align: start;
    padding: 50px 20px;
    margin-top: 20px;
}
#footer form {
    position: relative;
}
#footer input {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
    border-width: 1px;
    width: 100%;
    border-style: solid;
    line-height: 1.9;
    font-size: 16px;
    height: 38px;
    padding-inline: 8px 90px;
}

#footer #submitForm {
    width: 80px;
    background-color: white !important;
    border-color: #fff !important;
    color: #8f1939 !important;
    border-style: none;
    font-size: 14px;
    height: 38px;
    padding-inline: 10px;
    margin-inline-start: -4px;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto 0;
}

#footer select {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    width: 80%;
    height: 38px;
    padding-inline-start: 8px;
}

#footer option {
    font-size: 16px;
    color: #fff;
    background-color: var(--second);
}

#footer .copyright {
    font-family: "Montserrat-Regular";
    color: #fff;
    font-size: 16px;
    /* line-height: 30px; */
    padding-top: 30px;
    width: 100%;
    text-align: center;
    font-size: 90%;
    font-weight: 100;
    opacity: 0.9;
}

#footer h5 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    position: relative;
    font-family: "Lato";
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    color: #ffffff;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 16px;
}

#footer .footer-links {
    display: flex;
    flex-direction: column;
}

#footer .footer-links a {
    color: #fff;
    font-size: 15px;
    position: relative;
    margin-bottom: 5px;
}

#footer .footer-links a:hover::before {
    width: 40px;
}

#footer .footer-links a::before {
    content: "";
    position: absolute;
    height: 3px;
    min-width: 0px;
    width: 0px;
    bottom: 0px;
    border-radius: 10px;
    transition: all 0.22s ease-in-out 0s;
    background-color: #fff;
}


/*#footer .footer-links a:hover,
#footer .copyright-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
*/

#footer .logo {
    margin: 0 0 4px;
    width: 250px;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #ffffff;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.2s;
    line-height: 16px;
}

#footer .social-links a:hover {
    background: #fff;
    text-decoration: none;
    color: var(--second);
}

#footer .social-links i {
    font-size: 25px;
    line-height: 1;
    margin: 0;
}


/*--------------------------------------------------------------
# General css 
--------------------------------------------------------------*/

section {
    padding: 80px 20px 0;
    position: relative;
}

section.firstSection {
    padding-top: 120px;
}

section.lastSection {
    padding-bottom: 90px;
}

.section-title {
    margin-left: 20px;
}

section .section-title-container {
    display: flex;
    justify-content: space-between;
}

section .section-title h4 {
    color: #000;
    font-weight: 700;
}

[dir="rtl"] section .section-title h4 {
    font-family: "ElMessiri";
}

section .section-title.line:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #47b2e4;
    transition: fade 2s linear;
}

section .section-title.lineV {
    border-left: 3px solid #47b2e4;
    padding: 5px 10px 0;
}

[dir="rtl"] section .section-title.lineV {
    border-right: 3px solid #47b2e4;
    border-left: 0;
}

.btn-primary {
    background-color: var(--second);
    border: 0;
    min-width: 150px;
    transition: 0.7s;
}

.btn-primary:hover {
    background-color: var(--second);
}

.btn-secondary {
    background-color: #939393;
    border: 0;
}

.offcanvas.offcanvas-start {
    padding-left: 20px;
    padding-right: 20px;
}

main {
    overflow: hidden;
}

::placeholder {
    color: #bbb8bd !important;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #bbb8bd !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
}

.select2-container--default .select2-selection--single {
    border-color: #00000026;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    border: 0;
}

.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #939393;
}

[dir="rtl"] .searchModal .select2 {
    width: 100% !important;
}

[dir="rtl"] .select2-container {
    width: 100% !important;
    text-align: right;
}

.blueBg {
    background-color: #00a6fb26;
}

#HeroWithoutSlider {
    padding: 80px 0;
}

#HeroWithoutSlider .mainImage {
    width: 100%;
    aspect-ratio: 1920/330;
    object-fit: cover;
}

.bgGradient {
    position: relative;
}

.bgGradient:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #00000080, #00000000);
}

@media (max-width: 576px) {
    section {
        padding: 50px 20px 0 !important;
        position: relative;
    }
    section .section-title h4 {
        font-size: 16px;
    }
    p {
        font-size: 14px;
    }
    a {
        font-size: 14px;
    }
    section.firstSection {
        padding-top: 90px !important;
    }
    section.lastSection {
        padding-bottom: 90px !important;
    }
}


/*--------------------------------------------------------------
# hero 
--------------------------------------------------------------*/

#hero {
    padding: 0;
}

#hero video {
    width: 100%;
}


/*--------------------------------------------------------------
# section1 
--------------------------------------------------------------*/

.section1 {
    background-image: url("../img/home.svg");
    background-size: 100%;
    background-position: bottom;
    background-position-y: 95%;
    background-repeat: no-repeat;
    padding-left: 0;
    padding-right: 0;
}

.section1 img {
    width: 100%;
}

.section-title span {
    font-size: 1.7rem;
    color: var(--fourth);
    font-family: "Montserrat-Regular";
}

.section-title h1 {
    color: var(--second);
    font-family: "Montserrat-Bold";
    font-size: 4rem;
    font-weight: 800;
    position: relative;
}

.section-title h1 i {
    font-size: 35px;
    transform: rotate(180deg);
    display: inline-block;
    color: var(--fourth);
}


/*--------------------------------------------------------------
# section2
--------------------------------------------------------------*/

.section2 {
    padding-left: 0;
    padding-right: 0;
    margin-top: 100px;
}

.section2 .topSlider {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section2 .swiper-slide {
    opacity: 0 !important;
    transition: 0.3s;
}

.section2 .swiper-slide-active {
    opacity: 1 !important;
}

.section2 img {
    width: 100%;
}

.section-title.right span {
    font-size: 2rem;
    color: #000;
    line-height: 1;
    font-weight: 400;
    font-family: "Montserrat-Light";
}

.section-title.right span i {
    font-size: 35px;
    transform: rotate(180deg);
    display: inline-block;
    color: var(--fourth);
    margin-left: -45px;
}

.newsSliderCard .watch {
    z-index: 10000;
    cursor: pointer;
    display: inherit;
    height: 300px;
    width: 100%;
    text-decoration: none;
}

.newsSliderCard {
    position: relative;
}

.newsSliderCard img {
    position: absolute;
    width: 50%;
    height: 100%;
    min-height: 294px;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: -1;
}

.newsSliderCard .card {
    width: 58%;
    display: flex;
    align-items: flex-start;
    background: hsla(0, 0%, 96%, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    /*border-radius: 15px;*/
    position: absolute;
    z-index: 1;
    right: 0;
    border: 0;
    top: -100px;
}

.newsSliderCard .card h3 {
    font-family: 'Montserrat-Regular';
    color: #2d2d2d;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 0 0 30px;
    font-weight: bold;
}

.newsSliderCard .card span {
    font-family: 'Lato';
    color: #525252;
    font-size: 1rem;
    line-height: 1.4;
}

.newsSliderCard .card a,
.section3 .section-title a {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-top: 20px;
    gap: 20px;
    font-family: 'Lato';
    color: #a2a2a2;
    font-size: 18px;
    align-items: center;
}

.newsSliderCard .card a:hover,
.section3 .section-title a:hover {
    color: #a2a2a2;
}

.newsSliderCard .card a:hover>i,
.section3 .section-title a:hover>i {
    background-color: #a2a2a2;
}

.newsSliderCard .card a:hover>i svg path,
.section3 .section-title a:hover>i svg path {
    stroke: #fff;
}

.newsSliderCard .card a i,
.section3 .section-title a i {
    border: 1px solid #a2a2a2;
    font-size: 25px;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 25px;
    transition: 0.3s;
    /* transform: rotate(180deg);**/
}

.newsSliderCard .card a i svg,
.section3 .section-title a i svg {
    width: 20px;
}

.newsSliderCard .card a i svg path,
.section3 .section-title a i svg path {
    stroke-width: 2px;
    stroke: #a2a2a2;
    fill: transparent;
    -webkit-transition: stroke .35s cubic-bezier(.24, .64, .4, 1);
    transition: stroke .35s cubic-bezier(.24, .64, .4, 1);
}

.newsSliderCard .card a i svg path:nth-of-type(2),
.section3 .section-title a i svg path:nth-of-type(2) {
    stroke-width: 1.8px;
}

.newsSliderCard .card span b {
    font-family: "Montserrat-Bold";
    color: var(--second);
}

.section3 .section-title span {
    font-size: 2rem;
}

.section3 .section-title a {
    width: 40%;
    margin-top: 0;
}

.section3 img {
    width: 100%;
}

.arrow-btn svg {
    position: relative;
    width: 20px !important;
    z-index: 2;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.linerSlider {
    display: block;
    gap: 20px;
    width: 52%;
    position: absolute;
    right: 8%;
    top: 70px;
    padding: 18px;
    align-items: center;
    flex-direction: row;
}

.linerSlider p {
    font-family: 'Lato';
    line-height: 1.2;
    font-size: 20px;
    color: #525252;
}

.swiper1 {
    padding: 18px;
    /* display: inline-block; */
    margin-top: -100px;
}

#progBar {
    height: 100px;
    width: 2px;
    background-color: var(--second);
    transform: rotate(180deg);
}

#progBar .progBar {
    height: 0;
    width: 3px;
    background-color: var(--second);
    animation: 3s progBar infinite;
}

@keyframes progBar {
    0% {
        height: 0px;
    }
    100% {
        height: 100px;
    }
}

.section1 img {
    /*padding-top: 100px;*/
    overflow: hidden;
}

.section1 img svg {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.section2 .swiper-pagination {
    top: -30px;
    width: 50%;
    position: relative;
}

.section2 .swiper-pagination-bullet {
    width: 40px;
    height: 10px;
    border-radius: 15px;
    background-color: var(--third);
}

.section2 .swiper-pagination-bullet-active {
    background-color: var(--second);
}

.section3 .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #707070;
    opacity: 1;
}

.section3 .swiper-pagination-bullet-active {
    background-color: #fff;
    border: 1px solid #707070;
    position: relative;
}

.section3 .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--second);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.menuModal .modal-content {
    background: url(../img/banner/Menu_BG1.jpg) center center no-repeat;
    background-size: cover;
    height: 100vh;
    background-color: #1a1a1a;
    background-blend-mode: overlay;
    overflow: auto;
}

.menuModal .modal-content .modal-header {
    height: 100px;
    border-bottom: 0;
}

.menuModal .modal-content .modal-header img {
    max-width: 290px;
    margin-left: 16px;
}

.menuModal .modal-content .modal-footer {
    border-top: 0;
    width: 100%;
    justify-content: space-between;
    align-items: end;
}

.menuModal .modal-content .modal-footer h4 {
    font-family: 'Montserrat-Bold';
    color: #b9b9b9;
    font-size: 18px;
}

.menuModal .modal-content .modal-footer h6 {
    font-family: 'Lato';
    color: #b9b9b9;
    font-size: 18px;
}

.menuModal .modal-content .social {
    display: flex;
    flex-direction: column;
}

.menuModal .modal-content .linkList {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    height: 100%;
}

.menuModal .modal-content button {
    background-color: transparent;
}

.menuModal .modal-content ul {
    overflow: hidden;
}

.menuModal .modal-content li {
    transition: 1s !important;
    transition-delay: 0.15s !important;
    opacity: 0;
    list-style: none;
}

.menuModal .modal-content a {
    color: var(--fourth);
    font-size: 24px;
    transition: 0.3s !important;
    font-family: "Montserrat-Bold";
}

.menuModal .modal-content a:hover {
    color: #fff;
}

.menuModal .modal-content li:nth-child(2) {
    transition-delay: 0.20s !important;
}

.menuModal .modal-content li:nth-child(3) {
    transition-delay: 0.25s !important;
}

.menuModal .modal-content li:nth-child(4) {
    transition-delay: 0.30s !important;
}

.menuModal .modal-content li:nth-child(5) {
    transition-delay: 0.35s !important;
}

.menuModal.show .modal-content li {
    opacity: 1;
}

.workCard img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.workCard p {
    font-family: "Montserrat-Regular";
    color: #a2a2a2;
    margin: 15px 0;
    font-size: 13px;
}

.workCard h3 {
    font-family: "Montserrat-Regular";
    color: #2d2d2d;
    font-weight: 600;
    font-size: 18px;
}

.workCard div {
    font-family: "Montserrat-Regular";
    color: #a2a2a2;
    margin: 5px 0;
    font-size: 13px;
}

.workCard a {
    display: block;
    position: relative;
}

.workCard a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: #8f1939;
    opacity: 0.8;
    border-radius: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
    transform: translate3d(-50%, -50%, 0) scale(0);
    z-index: 4;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    transition: transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    transition: transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1), -webkit-transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
}

.workCard a .plus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    transition: opacity 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    z-index: 5;
}

.workCard a .plus::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -webkit-calc(50% - 0.5px);
    left: calc(50% - 0.5px);
    width: 1px;
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    background: #fff;
}

.workCard a .plus::after {
    content: "";
    position: absolute;
    top: -webkit-calc(50% - 0.5px);
    top: calc(50% - 0.5px);
    left: 10px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    height: 1px;
    background: #fff;
}

.workCard a:hover>.plus {
    opacity: 1;
    -webkit-transition: opacity 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    transition: opacity 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
}

.workCard a:hover:before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1), -webkit-transform 0.7s cubic-bezier(0.24, 0.64, 0.4, 1);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
}

.portfolio .section1,
.contacts .section1,
.Award .section1,
.companies .section1 {
    margin-top: 100px;
    background: transparent;
}

.portfolio .section3 {
    margin-bottom: 80px;
}

.portfolio .workCard img,
.project .section3 .workCard img {
    aspect-ratio: 400/541;
}

.portfolio .section1 .linerSlider p span,
.contacts .content p span {
    color: var(--second);
    font-size: 18px;
    font-family: "Montserrat-Bold" !important;
}

.portfolio .section1 .linerSlider {
    display: flex;
    gap: 20px;
    width: 50%;
    position: absolute;
    right: 8%;
    top: 20px;
    padding: 18px;
}

.contacts .content {
    margin-top: 80px;
}

.portfolio .linerSlider p {
    font-size: 16px;
}

.portfolio .section-title h1 {
    color: var(--second);
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 54px;
    position: relative;
}

.contacts .content p {
    font-size: 14px;
    line-height: 20px;
}

.contacts .section1 img {
    padding-top: 0;
}

.contacts .contacts-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

.contacts .contactInfo a {
    display: flex;
    gap: 10px;
    text-align: end;
}

.contacts .contactInfo img {
    width: 15px;
    height: 25px;
}

.contacts .contactInfo a .icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border-radius: 25px;
}

.contacts .contactInfo a:hover>.icon {
    background-color: var(--second);
}

.contacts .contactInfo p {
    font-family: "Lato";
    color: #525252;
    font-size: 16px;
    margin-bottom: 0;
    padding-top: 5px;
}

.contacts .map iframe {
    width: 108%;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    margin-left: 18px;
}

.contacts .section-title {
    margin-top: -150px;
    margin-left: 0;
    width: max-content;
}

.contacts .section-title span {
    color: #000;
    font-size: 25px;
    font-family: "Montserrat-Light";
}

.contacts .section-title span i {
    transform: rotate(180deg);
    display: inline-block;
    color: #a2a2a2;
}

.Award .section1 {
    margin-top: 50px;
}

.Award .section-title span i {
    font-size: 35px;
    transform: rotate(180deg);
    display: inline-block;
    color: var(--fourth);
    width: 125px;
}

.Award .linerSlider p span {
    font-family: "Montserrat-Bold";
    color: var(--second);
    font-size: 22px;
}

.Award .section-title {
    margin-bottom: 50px;
}

.Award .linerSlider {
    display: flex;
    gap: 20px;
    width: 52%;
    position: absolute;
    right: 5%;
    top: 125px;
    padding: 18px;
}

.Award .awardList {
    /* grid-template-columns: repeat(5, 1fr);*/
    grid-gap: 0 3.5%;
    display: grid;
    margin-bottom: 50px;
    grid-template-columns: repeat(auto-fill, 220px);
    justify-content: space-between;
}

.Award .awardCard {
    position: relative;
    margin-bottom: 60px;
}

.Award .awardCard img {
    width: 100%;
}

.Award .awardCard .text {
    position: absolute;
    top: 5px;
    width: 100%;
    text-align: center;
}

.Award .awardCard .text h4 {
    color: var(--second);
    font-family: "Montserrat-Regular";
    font-size: 20px;
    max-width: 80%;
    margin: 0 auto 5px;
}

.Award .awardCard .text p {
    font-size: 13px;
    max-width: 75%;
    margin: auto;
    font-family: "Lato";
}

.project .section1 {
    background: transparent;
}

.project #hero {
    margin-top: 80px;
}

.project .section-title h1 i {
    transform: rotate(270deg);
}

.project #hero {
    height: 450px;
}

.project #hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project .section-title h1 {
    font-family: "Montserrat-Regular";
}

.project .section-title .Title {
    font-family: "Montserrat-Light";
    font-size: 42px;
    font-weight: 500;
    width: auto;
}

.project .description span {
    color: #a2a2a2;
    line-height: 1.3;
    font-size: 14px;
    font-family: "Montserrat-Regular";
    display: block;
}

.project .swiper-pagination-gallary2 {
    width: 50%;
    height: 2px;
    top: 50px;
}

.project .swiper-pagination-gallary2 .swiper-pagination-progressbar-fill {
    background: var(--second);
    padding: 1px 0;
}

.project .swiper-pagination-gallary {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    top: 0;
    display: flex;
    justify-content: start;
    gap: 5px;
}

.project .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-radius: 15px;
    background-color: transparent;
    border: 1px solid #707070;
    opacity: 1;
}

.project .swiper-pagination-bullet-active {
    background-color: #fff;
    border: 1px solid #707070;
    position: relative;
}

.project .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--second);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.project .gallery {
    padding-top: 100px;
}

.project .section1 img {
    padding-top: 0;
}

.mySwiper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
}

.galleryModal {
    background: #ffffffbe;
    background: hsla(0, 0%, 96%, .8) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.galleryModal .btn-close {
    margin: 10px;
    border: 2px solid;
}

.galleryModal .modal-content {
    background: transparent;
}

.galleryModal img {
    max-width: 70%;
    object-fit: contain;
    max-height: 100vh;
}

.swiper-button-next,
.swiper-button-prev {
    top: 40%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: var(--second);
}

.companies .section-title h1 {
    color: #000;
    font-weight: 400;
    font-size: 4rem;
    font-family: "Montserrat-Light";
    margin-top: 70px;
}

.companies .linerSlider p {
    font-family: 'Montserrat-Regular';
    line-height: 1.4;
    font-size: 18px;
    color: #a2a2a2;
}

.companies .linerSlider {
    display: flex;
    gap: 20px;
    width: 32%;
    position: absolute;
    right: 1%;
    top: 48px;
    padding: 18px;
}

.companies .section-title h1 span {
    color: var(--second);
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    font-weight: 800;
    position: relative;
}

.companies .year {
    margin: 0 auto;
    background-color: #901938;
    max-height: 50px;
    min-height: 50px;
    max-width: 100px;
    min-width: 100px;
    line-height: 53px;
    text-align: center;
    color: #fff;
    font-family: 'Lato';
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.companies .comanyCard .content .img {
    max-width: 300px;
    max-height: 150px;
    min-width: 300px;
    min-height: 150px;
    margin-top: 150px;
    margin-left: 50px;
}

.companies .comanyCard .content .img img {
    width: 100%
}

.companies .comanyCard .content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 3.5%;
    opacity: 0;
    transition: 0.5s;
}

.companies .comanyCard .content.is-inview {
    opacity: 1;
}

.companies .comanyCard .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -webkit-calc(50% - 1px);
    left: calc(50% - 1px);
    height: 103%;
    width: 2px;
    background: #8f1939;
}

.companies .comanyCard .content .text {
    margin-top: 150px;
    padding-left: 50px;
    min-height: 500px !important;
}

.companies .comanyCard .content h3 {
    font-family: 'Lato';
    color: #a2a2a2;
    font-size: 24px;
}

.companies .comanyCard .content p {
    font-family: 'Lato';
    color: #525252;
    font-size: 18px;
}

.verticalSlider {
    max-width: 80%;
    margin-right: 20%;
    position: static !important;
}

.verticalSlider .swiper-pagination2 {
    top: 30%;
    right: 40px;
    left: auto;
    width: 50px;
    z-index: 1111;
}

.verticalSlider .swiper-pagination2::before {
    content: "";
    position: absolute;
    top: -28%;
    left: 50%;
    width: 1px;
    height: 60%;
    background: #a2a2a2;
    z-index: -1;
    pointer-events: none;
}

.projectsPgination {
    position: absolute;
    height: 80px;
    width: 18px;
    margin: 10px 0 0;
    right: 25px;
    top: 55%;
    transform: rotate(-90deg);
    font-size: 18px;
    color: #a2a2a2;
}

.project .section3 {
    margin-top: 50px;
    margin-bottom: 80px;
}

.project .gallery .bg-gray {
    background-color: hsla(0, 0%, 96%, .8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 577px;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
}

.project .gallery .swiper-slide {
    padding: 25px 0;
}

.project .section3 h4 {
    color: #a2a2a2;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: "Montserrat-Light";
}

.project .gallery .workCard img {
    height: 300px;
    object-fit: cover;
}

.portfolio .col-lg-4:nth-of-type(3n+2) {
    margin-top: 60px;
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 12.5%;
    }
    .project .col-lg-4 .section-title {
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .project .section-title h1 {
        font-size: 3rem;
    }
    .menuModal .modal-content .linkList {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    #footer {
        text-align: center;
    }
    #footer .first {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    #footer .fifth {
        order: -1;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    #footer input {
        width: 80%;
    }
    #footer #submitForm {
        height: 36px;
        border-style: solid;
        margin: auto;
        margin-top: 23px;
        position: relative;
        display: block;
        min-width: 100px;
    }
    #footer .second,
    #footer .third,
    #footer .fourth {
        padding-bottom: 30px;
    }
    #footer>Div {
        margin-top: 25px !important;
    }
    #footer .footer-newsletter h4 {
        font-size: 16px;
    }
    #footer h5 {
        margin-top: 20px;
        font-size: 16px;
    }
    #footer p,
    #footer .footer-links a {
        font-size: 14px;
        max-width: 100% !important;
    }
    #footer .footer-links a::before {
        left: calc(50% - 20px);
    }
    .menuModal .modal-content .linkList,
    .menuModal .modal-content .modal-footer {
        flex-direction: column;
    }
    .menuModal .modal-content .modal-footer {
        align-items: center;
    }
    .menuModal .modal-content .social {
        flex-direction: row;
        padding: 0;
        gap: 10px;
    }
    .linerSlider {
        position: relative;
        bottom: 200px;
        left: 10%;
        right: 10%;
        width: 80%;
    }
    .home .section1 {
        padding-bottom: 100px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .home .section1 img {
        bottom: -100px;
        position: relative;
    }
    .section2 .topSlider {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .home .section2 .col-lg-4 {
        order: -1;
        margin-bottom: 20px;
    }
    .home .section2,
    .home .section3 {
        text-align: start !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-top: 40px !important;
        margin-top: 40px;
    }
    .section-title h1 i {
        transform: rotate(180deg);
    }
    .section-title h1 i::before {
        content: "\f111" !important;
    }
    .home .section2 .section-title {
        width: 276px;
        text-align: start !important;
    }
    .home .section2 .section-title.right span i {
        text-align: end;
        float: right;
        transform: rotate(90deg);
    }
    .home .section2 img {
        margin-top: 20px;
    }
    .home .section2 .col-lg-4 img {
        margin: 40px 10%;
        width: 80%;
    }
    .newsSliderCard .watch {
        display: none;
    }
    .newsSliderCard .watchImg {
        display: block !important;
    }
    .newsSliderCard img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
    }
    .newsSliderCard img a {
        display: none;
    }
    .newsSliderCard .card {
        position: relative;
        margin: 0 auto;
        width: 80%;
        margin-top: 100px;
    }
    .section2 .swiper-pagination {
        top: 0;
        margin-bottom: 44px;
        width: 100%;
    }
    .verticalSlider {
        margin-left: 10%;
        margin-right: 10%;
        position: relative !important;
    }
    .verticalSlider .swiper-pagination2 {
        width: 100%;
        position: relative;
        right: auto;
        left: auto;
        top: 0;
        margin: 50px auto 20px;
        justify-content: end;
        display: flex;
    }
    .verticalSlider .swiper-pagination2::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: #a2a2a2;
        z-index: -1;
        pointer-events: none;
    }
    .projectsPgination {
        position: absolute;
        height: 24px;
        width: 70px;
        margin: 0;
        left: 0;
        right: auto;
        top: 0;
        transform: rotate(0deg);
        font-size: 18px;
        color: #a2a2a2;
        background: #fff;
        z-index: 11111;
    }
    #footer .logo {
        float: right;
    }
    .companies .linerSlider,
    .Award .linerSlider,
    .portfolio .section1 .linerSlider {
        position: relative;
        width: 100%;
        margin: 0;
        right: auto;
        left: auto;
        padding: 0 0 40px;
    }
    .Award .section1 {
        padding: 100px 20px 30px !important;
    }
    .Award .section-title span {
        font-size: 22px;
    }
    .Award .section-title span i,
    .contacts .section-title span i {
        transform: rotate(180deg);
        width: auto;
    }
    .Award .section-title span i::before,
    .contacts .section-title span i::before {
        content: "\f111" !important;
    }
    .Award .linerSlider {
        top: auto;
        bottom: auto;
    }
    .companies .section-title,
    .Award .section-title,
    .portfolio .section-title {
        margin-left: 0;
    }
    .companies .section-title h1,
    .companies .section-title h1 span,
    .Award .section-title h1,
    .contacts .section-title h1,
    .portfolio .section-title h1 {
        margin: 0;
        font-size: 2rem;
    }
    .contacts .section-title span {
        font-size: 20px;
    }
    .companies .comanyCard .content {
        grid-template-columns: repeat(1, 1fr);
    }
    .companies .comanyCard .content .img {
        max-width: 100%;
        margin: 40px auto 20px;
        min-width: auto;
        min-height: auto;
    }
    .companies .comanyCard .content .img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
    .companies .comanyCard .content .text {
        width: 100%;
        margin: 20px auto;
        padding: 0 !important;
        min-height: auto !important;
    }
    .companies .comanyCard .content::before {
        display: none;
    }
    .companies .year {
        margin-top: 60px;
        margin-bottom: 20px;
    }
    .companies .comanyCard .content h3 {
        font-size: 18px;
    }
    .contacts .section-title {
        margin-top: 0;
    }
    .contacts .content {
        margin-top: 40px;
    }
    .contacts .contacts-links {
        align-items: start;
    }
    .contacts .contactInfo a {
        text-align: start;
        flex-direction: row-reverse;
    }
    .contacts .map iframe {
        border: 0;
        width: 100%;
        margin: 30px 0 !important;
        height: 300px;
    }
    .contacts .section1 .contactImg {
        height: 426px;
        width: 100%;
        object-fit: cover;
    }
    .portfolio .col-lg-4:nth-of-type(3n+2) {
        margin-top: 0px;
    }
    .portfolio .col-lg-4:nth-of-type(2n+2) {
        margin-top: 60px;
    }
    .project #hero {
        margin-top: 0;
        height: 350px;
    }
    .project #hero img {
        height: 100%;
        object-fit: cover;
    }
    .project .section-title .Title {
        font-size: 25px;
    }
    .project .section-title {
        margin-left: 0;
    }
    .project .section-title h1 {
        font-size: 3rem;
        width: max-content;
    }
    .project .section-title h1 i {
        float: right;
        transform: rotate(180deg);
        padding-right: 20px;
    }
    .project .swiper-pagination-gallary {
        width: 100%;
        gap: 5px;
        flex-wrap: wrap;
    }
    .menuModal .modal-content a {
        font-size: 20px;
    }
    .menuModal .modal-content .linkList {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    #hero video {
        height: 100%;
        width: auto;
        max-width: 100%;
        min-height: 100vh;
        object-fit: cover;
    }
    .Award .awardList {
        justify-content: center;
    }
    .project .swiper-pagination-gallary {
        gap: 0;
        top: 20px;
    }
    .project .swiper-pagination-bullet {
        margin: 0;
        width: 14px;
        height: 14px;
    }
    .project .swiper-pagination-bullet-active::before {
        width: 7px;
        height: 7px;
    }
    .project .swiper-pagination-gallary2 {
        width: 70%;
        top: 60px;
    }
    .project .section3 .workCard {
        margin-bottom: 40px;
    }
    
    .h-100px{
        transform: scale(0.5);
    }

    .p-5 {
        padding: 0rem !important;
    }
}

@media (max-width: 576px) {
    #footer .logo {
        float: right;
        margin: 0 0 25px;
        width: 209px;
    }
    #header .logo img {
        width: 160px;
    }
    .portfolio .col-lg-4 {
        margin-top: 50px !important;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
    }
    .navbar a,
    .navbar a:focus {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    #header .logo img {
        width: 100px;
    }
    .navbar a,
    .navbar a:focus {
        font-size: 14px;
    }
}

/*@media only screen and (min-width: 768px) and (orientation: landscape) {
	.video-mobile{
        display: none;
    }
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
	.video-desktop{
        display: none;
    }
    .video-mobile{
        display: block;
    }
}*/

.hide {
    display: none;
    visibility:hidden;
    line-height: 0px;
    height: 0px;
}

.show {
    display: block;
    visibility:visible;
    line-height:auto;
    height: auto;
}



html {
	scroll-behavior: smooth;
}

