@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700;900&display=swap');

:root {
    --blue: #008cd1;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-display: swap;
}

a:Hover {
    text-decoration: none;
}

* {
    outline: 0 !important;
}

a, a:Hover {
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.mobileMenu {
    display: none;
    transition: 300ms;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    transition: 300ms;
    padding: 20px 50px;
    background-color: #fff;
}

.main-header.fixed-bar {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    padding: 10px 50px;
}

.main-header .header-bar {
    transition: 300ms;
}

.main-header .logo-bar {
    width: 100%;
}

.main-header .header-bar .bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.main-header .header-bar .bar-container .contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-header .header-bar .bar-container .contacts a {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 10px;
    transition: 300ms;
    padding: 12px 10px;
}

.main-header .header-bar .bar-container .contacts a p {
    margin: 0 0 0 5px;
}

.main-header .header-bar .bar-container .contacts a:Hover {
    background-color: #fff;
    color: var(--blue);
}

.main-header .header-bar .languages {
    position: relative;
    margin-left: 20px;
}

.main-header .header-bar .languages .list {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    background-color: var(--blue);
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    min-width: 120px;
    transition: 300ms;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.main-header .header-bar .languages .list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 300ms;
    padding: 5px;
    color: #fff;
}

.main-header .header-bar .languages .list li a img {
    margin-right: 5px;
}

.main-header .header-bar .languages .list li a:Hover {
    background-color: #fff;
    color: var(--blue);
}

.main-header .header-bar .action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .header-bar .action .languages .current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 120px;
    height: 29px;
    color: #fff;
    border: 1px solid #fff;
    padding: 0 10px;
    transition: 300ms;
    cursor: pointer;
}

.main-header .header-bar .action .languages .current p {
    margin: 0;
}

.main-header .header-bar .action .languages .current span {
    font-weight: lighter;
    transition: 300ms;
}

.main-header .header-bar .action .languages:Hover .list {
    opacity: 1;
    visibility: visible;
    transform: translateY(1px);
}

.main-header .header-bar .action .languages:Hover .current span {
    transform: rotate(180deg);
}

.main-header .header-bar .action .socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .header-bar .action .socials a {
    color: #000;
    padding: 10px;
    font-size: 16px;
    transition: 300ms;
}

.main-header .header-bar .action .socials a:Hover {
    background-color: #fff;
    color: var(--blue);
}

.main-header .logo-bar .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.main-header .logo-bar .logo-container > .logo {
    width: 300px;
    position: relative;
}

.main-header .logo-bar .logo-container > .logo a {
    display: block;
}

.main-header .logo-bar .logo-container > .socials {
    width: 200px;
}

.main-header .logo-bar .logo-container > .socials nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.main-header .logo-bar .logo-container > .socials nav a {
    display: block;
    color: #000;
    transition: 300ms;
    margin-left: 40px;
    font-size: 16px;
}

.main-header .logo-bar .logo-container > .socials nav a:Hover {
    color: var(--blue);
}

.main-header .logo-bar .logo-container > .menu {
    width: calc(100% - 500px);
}

.main-header .logo-bar .logo-container .menu > ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

.main-header .logo-bar .logo-container .menu > ul > li {
    position: relative;
}

.main-header .logo-bar .logo-container .menu > ul > li > a {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    padding: 15px 10px;
    white-space: nowrap;
    transition: 300ms;
    display: inline-block;
    margin-left: 30px;
}

.main-header .logo-bar .logo-container > .logo img {
    transition: 300ms;
    z-index: 1;
}

.main-header .logo-bar .logo-container .menu > ul > li:Hover > a {
    background-color: #fff;
    color: var(--blue);
}

.main-header .logo-bar .logo-container .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    list-style: none;
    padding: 5px;
    margin: 0;
    background-color: var(--blue);
    min-width: 200px;
    transition: 300ms;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
}

.main-header .logo-bar .logo-container .menu > ul > li > ul > li > a {
    color: #fff;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    font-size: 14px;
    align-items: center;
    justify-content: flex-start;
    transition: 300ms;
    transition-delay: 150ms;
    opacity: 0;
    transform: translateX(10px);
}

.main-header .logo-bar .logo-container .menu > ul > li:Hover > ul > li > a {
    opacity: 1;
    transform: translateX(0);
}

.main-header .logo-bar .logo-container .menu > ul > li > ul > li > a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-right: 5px;
}

.main-header .logo-bar .logo-container .menu > ul > li > ul > li > a:Hover {
    background-color: #056696;
}

.main-header .logo-bar .logo-container .menu > ul > li:Hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.main-header.fixed-bar .logo-bar .logo-container .menu > ul > li:not(:last-child) > a,
.main-header.fixed-bar .logo-bar .logo-container > .socials nav a {
    color: #000;
}

.main-header .logo-bar .logo-container .menu > ul > li:last-child a {
    background: #223644;
    text-transform: uppercase;
    font-weight: bolder;
    padding: 15px 20px;
    color: #fff;
}

.main-header .logo-bar .logo-container .menu > ul > li:last-child a > i {
    margin-left: 10px;
    font-weight: lighter;
}

.main-header .logo-bar .logo-container .menu > ul > li:last-child a:Hover {
    background: #056696;
}

.main-header .logo-bar .logo-container .menu > ul > li:last-child a:Hover > i {
    font-weight: bolder;
}

.main-slider {
    position: relative;
    padding: 100px 50px 0 50px;
}

.slider-logos .logos-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: auto;
    position: relative;
}


.slider-logos {
    position: absolute;
    left: 0;
    width: 100%;
    border: 0;
    bottom: 50px;
    text-align: center;
}

.slider-logos img {
    width: 150px !important;
    display: inline-block;
    margin: auto;
    padding: 0 10px;
    height: 100px;
    object-fit: contain;
}

.slider-logos .logo-item {
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: 300ms;
    position: relative;
}


.slider-logos .logo-item.active {
    background: rgb(29, 141, 205);
    background: linear-gradient(180deg, rgba(29, 141, 205, 1) 0%, rgba(9, 84, 128, 1) 100%);
}

.main-slider .slider-item {
    position: relative;
    background-size: cover;
    background-position: center center;
}

.main-slider .slider-item img {
    height: 800px;
    object-fit: cover;
}

.main-slider .slider-box {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 200px;
}

.main-slider .slider-box .container {
    overflow: hidden;
}

.main-slider .slider-box .title {
    font-size: 45px;
    max-width: 60%;
    display: block;
    margin-bottom: 20px;
}

.main-slider .slider-box .description {
    max-width: 50%;
    margin-bottom: 20px;
}

#homeSlider .owl-nav:not(.disabled) {
    display: flex;
}

#homeSlider .owl-nav:not(.disabled) i {
    display: flex;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    align-items: center;
    justify-content: center;
    transition: 300ms;
    position: absolute;
    top: calc(50% - 25px);
    z-index: 99;
}

#homeSlider .owl-nav:not(.disabled) .owl-prev i {
    left: 10px;
}

#homeSlider .owl-nav:not(.disabled) .owl-next i {
    right: 10px;
}

#homeSlider .owl-nav:not(.disabled) i:Hover {
    color: #fff;
    background-color: var(--blue);
}

#homeSliderLogos .owl-nav {
    margin: 0;
    background: blue;
    display: flex;
}

#homeSliderLogos .owl-nav i {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    display: flex;
    align-items: center;
    top: calc(50% - 25px);
    transition: 300ms;
    color: #fff;
}

#homeSliderLogos .owl-nav .owl-prev i {
    left: -30px;
}

#homeSliderLogos .owl-nav .owl-next i {
    left: calc(100% + 20px);
}

#homeSliderLogos .owl-nav i:Hover {
    color: #1b86c4;
}

.site-link {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background-color: var(--blue);
    padding: 10px 30px;
    transition: 300ms;
    border: 0;
    outline: 0;
}

.site-link:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-left: 20px;
    font-weight: bolder;
}

.site-link:Hover {
    background-color: #056696;
    color: #fff;
}

.slider-widgets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -170px;
    position: relative;
    z-index: 11;
}

.slider-widgets .widget {
    width: calc(25% - 10px);
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    padding: 30px 50px;
    transition: 300ms;
}

.slider-widgets .widget img {
    width: 100px;
    height: 100px;
    display: inline-block;
    object-fit: contain;
}

.slider-widgets .widget .title {
    display: block;
    font-size: 20px;
}

.slider-widgets .widget .count {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin: 15px 0;
    transition: 300ms;
}

.slider-widgets .widget .count:After {
    content: "+";
}

.slider-widgets .widget:Hover {
    transform: scale(1.1);
}

.main-projects {
    padding: 120px 0;
    position: relative;
}

.main-projects .section-cover {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-projects .section-cover:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 100) 50%, rgba(0, 212, 255, 0) 100%);
}

.main-projects .section-cover img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: .2;
}

.main-projects .section-header {
    text-align: center;
}

.main-projects .section-header .button {
    width: 100%;
    text-align: right;
    padding: 0 100px 10px 0;
}

.main-projects .section-header .button a {
    display: inline-block;
    font-size: 18px;
    color: #000;
    transition: 300ms;
    opacity: 0;
    font-weight: 500;
}

.main-projects .section-header.wowed .button a {
    opacity: 1;
}

.main-projects .section-header .button a > i {
    font-size: 11px;
}

.main-projects .section-header .button a:Hover {
    color: var(--blue);
}

.main-projects .section-header p {
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-projects .section-header p:Before {
    content: '';
    position: absolute;
    left: -130px;
    top: calc(50% - .5px);
    width: 1px;
    height: 1px;
    background-color: var(--blue);
    transition: 600ms;
    opacity: 0;
}

.main-projects .section-header p:after {
    content: '';
    position: absolute;
    right: -130px;
    top: calc(50% - .5px);
    width: 1px;
    height: 1px;
    background-color: var(--blue);
    transition: 600ms;
    opacity: 0;
}

.main-projects .section-header.wowed p:Before,
.main-projects .section-header.wowed p:After {
    width: 100px;
    opacity: 1;
}

.main-projects .section-header h2 {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 30px;
}

.project {
    position: relative;
    overflow: hidden;
}

.project .content a {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 30px 30px 50px 30px;
    flex-direction: column;
    transition: 300ms;
    z-index: 9;
}

.project .cover img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 300ms;
}

.project .content .title {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.project .content .category {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.project .content a:after {
    content: '';
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    bottom: 50px;
    background: #3a3a3a;
    height: 2px;
    transition: 600ms;
}

.project:Hover .content a {
    transform: translateY(-15px);
}

.project:Hover .content a:after {
    width: 40%;
    left: 30%;
    background: rgba(255, 255, 255, 0.6);
}

.main-about {
    padding: 120px 0;
}

.main-about .about-container .text p:not(.sup-title) {
    font-size: 20px;
}

.main-about .about-container .text .sup-title {
    text-transform: uppercasE;
    letter-spacing: 2px;
}

.main-about .about-container .text a:last-child {
    margin-top: 20px;
    display: inline-block;
    border: 1px solid #000;
    color: #000;
    transition: 300ms;
    padding: 5px 10px;
    font-size: 13px;
}

.main-about .about-container .text a:last-child > i {
    margin-left: 20px;
}

.main-about .about-container .text a:last-child:Hover {
    color: var(--blue);
    border-color: var(--blue);
}

.main-about .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-about .about-container > div {
    width: 50%;
}

.main-about .about-container .text {
    padding-right: 30px;
}

.main-about .about-container .image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.main-articles {
    position: relative;
    padding: 120px 0;
    background-image: url('/images/articles-bg.jpg');
    background-size: cover;
    background-position: center center;;
}

.main-articles .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.main-articles .section-header > div {
    width: 50%;
}

.main-articles .section-header .buttons {
    text-align: right;
}

.main-articles .section-header .buttons a {
    background-color: var(--blue);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 30px;
    transition: 300ms;
    letter-spacing: 2px;
}

.main-articles .section-header h2 {
    font-size: 45px;
    font-weight: bolder;
}

.main-articles .section-header .sup-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.main-articles .section-header p {
    font-size: 14px;
    color: #5f5f5f;
}

.main-articles .section-header .buttons a:Hover {
    background-color: #005b88;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.articles-container .article {
    width: calc(33% - 20px);
    margin: 10px;
    transition: 300ms;
    position: relative;
}

.articles-container .article .image {
    overflow: hidden;
    position: relative;
}

.articles-container .article .image .date {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: var(--blue);
    color: #fff;
    z-index: 99;
}

.articles-container .article .image .date > i {
    margin-right: 5px;
}

.articles-container .article .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 300ms;
}

.articles-container .article .content {
    padding: 30px;
}

.articles-container .article .content .title {
    display: block;
    color: #000;
    margin-bottom: 20px;
    transition: 300ms;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 30px;
}

.articles-container .article .content .title:Hover {
    color: var(--blue);
}

.articles-container .article .content p {
    font-size: 14px;
    color: #5a5a5a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-container .article .content .read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: 300ms;
}

.articles-container .article .content .read-more:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-left: 10px;
    font-weight: bolder;
}

.articles-container .article .content .read-more:Hover {
    color: #00537b;
}

.articles-container .article:Hover .image img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.main-articles .articles-container .article {
    width: calc(50% - 20px);
}

.main-articles .articles-container .article .image img {
    height: 400px;
}

.articles-container .article .content .date {
    margin-bottom: 20px;
    display: block;
    font-size: 14px;
}

.main-footer {
    position: relative;
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
}

.main-footer .footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    margin: 30px 0 30px 0;
}

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

.main-footer .footer-container aside {
    width: calc(25%);
}

.main-footer .footer-container aside:nth-child(2),
.main-footer .footer-container aside:nth-child(3) {
    padding: 0 20px;
}

.main-footer .socials .title {
    margin-top: 30px;
    display: block;
}


.main-footer .footer-container .logo p {
    font-size: 14px;
    margin-top: 20px;
}

.main-footer .footer-container .logo ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.main-footer .footer-container .logo ul li a {
    display: block;
    font-size: 25px;
    color: #fff;
    transition: 300ms;
    margin-right: 15px;
}

.main-footer .footer-container .logo ul li a:Hover {
    color: var(--blue);
}

.main-footer .footer-title {
    display: block;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.main-footer .footer-title:After {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
}

.main-footer .footer-title:Before {
    content: '';
    width: 70px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1);
}

.main-footer .footer-container .menu ul li a {
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 300ms;
}

.main-footer .footer-container .menu ul li a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-weight: bolder;
}

.main-footer .footer-container .menu ul li a:Hover {
    color: var(--blue);
}

.main-footer .footer-container .contacts ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}


.main-footer .footer-container .contacts ul li .icon {
    width: 30px;
}

.main-footer .footer-container .contacts ul li .content {
    width: calc(100% - 30px);
}

.main-footer .copyright {
    color: #fff;
}

.main-footer .copyright .copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 80px;
}

.main-footer .copyright .copyright-container p {
    margin: 0;
    font-size: 14px;
}

.main-footer .copyright .copyright-container p > a {
    font-weight: 600;
    color: #fff;
    transition: 300ms;
}

.main-footer .copyright .copyright-container p > a:Hover {
    color: var(--blue);
}

.main-footer .footer-request {
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    color: #fff;
    position: relative;
    transform: translateY(-150px);
}

.main-footer .footer-request > div {
    width: calc(50% - 20px);
    position: relative;
    height: 100%;
}

.main-footer .footer-request .text .title {
    display: block;
    font-size: 35px;
    margin-bottom: 30px;
}

.main-footer .footer-request .text p {
    font-size: 14px;
    max-width: 90%;
}

.main-footer .footer-request .text {
    border-right: 2px solid rgb(255 255 255 / 33%);
}

.main-footer .footer-request .form .body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.main-footer .footer-request .form .body input {
    border: 0;
    width: calc(50% - 10px);
    border: 0;
    background: transparent;
    padding: 10px 0;
    border-bottom: 2px solid #000;
}

.main-footer .footer-request .form .body input::placeholder {
    color: #fff;
}

.main-footer .footer-request .form .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-footer .footer-request .form .buttons button {
    width: calc(50% - 10px);
    background: #000;
    color: #fff;
    padding: 10px 0;
    border: 0;
    transition: 300ms;
}

.main-footer .footer-request .form .buttons button:Hover {
    background: #006698;
}

.main-footer .footer-request .form .buttons > a {
    color: #fff;
    display: block;
    transition: 300ms;
}

.main-footer .footer-request .form .buttons > a:Hover {
    color: #000;
}

.main-footer .footer-request .form .buttons > a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.main-footer .logo-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.main-footer .logo-wrapper img {
    width: 400px;
}

.footer-direction a {
    background: #ffea00;
    padding: 15px 0;
    text-align: center;
    display: block;
    font-size: 35px;
    font-weight: bolder;
    color: #000;
    transition: 300ms;
    letter-spacing: 1px;
}

.footer-direction a:Hover {
    background: var(--blue);
    color: #fff;
}

.menu-wrapper {
    display: none;
}

.breadcrumb {
    margin-top: 0;
    text-align: center;
    padding: 200px 0 90px;
}

.breadcrumb .breadcrumb-nav {
    width: 100%;
}

.breadcrumb ul {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
}

.breadcrumb ul li a {
    color: #fff;
    display: block;
}

.breadcrumb ul li a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin: 0 10px;
    font-weight: bolder;
}

.breadcrumb ul li strong {
    font-weight: 500;
}

.breadcrumb .page-title {
    font-size: 35px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 5px;
}

.page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 60px 0 30px;
}

.page-container .app-sidebar {
    width: 300px;
}

.page-container .app-sidebar aside {
    margin-bottom: 20px;
    position: relative;
}

.page-container .app-content {
    width: calc(100% - 300px);
    padding-left: 30px;
}

.page-cover {
    margin-bottom: 30px;
}

.page-cover img {
    transition: 300ms;
}

.page-cover img:Hover {
    filter: brightness(50%);
}

.page-entry p {
    color: #6f6f6f;
}

.page-entry h1,
.page-entry h2,
.page-entry h3,
.page-entry h4,
.page-entry h5,
.page-entry h6,
.page-entry strong,
.page-entry b {
    color: #000;
}

.app-sidebar aside {
    border: 1px solid var(--blue);
}

.app-sidebar aside > .title {
    background: var(--blue);
    display: block;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

.app-sidebar .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.app-sidebar .menu ul li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #000;
    padding: 10px 20px;
}

.app-sidebar .menu ul li a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-weight: bolder;
    transition: 300ms;
}

.app-sidebar .menu ul li.active a,
.app-sidebar .menu ul li a:Hover {
    background: var(--blue);
    color: #fff;
}

.galleries-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.galleries-container .image {
    width: 25%;
    overflow: hidden;
}

.galleries-container .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 300ms;
}

.galleries-container .image:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.videos-container .video {
    width: calc(33% - 20px);
    margin: 10px;
    height: 300px;
    position: relative;
}

.videos-container .video .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.videos-container .video .content {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    transition: 300ms;
    color: #fff;
}

.videos-container .video .content .icon,
.videos-container .video .content .title {
    width: 100%;
}

.videos-container .video .content .icon i {
    font-size: 35px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 100%;
    transition: 300ms;
}

.videos-container .video .content:Hover i {
    box-shadow: 0 0 30px var(--blue);
    color: var(--blue);
    transform: scale(1.1);
}

.videos-container .video:Hover .content {
    background: rgba(0, 0, 0, 0.8);
}

.files-container .file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.files-container .file .size {
    width: calc(100% - 190px);
}

.files-container .file .size {
    width: 70px;
    text-align: center;
}

.files-container .file .download {
    width: 120px;
    text-align: right;
}

.files-container .file label {
    font-size: 13px;
    margin: 0;
    padding: 5px 10px;
    background-color: var(--blue);
    color: #fff;
    border-radius: 5px;
}

.files-container .file .title a {
    color: #000;
}

.files-container .file .download a {
    display: block;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid var(--blue);
    font-weight: bolder;
    transition: 300ms;
    text-align: center;
    color: var(--blue);
}

.files-container .file .download a > i {
    margin-right: 10px;
    font-weight: bolder;
}

.files-container .file .download a:Hover {
    background-color: var(--blue);
    color: #fff;
}

.media-center-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.media-center-container .media-item {
    width: calc(33% - 10px);
    border: 1px solid var(--blue);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 200px;
}

.media-center-container .media-item .icon {
    display: block;
    font-size: 55px;
    color: var(--blue);
}

.media-center-container .media-item .icon i {
    font-weight: lighter;
}

.page-container.full-content .app-content {
    width: 100%;
    padding-left: 0;
}

.media-center-container .media-item .content {
    display: block;
    text-align: right;
    width: 100%;
}

.media-center-container .media-item .content .title {
    display: block;
    text-align: left;
    margin-bottom: -5px;
    font-size: 25px;
}

.media-center-container .media-item .site-link {
    font-size: 11px;
    padding: 5px 20px;
    margin-top: 10px;
}

.project-categories-page .featured-projects {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.project-categories-page .featured-projects .project {
    width: calc(50% - 20px);
}

.project .nav-buttons button {
    position: absolute;
    top: calc(50% - 25px);
    background: var(--blue);
    width: 100%;
    display: flex;
    transition: 300ms;
    width: 50px;
    height: 50px;
    align-items: center;
    z-index: 99;
    justify-content: center;
    border: 0;
    color: #fff;
    opacity: .5;
}

.project .nav-buttons button.prev {
    left: 10px;
}

.project .nav-buttons button.next {
    right: 10px;
}

.project .nav-buttons button > i {
    font-weight: lighter;
}

.project .nav-buttons button:Hover {
    opacity: 1;
}

.project.disable-prev .nav-buttons .prev {
    opacity: .2;
    cursor: no-drop;
}

.project.disable-next .nav-buttons .next {
    opacity: .2;
    cursor: no-drop;
}

.project.hidden-buttons .nav-buttons {
    display: none;
}

.project-categories-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-categories-page .section-header p {
    max-width: 50%;
    margin: auto;
    font-size: 14px;
    color: dimgrey;
}

.project-categories-page .section-header h2 {
    font-weight: bolder;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-categories-page .section-header h2:After {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50%);
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: 300ms;
}

.project-categories-page .section-header h2.wowed:After {
    left: calc(50% - 50px);
    width: 100px;
}

.project-categories-page .category-projects {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.project-categories-page .category-projects .project {
    width: calc(33% - 20px);
    margin: 10px;
}

.project-categories-page .category {
    margin-bottom: 30px;
}

.project-categories-page .category .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.project-categories-page .category .section-header:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: calc(50% - 1px);
    width: 0;
    height: 2px;
    background-color: var(--blue);
    z-index: -1;
    transition: 3000ms;
}

.project-categories-page .category .section-header.wowed:after {
    width: 100%;
}

.project-categories-page .category .section-header h3 {
    font-weight: bolder;
    margin: 0;
    background-color: #fff;
    z-index: 11;
    padding-right: 50px;
}

.app-sidebar .socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.app-sidebar .socials a {
    display: block;
    font-size: 22px;
    margin: 0;
    transition: 300ms;
    color: #000;
    opacity: .5;
}

.app-sidebar .socials a:Hover {
    color: var(--blue);
    opacity: 1;
}

.app-sidebar .articles-container .article {
    width: 100%;
    margin: 0;
}

.app-sidebar .sidebar-articles .owl-nav {
    position: absolute;
    right: 10px;
    top: -38px;
}

.app-sidebar .sidebar-articles .owl-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    background-color: white;
    height: 30px;
    width: 30px;
    margin-left: 5px;
    font-weight: bolder;
    font-size: 14px;
}

.app-sidebar .sidebar-articles .owl-nav .disabled i {
    opacity: .2;
    cursor: no-drop;
}

.project-category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.project-category .project {
    margin: 10px;
    width: calc(50% - 20px);
}

.project-detail-page .project-cover {
    position: relative;
    overflow: hidden;
}

.project-detail-page .project-cover img {
    width: 100%;
    object-fit: cover;
    max-height: 800px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-form .input {
    width: 100%;
    margin-bottom: 10px;
}

.contact-form .input:nth-child(2),
.contact-form .input:nth-child(3) {
    width: calc(50% - 10px);
}

.contact-form .input input,
.contact-form .input textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    transition: 300ms;
}

.contact-form .input input:focus,
.contact-form .input textarea:focus {
    border-color: var(--blue);
}

.contact-form .input textarea {
    min-height: 100px;
}

.popup-item .popup-title {
    display: block;
    margin-bottom: 30px;
    font-size: 30px;
}

#popupModal .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#popupModal .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 100%;
    background: #ddd;
    margin-left: 5px;
    transition: 300ms;
    margin-top: -30px;
}

#popupModal .owl-dots .owl-dot.active {
    background: var(--blue);
}

#popupModal .owl-nav {
    display: flex;
    align-items: center;
    width: 100px;
}

#popupModal .owl-nav i {
    display: flex;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    font-weight: bolder;
    color: #ddd;
    transition: 300ms;
}

#popupModal .owl-nav i:Hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.popup-item .button {
    margin: 20px 0;
}

.popup-item img {
    margin-bottom: 20px;
}

.btn-close {
    outline: 0 !important;
    box-shadow: none !important;
}

.fixed-wp {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 99;
}

.fixed-wp a {
    position: relative;
    display: flex;
    background: var(--blue);
    font-size: 25px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 300ms;
}

.fixed-wp a:after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    white-space: nowrap;
    font-size: 14px;
    padding: 5px 10px;
    color: var(--blue);
    background: #fff;
    transition: 300ms;
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
}

.fixed-wp a:Hover {
    background: #005179;
}

.fixed-wp a:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.page-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.page-images .image {
    width: 33%;
    overflow: hidden;
}

.page-images .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 300ms;
}

.page-images .image:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.contact-boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-boxes .contact-box {
    width: calc(20% - 20px);
    border: 1px solid #ddd;
    transition: 300ms;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    height: 180px;
}

.contact-boxes .contact-box .icon i {
    font-size: 35px;
    color: var(--blue);
}

.contact-boxes .contact-box .title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 15px 0;
    letter-spacing: 2px;
}

.contact-boxes .contact-box .value {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.contact-boxes .contact-box .value a {
    font-weight: 600;
    color: #000;
    transition: 300ms;
}

.contact-boxes .contact-box .value a:Hover {
    color: var(--blue);
}

.contact-boxes .contact-box:Hover {
    border-color: var(--blue);
}

.contact-page .media-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}

.contact-page .media-bar > * {
    width: 50%;
    position: relative;
}

.contact-page .media-bar .sahibinden {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffe800;
    padding: 10px;
}

.contact-page .media-bar .sahibinden .title {
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.contact-page .media-bar .sahibinden img {
    width: 50px;
    height: 50px;
}

.contact-page .media-bar .socials {
    display: flex;
    align-items: center;
    padding-left: 80px;
    justify-content: space-between;
}

.contact-page .media-bar .socials .title {
    font-weight: 600;
    letter-spacing: .5px;
}

.contact-page .media-bar .socials .title:after {
    content: ':';
}

.contact-page .media-bar .socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 50px;
}

.contact-page .media-bar .socials ul li a {
    display: block;
    font-size: 30px;
    color: #000;
    margin: 0 10px;
    transition: 300ms;
}

.contact-page .media-bar .socials ul li a:Hover {
    color: var(--blue);
}

.contact-page .form-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-page .form-wrapper > div {
    width: 50%;
}

.contact-page .form-wrapper .form {
    background: #fff;
    transform: translateX(-60px);
    position: relative;
    z-index: 1;
    padding: 30px;
}

.contact-page .form-wrapper .form h2 {
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 20px;
}

.contact-page .form-wrapper .form .form-header p {
    font-size: 14px;
    color: #7d7d7d;
}

.contact-page .map {
    margin-bottom: -260px;
    width: 100%;
    margin-top: 60px;
}

.contact-page .map iframe {
    width: 100%;
    height: 600px;
    filter: grayscale(100%);
    transition: 300ms;
}

.contact-page .map:Hover iframe {
    filter: grayscale(0);
}

button[type='submit'] {
    position: relative;
    overflow: hidden;
}

button[type='submit']:After {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 30px;
    background-image: url('/images/loading.gif') !important;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center left;
    transition: 300ms;
    transform: translateX(-30px);
    opacity: 0;
    visibility: hidden;
}

button[type='submit'].loading {
    padding-left: 20px !important;
    pointer-events: none;
}

button[type='submit'].loading:After {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.results {
    transition: 300ms;
    opacity: 0;
    color: #fff;
}

.results.active {
    opacity: 1;
    padding: 10px;
    margin-top: 10px;
}

.results.success {
    background-color: #169400;
}

.results.error {
    background-color: #e62200;
}

/*
LAST EDITS
 */

.home-projects {
    position: relative;
}

.home-projects .home-project-item {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    align-content: center;
    background: whitesmoke;
}


.home-projects .home-project-item > div {
    height: 600px;
}

.home-projects .home-project-item > .image {
    width: calc(100% - 500px);
}

.home-projects .home-project-item > .image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: 1500ms;
}

.home-projects .home-project-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 80px;
    width: 500px;
    transition: 1500ms;
    transform: translateX(-20px);
}

.home-projects .home-project-item .content .project-text {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

.home-projects .home-project-item .content strong.title {
    color: var(--blue);
    font-size: 30px;
    font-weight: bolder;
    display: block;
}

.home-projects .home-project-item .content .project-detail {
    display: flex;
    width: 150px;
    margin: 15px 0 30px;
    background: var(--blue);
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 10px 20px;
    transition: 300ms;
    font-size: 14px;
}

.home-projects .home-project-item .content .project-detail:Hover {
    background: #03496b;
}

.home-projects .home-project-item .content {
    transform: translateX(-50px);
    opacity: 0;
}

.home-projects .home-project-item > .image img {
    opacity: 0;
}

.home-projects .owl-item.active .home-project-item .content {
    opacity: 1;
    transform: translateX(0);
}

.home-projects .owl-item.active .home-project-item > .image img {
    opacity: 1;
}

.home-projects .home-project-item .location .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 25px;
    font-weight: bolder;
}

.home-projects .home-project-item .location .title > i {
    color: var(--blue);
    margin-right: 10px;
}

.home-projects .home-project-item .status,
.home-projects .home-project-item .video,
.home-projects .home-project-item .location {
    margin: 10px 0;
}

.home-projects .home-project-item .location .value {
    margin: 0;
}

.home-projects .home-project-item .status .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 25px;
    font-weight: bolder;
}

.home-projects .home-project-item .status .value {
    margin: 0;
}

.home-projects .home-project-item .video .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 25px;
    font-weight: bolder;
}

.home-projects .home-project-item .video .title > i {
    color: var(--blue);
    margin-right: 10px;
}

.home-projects .home-project-item .status i {
    color: var(--blue);
    margin-right: 10px;
}

.home-projects .home-project-item .title {
    text-transform: uppercase;
}

.home-projects .home-project-item .play {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #4e4e4e;
    width: 120px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    padding: 10px 20px;
}


.home-projects .home-project-item .play:Hover {
    background: #1f1f1f;
}

.home-projects .owl-nav {
    position: absolute;
    right: 20px;
    bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-projects .owl-nav i {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid whitesmoke;
    transition: 300ms;
    margin-right: 10px;
    color: #fff;
}

.home-projects .owl-nav i:Hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.home-projects .owl-dots {
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.home-projects .owl-dots .owl-dot {
    display: block;
    width: 15px;
    height: 15px;
    background: #848484;
    margin: 0 5px;
    border-radius: 100%;
    transition: 300ms;
}

.home-projects .owl-dots .owl-dot.active {
    background: var(--blue);
}

.project-nav {
    background: #242424;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 99;
    transition: 300ms;
}

.project-nav.fixed-nav {
    position: fixed;
    bottom: unset;
    top: 0;
}

.project-nav.fixed-nav nav {
    height: 80px;
}

.project-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.project-nav nav a {
    display: block;
    padding: 20px 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bolder;
    transition: 300ms;
    font-size: 14px;
}

.project-nav nav a:Hover {
    background: var(--blue);
}

#about .logo {
    text-align: center;
    margin: 60px 0;
}

#about .logo img {
    max-width: 600px;
}

.project-detail-page .section-title {
    font-size: 45px;
    font-weight: bolder;
    text-align: center;
    letter-spacing: -2px;
}

.project-detail-page .category {
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: 3px;
}

.project-detail-page .entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 50px 200px;
    position: relative;
}

.project-detail-page .entry > .page-entry {
    width: 50%;
    padding-right: 50px;
    position: relative;
}

.project-detail-page .entry > .page-entry p {
    letter-spacing: 1px;
}

.project-detail-page .entry > .technical {
    width: 50%;
    background: #efefef;
    padding: 30px;
}

.remove-limited {
    border: 0;
    background: transparent;
    font-weight: 600;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    text-align: left;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: 300ms;
    background: linear-gradient(0, #fff 50%, transparent);
    color: #008cd1;
}

.main-video {
    position: relative;
    margin-top: 100px;
}

.main-video video{
    width: 100%;
    object-fit: cover;
    height: calc(100vh - 200px);
}

#gallery .item a {
    display: block;
    overflow: hidden;
}

#gallery .item:Hover img{
    transform: scale(1.1);
    filter: brightness(60%);
}

#gallery .item img{
    transition: 500ms;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

#video {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media (min-width: 994px) {
    .project-detail-page .entry > .technical {
        position: sticky;
        top: 90px;
    }

    .project-detail-page .entry {
        align-items: flex-start;
    }
}

.project-detail-page .entry > .technical ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-detail-page .entry > .technical ul li {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.project-detail-page .entry > .technical ul li strong {
    width: 230px;
    white-space: nowrap;
}

.project-detail-page .entry > .technical ul li strong:after {
    content: ':';
    margin-right: 15px;
}

#video {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
}

#video iframe {
    width: 60%;
    display: block;
    margin: auto;
    height: 400px;
    position: relative;
}

#video .owl-nav i {
    position: absolute;
    top: calc(50% - 25px);
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 300ms;
}

#video .owl-nav .owl-prev i {
    left: 0;
}

#video .owl-nav .owl-next i {
    right: 0;
}

#video .owl-nav i:Hover {
    color: var(--blue);
}

#video .owl-nav .disabled i {
    opacity: .5;
}

#gallery {
    margin: 120px 0;
}


#gallery .main-image-wrapper {
    position: relative;
    padding: 0 50px;
}

#gallery .main-image-wrapper img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

#gallery .thumbnail-images {
    margin-top: 30px;
}


#gallery .thumbnail-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: 300ms;
    cursor: pointer;
}

#gallery .thumbnail-images img:not(.active) {
    opacity: .3;
}


#gallery .thumbnail-images img:Hover:not(.active) {
    opacity: .5;
}

#gallery .thumbnail-images .owl-nav {
    position: absolute;
    left: -60px;
    width: calc(100% + 120px);
    top: calc(50% - 25px);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gallery .thumbnail-images .owl-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    transition: 300ms;
}

#gallery .thumbnail-images .owl-nav i:Hover {
    background-color: var(--blue);
    color: #fff;
}

#gallery .thumbnail-images .owl-nav .disabled i {
    opacity: .2;
    cursor: no-drop;
}

#location {
    margin: 100px 0;
}

.project-location {
    text-align: center;
}

#location iframe {
    width: 100%;
    height: 600px;
}

#location {
    margin: 150px 0 100px 0;
}

.project-detail-page #video {
    margin-top: 20px;
}

.project-detail-page #about {
    margin-bottom: 60px;
}

.project-location {
    text-align: center;
}

#location iframe {
    width: 100%;
    height: 600px;
}

#request {
    margin-bottom: 50px;
}

.project-detail-page .get-request-form {
    max-width: 540px;
    margin: auto;
    text-align: center;
}

.project-detail-page .get-request-form .body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

}

.project-detail-page .get-request-form .body .input {
    width: calc(50% - 10px);
    border-bottom: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.project-detail-page .get-request-form .body .input input {
    border: 0;
    width: 100%;
}

.project-detail-page .get-request-form .body .input input:focus + i {
    color: var(--blue);
    opacity: 1;
}

.project-detail-page .get-request-form .body .input i {
    opacity: .5;
    transition: 300ms;
}


.project-detail-page .get-request-form .buttons {
    text-align: center;
    padding: 30px 0;
}

.project-detail-page .get-request-form .buttons button {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 300;
    border: 0;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    transition: 300ms;
}

.project-detail-page .get-request-form .buttons button:Hover {
    background: var(--blue);
}

/*
LAST EDITS END
 */

.fixed-wp {
    display: none;
}

.mobile-menu-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #3c3c3c;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 11;
}

.mobile-menu-bar a {
    color: #fff;
    display: flex;
    align-items: center;
    width: 33%;
}

.mobile-menu-bar .projects {
    justify-content: flex-start;
}

.mobile-menu-bar .projects > i {
    margin-right: 5px;
}

.mobile-menu-bar .contacts {
    justify-content: flex-end;
}

.mobile-menu-bar .contacts > i {
    margin-left: 5px;
}

.mobile-menu-bar a.call-us i {
    background: var(--blue);
    font-size: 25px;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -10px;
    left: calc(50% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.mobile-menu-bar a.call-us {
    position: relative;
}

.mobile-menu-bar a.call-us i:After {
    content: '';
    position: absolute;
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: #008cd1;
    z-index: -1;
    border-radius: 100%;
    transition: 300ms;
    animation-name: callUs;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

@keyframes callUs {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* slider */
.main-slider .slider-item {
    overflow: hidden;
}

.main-slider .slider-item .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 250px;
    color: #fff;
    transition: 2000ms;
    transform: translateX(100px);
    opacity: 0;
}

.main-slider .owl-item.active .slider-item .content {
    transform: translateX(0);
    opacity: 1;
}

.main-slider .slider-item:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(0, 140, 209);
    background: linear-gradient(90deg, rgba(0, 140, 209, 0.5) 0%, rgba(0, 140, 209, 0) 50%);
    transition: 1500ms;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.main-slider .slider-item .content .title {
    font-size: 35px;
    display: block;
    max-width: 50%;
    font-weight: bolder;
}

.main-slider .slider-item .content .sup-title {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-slider .slider-item .content .slider-link {
    border: 1px solid #fff;
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    transition: 300ms;
    margin-top: 30px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.main-slider .slider-item .content .slider-link:Hover {
    background-color: #fff;
    color: var(--blue);
}

@media (min-width: 992px){
    .main-slider .slider-item .content {
        justify-content: flex-end;
        padding-bottom: 190px !important;
    }
}

/* slider end*/

#sync1 {
    padding: 40px 150px 0 150px;
    position: relative;
}

#sync1 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

#sync1 .owl-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--blue);
    position: absolute;
    top: calc(50% - 25px);
    transition: 300ms;
    color: var(--blue);
}

#sync1 .owl-nav .owl-prev i {
    left: 180px;
}

#sync1 .owl-nav .owl-next i {
    right: 180px;
}

#sync1 .owl-nav .owl-prev .disabled i {
    opacity: .1;
}

#sync1 .owl-nav i:Hover {
    background: var(--blue);
    color: #fff;
}

#sync2 {
    position: relative;
    padding: 0 100px;
}

#sync2 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: 300ms;
    filter: brightness(60%);
}

#sync2 .current img {
    filter: brightness(100%);
}

#sync2 .owl-nav {
    position: absolute;
    z-index: -1;
    left: 0;
    top: calc(50% - 25px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#sync2 .owl-nav i {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid #a4a4a4;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    color: #a4a4a4;
}

#sync2 .owl-nav i:Hover {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}

#sync2 .owl-nav .disabled i {
    opacity: .1;
}

.main-about .about-container .image {
    position: relative;
}

.main-about .about-container .image .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.main-about .about-container .image .content .year {
    font-size: 125px;
    font-weight: bolder;
}

.main-about .about-container .image .content .year-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-about .about-container .image .content:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transition: 1200ms;
    height: 0;
    width: 0;
    opacity: 0;
}

.main-about .about-container .image .content:before {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: 1200ms;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 0;
    width: 0;
    opacity: 0;
}

.main-about .about-container .image.wowed .content:after,
.main-about .about-container .image.wowed .content:before {
    width: 30%;
    height: 30%;
    opacity: 1;
}

.home-projects-cover {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 800px;
}

.home-projects-cover img {
    width: 100%;
    filter: blur(3px);
    opacity: .2;
    height: 1000px;
    object-fit: cover;
}

.project-nav nav a:last-child {
    color: #fff;
    background-color: var(--blue);
}

.project-nav nav a:last-child:Hover {
    box-shadow: 0 0 12px #008cd1;
}

.project-detail-page .downloads {
    list-style: none;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
}

.project-detail-page .downloads li a {
    padding: 5px 10px;
    margin-right: 5px;
    border: 1px solid #fff;
    color: #fff;
    transition: 300ms;
    display: block;
}

.project-detail-page .downloads li a:before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-right: 10px;
}

.project-detail-page .downloads li a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

section.page.project-detail-page {
    margin-top: 100px;
}

#homeSlider .owl-nav .disabled i {
    opacity: .1;
}

#concept table {
    min-width: 100% !important;
}

.fixed-warning {
    position: fixed;
    width: 350px;
    max-width: 100%;
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.fixed-warning .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}

.fixed-warning .buttons a {
    transition: 300ms;
    padding: 10px;
    font-weight: 600;
}

.fixed-warning .buttons a:first-child {
    border: 1px solid #008cd1;
    color: #008cd1;
    margin-right: 10px;
}

.fixed-warning .buttons a:first-child:Hover {
    background-color: #008cd1;
    color: #fff;
}

.fixed-warning .buttons a:last-child {
    background-color: #24a100;
    color: #fff;
    border: 1px solid transparent;
}

.fixed-warning .buttons a:last-child:hover {
    background-color: #0b3300;
}

.main-header .languages {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.main-header .languages > .active {
    font-weight: 500;
    transition: 300ms;
    padding: 10px 0;
}

.main-header .languages:Hover > .active {
    color: #008dd2;
}

.main-header .languages > .active:After {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
    transition: 300ms;
}

.main-header .languages .list {
    position: absolute;
    right: 0;
    top: 100%;
    list-style: none;
    background: #fff;
    padding: 0;
    margin: 0;
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-header .languages .list > li > a {
    display: flex;
    color: #000;
    padding: 5px 10px;
    transition: 300ms;
    border-bottom: 1px solid #ddd;
}

.main-header .languages .list > li > a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
    margin-right: 15px;
}

.main-header .languages .list > li:Hover > a {
    color: #008dd2;
}

.main-header .languages:Hover > .list {
    opacity: 1;
    visibility: visible;
}

.companies {
    margin: 80px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.companies > .company {
    border: 1px solid #ddd;
    width: calc(33% - 30px);
    margin: 40px 15px;
    text-align: center;
    position: relative;
    transition: 300ms;
}

.companies > .company > .logo {
    background: #fff;
    border: 1px solid #ddd;
    width: 70%;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    margin: -30px auto 30px auto;
    transition: 300ms;
}

.companies > .company .summary {
    padding: 0 30px;
}

.companies > .company .title {
    display: block;
    font-size: 25px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 300ms;
}

.companies > .company:Hover .title {
    color: var(--blue);
}

.companies > .company:Hover .logo,
.companies > .company:Hover {
    border-color: var(--blue);
}

.companies > .company:Hover .logo {
    transform: translateY(-10px);
}

.companies > .company .site-link {
    margin-bottom: -10px;
    transform: translateY(10px);
}

.companies > .company:Hover .site-link {
    transform: translateY(20px);
}

.company-details .logo {
    margin-bottom: 30px;
}

.companies > .company > .logo img,
.company-details .logo img{
    max-height: 70px;
}

.project-videos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
}

.project-videos > .item {
    width: calc(50% - 30px);
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.project-videos > .item iframe {
    width: 100% !important;
    aspect-ratio: 16/9;
    height: unset !important;
}

#gallery .gallery-category:not(.active) {
    display: none;
}

#gallery .album-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

#gallery .album-nav > button{
    transition: 300ms;
    color: #000;
    background: #dfdfdf;
    border: 0;
    padding: 5px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
}

#gallery .album-nav > button > .counter{
    background: #a0a0a0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    line-height: 1;
    display: flex;
    transition: 300ms;
}

#gallery .album-nav > button.active,
#gallery .album-nav > button:Hover{
    background: var(--blue);
    color: #fff;
}

#gallery .album-nav > button.active > .counter,
#gallery .album-nav > button:Hover > .counter{
    background: #000;
}

h3.album-category-title {
    margin-bottom: 20px;
    font-weight: 600;
}

#gallery .owl-nav i {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: 100ms;
    top: calc(50% - 25px);
}

#gallery .owl-nav .owl-prev i {
    left: 30px;
}

#gallery .owl-nav .owl-next i {
    right: 30px;
}

#gallery .owl-nav button:not(.disabled) i:Hover {
    background: var(--yellow);
    color: #000;
}

#gallery .owl-nav .disabled i {
    opacity: .1;
}

#gallery .owl-nav {
    padding-top: 10px;
    column-gap: 10px;
    display: flex;
    justify-content: center;
}

#gallery .owl-nav i {
    position: unset;
    width: 40px;
    height: 40px;
}

#gallery .owl-nav .disabled i {
    opacity: 1;
}

@media (max-width: 992px) {
    .main-video {
        margin-top: 75px;
    }
    
    .main-video video {
        height: unset;
        aspect-ratio: 1;
        border-radius: 0 0 15px 15px;
    }
    
    .mobile-menu-bar {
        display: flex;
    }
    
    .project-videos > .item{
        width: 100%;
        margin: 30px 0;
    }

    #video .owl-nav i {
        top: calc(100% - 50px);
    }

    #app {
        overflow: hidden;
        max-width: 100%;
    }

    .mobileMenu {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        height: 40px;
        width: 40px;
        background: transparent;
        color: var(--blue);
    }

    .main-slider {
        padding: 70px 0 0 0;
    }

    .main-header.fixed-bar {
        margin-top: 0 !important;
    }

    .main-header .header-bar {
        display: none;
    }

    .main-header .logo-bar .logo-container {
        padding: 5px 0;
        width: 100%;
    }

    .main-header.fixed-bar {
        padding: 0 10px;
    }

    .main-header.fixed-bar .mobileMenu {
        color: var(--blue);
    }

    .main-header .logo-bar .logo-container .menu,
    .main-header .logo-bar .logo-container > .socials {
        display: none;
    }

    .main-header .logo-bar .logo-container .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header .logo-bar .logo-container .logo img {
        width: 180px;
    }

    .main-slider .slider-item {
        height: 400px;
    }

    .main-slider .slider-box .title {
        font-size: 20px;
        max-width: 100%;
    }

    .main-slider .slider-box .description {
        display: none;
    }

    .main-slider .slider-box {
        padding-bottom: 30px;
    }

    .main-header {
        padding: 10px;
    }

    .slider-widgets {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .slider-widgets .widget {
        width: calc(50% - 10px);
        margin: 5px;
        padding: 15px 20px;
    }

    .slider-widgets .widget .count {
        font-size: 20px;
    }

    .slider-widgets .widget .title {
        font-size: 14px;
        white-space: nowrap;
    }

    .slider-widgets .widget img {
        width: 50px;
        height: 50px;
    }

    .main-projects {
        margin: 60px 0;
        padding: 0;
    }

    .main-projects .section-header {
        flex-direction: column;
    }

    .main-projects .section-header > div {
        width: 100%;
    }

    .main-about .about-container {
        flex-direction: column;
    }


    .main-about .about-container > div {
        width: 100%;
        height: unset !important;
        margin-bottom: 20px;
    }

    .main-about .about-container .text .content .title {
        font-size: 25px;
    }

    .main-about .about-container .text .content .sup-title {
        font-size: 11px !important;
    }

    .main-articles {
        margin: 60px 0;
        padding-top: 30px;
    }

    .main-articles .section-header h2 {
        font-size: 25px;
    }

    .main-articles .section-header {
        flex-direction: column;
        overflow: unset;
    }

    .main-articles .section-header > div {
        width: 100%;
        margin-bottom: 20px;
    }

    .articles-container {
        flex-direction: column;
    }

    .articles-container .article {
        width: 100%;
        margin: 15px 0;
    }

    .main-footer .footer-request {
        flex-direction: column;
        padding: 20px;
    }

    .main-footer .footer-request > div {
        width: 100%;
    }

    .main-footer .footer-request .text {
        border-right: 0;
        border-bottom: 2px solid #fff;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .main-footer .footer-request .form .body {
        flex-direction: column;
    }

    .main-footer .footer-request .form .body input {
        width: 100%;
    }

    .main-footer .footer-request .form .buttons {
        flex-direction: column-reverse;
    }

    .main-footer .footer-request .form .buttons > a {
        width: 100%;
    }

    .main-footer .footer-request .form .buttons button {
        width: 100%;
        margin-bottom: 20px;
    }

    .main-footer .footer-request .form .buttons button {
        width: 100%;
    }

    .main-footer .footer-container {
        flex-wrap: wrap;
    }

    .main-footer .footer-container aside {
        width: 100%;
        margin-bottom: 20px;
    }

    .main-footer .footer-container aside:nth-child(2), .main-footer .footer-container aside:nth-child(3) {
        padding: 0;
    }

    .main-footer .copyright .copyright-container {
        flex-direction: column;
        margin-top: 20px;
        text-align: center;
    }

    .menu-wrapper {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        background-color: var(--blue);
        width: 100%;
        height: 100%;
        transition: 300ms;
        padding: 20px;
        overflow: scroll;
        justify-content: space-between;
        transform: translateX(50px);
        opacity: 0;
        visibility: hidden;
    }

    .menu-wrapper .wrapper-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .menu-wrapper .languages ul {
        list-style: none;
        padding: 0;
        margin: 15px 0;
    }

    .menu-wrapper .languages ul li a {
        color: #fff;
        font-size: 14px;
    }

    .menu-wrapper .languages ul li.active a {
        font-weight: bolder;
    }

    .menu-wrapper .languages ul li a img {
        margin-right: 10px;
    }

    .menu-wrapper .wrapper-header .mobileMenu {
        color: #fff;
    }

    .menu-wrapper .socials {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrapper .socials a {
        color: #fff;
        font-size: 20px;
        margin: 0 10px;
    }

    .menu-wrapper .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .menu-wrapper .menu ul > li > a {
        color: #fff;
        font-size: 25px;
        display: block;
        font-weight: 600;
        margin: 5px 0;
    }

    .menu-wrapper .menu ul > li > ul {
        display: none;
    }

    .open-mobile-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .page-container {
        flex-direction: column-reverse;
    }

    .page-container .app-sidebar {
        width: 100%;
        margin-top: 30px;
    }

    .page-container .app-content {
        width: 100%;
        padding-left: 0;
    }

    .breadcrumb {
        padding: 100px 0 50px 0;
    }

    .breadcrumb .page-title {
        font-size: 16px;
    }

    .breadcrumb ul {
        font-size: 11px;
        flex-wrap: wrap;
    }

    .page-images .image {
        width: 50%;
    }

    .page-images .image img {
        height: 150px;
    }

    .project-categories-page .section-header h2 {
        font-size: 25px;
    }

    .project-categories-page .section-header p {
        max-width: 100%;
    }

    .project-categories-page .featured-projects .project {
        width: 100%;
        margin: 15px 0;
    }

    .project-categories-page .featured-projects {
        flex-wrap: wrap;
    }

    .project-categories-page .category-projects .project {
        width: 100%;
        margin: 15px 0;
    }

    .project-categories-page .category .section-header {
        flex-wrap: wrap;
    }

    .project-categories-page .category .section-header h3 {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .project-categories-page .category .section-header:after {
        content: none;
    }

    .project-detail-page .project-cover img {
        height: 400px;
    }

    .project-detail-page .project-header {
        padding: 15px;
        flex-wrap: wrap;
        height: unset;
    }

    .project-detail-page .project-header > div {
        width: 100%;
    }

    .project-detail-page .project-header .title p {
        margin-bottom: 20px;
    }

    .project-detail-page .project-body {
        padding: 15px;
    }

    .project-detail-page .project-images a {
        width: 50%;
    }

    .project-detail-page .project-images > a > img {
        height: 100px;
    }

    .project-detail-page .technical ul li {
        width: 100%;
        margin: 5px 0;
    }

    .media-center-container .media-item {
        width: 100%;
        margin: 10px 0;
    }

    .articles-page .articles-container .article {
        width: 100%;
    }

    .galleries-container .image {
        width: 50%;
    }

    .galleries-container .image img {
        height: 100px;
    }

    .videos-container .video {
        width: 100%;
        margin: 15px 0;
    }

    .files-container .file {
        flex-wrap: wrap;
    }

    .files-container .file .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .files-container .file .size {
        text-align: left;
    }

    .files-container .file .size,
    .files-container .file .download {
        width: 100%;
    }

    .contact-form .input:nth-child(2), .contact-form .input:nth-child(3) {
        width: 100%;
    }

    .main-projects .slider {
        height: 500px;
    }

    .contact-boxes .contact-box {
        width: 100%;
        margin: 15px 0;
    }

    .contact-page .media-bar {
        flex-direction: column;
        margin: 25px 0;
    }

    .contact-page .media-bar .sahibinden {
        width: 100%;
        flex-direction: column;
        padding: 30px;
    }

    .contact-page .media-bar .socials {
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-page .media-bar .socials ul {
        margin: 0;
    }

    .contact-page .media-bar .sahibinden .title {
        margin: 20px 0;
    }

    .contact-page .form-wrapper {
        flex-direction: column;
    }

    .contact-page .form-wrapper > div {
        width: 100%;
    }

    .contact-page .form-wrapper .image {
        display: none;
    }

    .contact-page .form-wrapper .form {
        transform: translateX(0);
    }

    .main-slider .slider-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .main-projects .slider:Before {
        height: calc(100% - 120px);
    }

    .project-detail-page .project-videos .video {
        width: 100%;
        margin: 15px 0;
    }

    .project-category .project {
        width: 100%;
        margin: 15px 0;
    }

    .slider-logos img {
        height: 50px;
    }

    .home-projects .home-project-item {
        flex-direction: column-reverse;
    }

    .home-projects .home-project-item .content {
        width: 100%;
        padding: 20px;
        height: unset;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .home-projects .home-project-item .content > div {
        width: 50%;
        padding-right: 10px;
    }

    .home-projects .home-project-item > .image {
        width: 100%;
    }

    .home-projects .home-project-item > .image img {
        height: unset;
    }

    .home-projects .home-project-item > div {
        height: unset;
    }

    .main-projects .section-header .button {
        padding: 15px 0;
        text-align: center;
    }

    .main-articles .articles-container .article {
        width: 100%;
    }

    .footer-direction a {
        font-size: 20px;
    }

    .project-nav nav a {
        padding: 10px;
        font-size: 13px;
    }

    #about .logo img {
        width: 100%;
    }

    #about .logo {
        padding: 0 20px;
    }

    .project-detail-page .section-title {
        font-size: 25px;
        letter-spacing: 0;
    }

    .project-detail-page .category {
        font-size: 12px;
    }

    .project-detail-page .entry {
        padding: 15px;
        flex-direction: column-reverse;
    }

    .project-detail-page .entry > .page-entry {
        width: 100%;
        padding-right: 0;
    }

    .project-detail-page .entry > .technical {
        width: 100%;
        margin-bottom: 20px;
    }

    #video {
        padding: 20px;
    }

    #gallery .main-image-wrapper img {
        height: unset;
    }

    #gallery .thumbnail-images img {
        height: 50px;
    }

    #gallery {
        margin: 40px 0;
    }

    .project-detail-page table {
        width: 100% !important;
        max-width: 100%;
    }

    .project-detail-page table img {
        display: block;
    }

    .home-projects .home-project-item .content strong.title {
        font-size: 18px;
    }

    .home-projects .home-project-item .content .project-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .home-projects .home-project-item .video .title {
        font-size: 18px;
    }

    .home-projects .home-project-item .location .title {
        font-size: 18px;
    }

    .home-projects .home-project-item .status .title {
        font-size: 18px;
    }

    .main-projects .section-header h2 {
        font-size: 25px;
    }

    .project-detail-page .entry > .technical ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-detail-page .entry > .technical ul li strong {
        width: 100%;
        white-space: unset;
    }

    .project-detail-page .entry > .technical ul li {
        font-size: 16px;
    }

    #video iframe {
        width: 100%;
        height: 200px;
    }

    #table div {
        height: unset !important;
    }

    #table img {
        display: block;
        width: 100%;
        margin: 20px 0;
    }

    .main-slider .slider-item .content:Before {
        background: linear-gradient(20deg, rgba(0, 140, 209, 1) 0%, rgba(0, 140, 209, 0) 50%);
    }

    .main-slider .slider-item .content {
        padding: 10px 0 30px 50px;
        text-align: left;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .main-slider .slider-item .content .sup-title {
        font-size: 12px;
    }

    .main-slider .slider-item .content .title {
        font-size: 18px;
        max-width: 100%;
    }

    .main-slider .slider-item .content .slider-link {
        margin: 10px 0 0 0;
    }

    .slider-logos {
        position: unset;
        margin-top: 10px;
        padding: 0 10px;
    }

    .project-nav.fixed-nav nav {
        flex-wrap: unset;
        overflow: scroll;
        height: 60px;
    }

    .project-nav.fixed-nav {
        height: unset;
    }

    .project-nav nav a {
        white-space: nowrap;
    }

    .project-nav.fixed-nav nav {
        justify-content: flex-start;
    }

    #sync1 {
        padding: 40px 10px 0 10px;
    }

    #sync1 .owl-nav .owl-next i {
        right: 20px;
    }

    #sync1 .owl-nav i {
        width: 30px;
        height: 30px;
        top: calc(50% - 7.5px);
    }

    #sync1 .owl-nav .owl-prev i {
        left: 20px;
    }

    #sync2 img {
        height: 50px;
    }

    #sync1 img {
        height: 200px;
    }

    #sync2 .owl-nav {
        display: none;
    }


    .home-projects .home-project-item .video .title {
        font-size: 13px;
    }

    .home-projects .home-project-item .location .title {
        font-size: 13px;
    }

    .home-projects .home-project-item .status .title {
        font-size: 13px;
    }

    .home-projects .home-project-item .content .project-detail {
        font-size: 12px;
    }

    .home-projects .home-project-item .play {
        font-size: 12px;
        width: 100%;
        padding: 5px 10px;
    }

    .home-projects .home-project-item .content > .header {
        width: 100%;
        padding-right: 0;
    }

    .home-projects .home-project-item .content {
        justify-content: flex-start;
    }

    .home-projects .home-project-item .content > .status {
        width: 100%;
    }

    .home-projects .home-project-item .value {
        font-size: 13px;
    }

    .home-projects .home-project-item .location .value {
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .home-projects-cover img {
        display: none !important;
        opacity: 0;
    }

    .main-about {
        padding: 30px 0;
    }

    #sync2 {
        padding: 0;
    }

    section.page.project-detail-page {
        margin-top: 70px;
    }

    .slider-logos .logo-item {
        background-color: #00000080;
        width: calc(100% - 10px);
        margin-left: 5px;
    }

    #homeSliderLogos .owl-nav i {
        color: #000;
    }

    #homeSliderLogos .owl-nav .owl-next i {
        left: calc(100% + 10px);
    }

    #homeSliderLogos .owl-nav .owl-prev i {
        left: -20px;
    }

    #homeSliderLogos .owl-nav .disabled i {
        opacity: .1;
    }

    #homeSlider .owl-nav:not(.disabled) i {
        width: 30px;
        height: 30px;
    }

    .companies > .company {
        width: 100%;
        margin: 40px 0;
    }
}

@media (min-width: 992px) and (max-width: 1450px) {
    .main-header .logo-bar .logo-container .menu > ul > li > a {
        margin-left: 10px;
        font-size: 15px;
        padding: 5px;
    }

    .main-header .logo-bar .logo-container > .socials {
        display: none;
        width: 0;
    }

    .main-header .logo-bar .logo-container > .menu {
        width: calc(100% - 200px);
    }

    .main-header .logo-bar .logo-container > .logo {
        width: 200px;
    }

    .main-header.fixed-bar .logo-bar .logo-container > .logo img {
        margin-top: 5px;
    }

    .main-slider .slider-item .content {
        padding: 0 150px;
    }

    .main-slider .slider-item img {
        height: 700px;
    }

    .home-projects .home-project-item .content {
        padding: 0 30px;
        width: 300px;
    }

    .home-projects .home-project-item > .image {
        width: calc(100% - 300px);
    }

    .home-projects .home-project-item .content strong.title {
        font-size: 25px;
    }

    .home-projects .home-project-item .video .title {
        font-size: 18px;
    }

    .home-projects .home-project-item .location .title {
        font-size: 18px;
    }

    .home-projects .home-project-item .location .value {
        font-size: 14px;
    }

    .home-projects .home-project-item .status .title {
        font-size: 18px;
    }

    .home-projects .home-project-item .status .value {
        font-size: 14px;
    }

    .main-footer .footer-container {
        padding: 0 60px;
    }

    .footer-direction a {
        font-size: 25px;
    }

    .project-detail-page .project-cover img {
        max-height: 600px;
    }

    .project-detail-page .entry > .technical ul li {
        font-size: 14px;
    }

    #sync1 img {
        height: 500px;
    }

    #sync1 {
        padding-left: 80px;
        padding-right: 80px;
    }

    #sync1 .owl-nav .owl-prev i {
        left: 110px;
    }

    #sync1 .owl-nav .owl-next i {
        right: 110px;
    }
}

@media (max-width: 1366px) and (max-height: 900px) {
    .main-projects .section-header h2 {
        font-size: 30px;
    }

    .main-projects .section-header p {
        font-size: 11px;
    }

    .home-projects .home-project-item > .image img {
        height: 300px;
    }

    .home-projects .home-project-item > div {
        height: 300px;
    }

    .home-projects .home-project-item > .image {
        width: 100%;
    }

    .home-projects .home-project-item .content {
        width: 100%;
        padding: 20px;
    }

    .home-projects .home-project-item .content strong.title {
        font-size: 20px;
    }

    .home-projects .home-project-item .content .project-text {
        font-size: 14px;
    }

    .home-projects .home-project-item .video .title,
    .home-projects .home-project-item .location .title,
    .home-projects .home-project-item .status .title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .main-footer .logo-wrapper img {
        width: 300px;
    }

    .main-footer .footer-container {
        padding: 0 100px;
    }

    .main-footer .footer-container .logo p {
        font-size: 12px;
    }

    .main-footer .socials .title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .main-footer .footer-container .logo ul li a {
        font-size: 12px;
    }

    .main-footer .footer-container .menu ul li a {
        font-size: 12px;
    }

    .main-footer .footer-container .contacts ul li {
        font-size: 12px;
    }

    .main-footer .footer-title {
        font-size: 16px;
    }

    .main-footer .copyright .copyright-container {
        margin-top: 50px;
        padding: 15px 100px;
    }

    .project-detail-page .project-cover img {
        max-height: 500px;
    }

    #sync2 img {
        height: 100px;
    }

    #sync1 {
        padding: 5px 40px;
    }

    .project-detail-page .section-title {
        font-size: 35px;
    }

    .main-slider .slider-item .content .title {
        font-size: 16px;
        text-align: left;
        max-width: 80%;
    }

    .main-slider .slider-item .content .sup-title {
        font-size: 13px;
    }

    .main-slider .slider-item .content .slider-link {
        font-size: 12px;
    }
}
