/**
 * @author      Alayadi Digital Solutions 
 * @copyright   Copyright (c), 2022 Alayadi Digital Solutions
 * @license     MIT public license
 */


/*--------------------------------------------------------------
# Fonts include
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

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


::-webkit-scrollbar {
    width: 5px

}

::-webkit-scrollbar-track {
    background: #D1D1D1
}

::-webkit-scrollbar-thumb {
    background: #D1D1D1
}

::-webkit-scrollbar-thumb:hover {
    background: #747474
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #747474;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #F6CE30;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Segoe UI", Arial, sans-serif;
}

img {
    pointer-events: none;
}


/*--------------------------------------------------------------
# Preloder
--------------------------------------------------------------*/

.preloder {
    display: none;
}

.center-body {
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
}

.loader-circle-7 {
	position: relative;
	width: 90px;
	height: 90px;
	display: inline-block;
}
.loader-circle-7:before,
.loader-circle-7:after {
	content: "";
	display: block;
	position: absolute;
	border-width: 5px;
	border-style: solid;
	border-radius: 50%;
	width: 90px;
	height: 90px;
	border-color: #F6CE30;
	top: 0;
	left: 0;
}
.loader-circle-7:before {
	animation: loader-circle-7-scale 1s linear 0s infinite;
}
.loader-circle-7:after {
	opacity: 0;
	animation: loader-circle-7-scale 1s linear 0.5s infinite;
}
@keyframes loader-circle-7-scale {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(0.7);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

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

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5c9f24;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

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

.back-to-top:hover {
    background: #6fc02c;
    color: #fff;
}

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


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

#header {
    transition: all 0.5s;
    z-index: 997;
}

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

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}


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


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

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


/* .navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #5c9f24;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
} */


/* .navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
} */

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #F6CE30;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #5c9f24;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 22px;
    top: calc(100% + 30px);
    margin: 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;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #2a2a2a;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #5c9f24;
}

.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;
}

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

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #F6CE30;
    font-size: 40px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bx-x {
    color: #fff;
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: block;
        margin-top: 20px;
    }
    
    .mobile-nav {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.7);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 80px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 15px 20px;
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #F6CE30;
}

.navbar-mobile>ul>li {
    white-space: nowrap;
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5c9f24;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    /* background-color: rgba(17, 17, 17, 0.8); */
    overflow: hidden;
    padding: 0;
}

#hero .title {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 1px;
}

#hero .text-hero {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 200;
    padding-left: 25px;
}

.carousel-caption {
    position: absolute;
    right: 10%;
    bottom: 10%;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    z-index: 1;
    text-align: start;
}

.copyright {
    color: #fff;
    margin-top: 50px;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-color: #343a40;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.3;
}

#hero .carousel-item::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(to top, #00000080, rgb(0 0 0 / 0%));
    top: 0;
    height: 100vh;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero h2 span {
    color: #5c9f24;
}

#hero .content {
    display: none;
    position: absolute;
    top: 41%;
    left: 0;
    width: 100%;
    height: 20%;
    content: '';
    backface-visibility: hidden;
    background-image: linear-gradient(180deg, hsl(55deg 100% 50% / 0%) 0%, #343a40 80%, #343a40 150%);
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: #F6CE30;
}

.carousel-indicators {
    background-image: linear-gradient(to top, #00000090, rgb(0 0 0 / 0%));
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 0%;
    margin-bottom: 0;
    margin-left: 0%;
    list-style: none;
}

.carousel-indicators .s-1 {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    margin-top: 20px;
    margin-right: 3px;
    margin-left: -165px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .7;
    transition: opacity .6s ease;
}

.carousel-indicators .s-2 {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    margin-top: -4px;
    margin-right: 53px;
    margin-left: 50px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .7;
    transition: opacity .6s ease;
}

.carousel-indicators .s-3 {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    margin-top: 20px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .7;
    transition: opacity .6s ease;
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #5c9f24;
}

#hero .video-fluid::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(65, 0, 255, 0.4), rgba(255, 0, 232, 0.3));
}

@media (max-width: 676px) {
    #hero .video-fluid {
        min-width: 100%;
        height: 60%;
        margin-left: 50vw;
        transform: translate(-50%);
    }

    #hero .content {
        display: block;
    }
}

@media (min-width: 768px) {
    #hero .video-fluid {
        min-width: 100%;
        min-height: 100%;
        margin-left: 50vw;
        transform: translate(-50%);
    }
    
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }

    #hero .video-fluid {
        min-width: 100%;
        min-height: 100%;
    }
}


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

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #5c9f24;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content {
    padding-top: 0px;
    padding-bottom: 30px;
}

.about h1 {
    font-size: 47px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #EFEFEF;
    -webkit-text-fill-color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
}

.about h1::before {
    text-transform: uppercase;
    margin-top: 30px;
    margin-left: 60px;
    font-size: 35px;
    position: absolute;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: #F6CE30;
    -webkit-text-fill-color: #F6CE30;
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
    content: "FJ. MIMARLIK";
    font-weight: bold;
    letter-spacing: 2px;
}

.about .timeline-h {
    position: relative;
    margin-top: 60px;
}

.about .timeline-h li {
    list-style: none;
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
}

.about .time-v ul:nth-child(1) {
    color: #D1D1D1;
}

.about .timeline-h li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 50px;
    margin: 22px auto 20px auto;
    background: #D1D1D1;
    color: #D1D1D1;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

.about .timeline-h li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #747474;
    top: 25px;
    left: -50%;
    z-index: -999;
    transition: all ease-in-out .3s;
}

.about .timeline-h li:first-child:after {
    content: none;
}

.about .timeline-h li.active-tl {
    color: #747474;
}

.about .timeline-h li.active-tl:before {
    background: #F6CE30;
    color: #F6CE30;
    border: 3px solid #F6CE30;
}


/* -------- */

.about .timeline-v {
    position: relative;
    margin: 50px auto;
    padding: 40px 0;
    width: 1000px;
    box-sizing: border-box;
}

.about .timeline-v:before {
    content: '';
    position: absolute;
    left: 40%;
    top: 70px;
    width: 2px;
    height: 74%;
    background: #747474;
}

.about .timeline-v ul {
    padding: 0;
    margin: 0;
}

.about .timeline-v ul li {
    list-style: none;
    position: relative;
    width: 60%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.about .timeline-v ul li:nth-child(odd) {
    float: right;
    text-align: left;
    clear: both;
}

.about .timeline-v ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
}

.about .timeline-v ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    left: -4px;
    background: #cbcbcb;
    border-radius: 50%;
}

.about .timeline-v ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    left: -4px;
    background: #cbcbcb;
    border-radius: 50%;
}

.about .timeline-v ul li h3 {
    padding: 0;
    margin: 0;
    color: #D1D1D1;
    font-weight: 600;
}

.about .timeline-v ul li p {
    margin: 10px 0 0;
    padding: 0;
    color: #D1D1D1;
}

.about .timeline-v ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: 35px;
    color: #D1D1D1;
}

.about .timeline-v ul li:nth-child(odd) .time {
    position: absolute;
    top: 12px;
    left: -80px;
    margin: 0;
    padding: 8px 0px;
    color: #747474;
    border-radius: 18px;
}

.about .timeline-v ul li:nth-child(even) .time {
    position: absolute;
    top: 12px;
    left: -80px;
    margin: 0;
    padding: 8px 0px;
    color: #747474;
    border-radius: 18px;
}

.about .timeline-v .active:nth-child(odd):before {
    background: #F6CE30;
}

.about .timeline-v .active:nth-child(even):before {
    background: #F6CE30;
}

.about .timeline-v .active h3 {
    color: #F6CE30;
}

.about .timeline-v .active p {
    color: #747474;
}

.about .timeline-v .active .time h4 {
    color: #F6CE30;
}

@media(max-width:1000px) {
    .about .timeline-v {
        width: 100%;
    }
}

@media(max-width:766px) {
    .about .timeline-h li:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #fff;
        top: 25px;
        left: -50%;
        z-index: -999;
        transition: all ease-in-out .3s;
    }

    .about .timeline-h li {
        width: 100%;
    }

    .about .timeline-v {
        width: 100%;
        padding-bottom: 0;
    }

    .about .timeline-v:before {
        left: 20px;
        height: 78%;
        top: 25px;
    }

    .about .timeline-v ul li:nth-child(odd),
    .about .timeline-v ul li:nth-child(even) {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .about .timeline-v ul li:nth-child(odd):before,
    .about .timeline-v ul li:nth-child(even):before {
        top: -18px;
        left: 16px;
    }

    .about .timeline-v ul li:nth-child(odd) .time,
    .about .timeline-v ul li:nth-child(even) .time {
        top: -45px;
        left: 50px;
        right: inherit;
    }
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
}

.about .content p {
    margin-bottom: 0;
}

.about .content .icon-box {
    margin-top: 25px;
}

.about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #5c9f24;
}

.about .content .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.about .image {
    background: center center no-repeat;
    background-size: cover;
    min-height: 75vh;
    background-position: center;
}

.about .tram-bg {
    position: absolute;
    background: url(../img/icon/ICON-01.png) no-repeat;
    background-size: calc(150% - 100px);
    min-height: 90vh;
    width: 100%;
    filter: opacity(0.4);
    background-position: center;
}

.about .members h2 {
    margin-top: 10px;
    font-size: 60px;
    position: relative;
    color: #EFEFEF;
    top: 300px;
    font-weight: bold;
}

.about .team-title h3 {
    color: #F6CE30;
}

.about .team-title h5 {
    color: #747474;
    font-weight: 300;
}

.about .team-title h3::after {
    content: "";
    position: relative;
    display: block;
    width: 70%;
    height: 2px;
    background: #747474;
    bottom: 0;
    left: 15%;
}

.about .team-title h3::before {
    content: "";
    position: relative;
    display: block;
    width: 18px;
    border: solid 10px #F6CE30;
    border-radius: 50%;
    height: 18px;
    background-color: #F6CE30;
    bottom: 0;
    color: #F6CE30;
    top: 44px;
    left: 10%;
}

.about .members .team-top {
    margin-top: 400px;
}

@media (max-width: 1024px) {
    .about .tram-bg {
        min-height: 40vh;
    }

    .about .members .team-top {
        margin-top: 300px;
    }

    .about .members h2 {
        top: 250px;
    }
}

@media (max-width: 768px) {
    .about .tram-bg {
        min-height: 25vh;
    }
}

@media (max-width: 991px) {
    .about .image {
        text-align: center;
    }

    .about .tram-bg h2 {
        top: 200px;
    }

    .about .tram-bg {
        min-height: 45vh;
    }

    .about .members h2 {
        top: 200px;
    }

    .about .team-title h3::before {
        top: 41px;
    }

    .about .members .team-top {
        margin-top: 220px;
    }

    .about .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }

    .about .team-title h3::before {
        top: 40px;
    }

    .about .tram-bg h2 {
        top: 180px;
        font-size: 45px;
    }

    .about .tram-bg {
        min-height: 30vh;
    }
}

@media (max-width: 768px) {
    .about .image {
        min-height: 50vh;
    }
}


/*--------------------------------------------------------------
# Architecture project
--------------------------------------------------------------*/

#architecture .project h1 {
    font-size: 42px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #EFEFEF;
    -webkit-text-fill-color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
}

#architecture .project h1::before {
    text-transform: uppercase;
    margin-top: 55px;
    font-size: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -25px);
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: #F6CE30;
    -webkit-text-fill-color: #F6CE30;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
}

@media (min-width: 667px) {
    #architecture .project .sub-detail {
        margin-left: 50%;
    }
}

@media (max-width: 1000px) {
    #architecture .project .sub-detail {
        margin-left: 30%;
    }
}

@media (max-width: 667px) {
    #architecture .project .details p {
        margin-left: 10%;
    }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .intro {
    display: flex;
    width: 100%;
}

.services .left {
    width: 50%;
    height: 100%;
}

.services .left .video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(25%);
}

.services .left .content {
    background: rgba(0, 0, 0, 0.6);
    margin: auto;
    height: 100%;
    width: 50%;
    z-index: 1;
    position: fixed;
}

.services .right {
    width: 50%;
    height: 100%;
}

.services .right .content {
    background: rgba(0, 0, 0, 0.6);
    margin: auto;
    height: 100%;
    width: 50%;
    position: fixed;
}

.services .right .video {
    object-fit: cover;
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

#architecture .video {
    width: 100%;
    object-fit: cover;
    height: 75vh;
}

#architecture h1 {
    color: #F6CE30;
    margin-top: 1.5rem;
}

#architecture .nav>li>button {
    position: relative;
    margin: 0px 10px;
}

#architecture .nav>li>button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: #F6CE30;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

#architecture .nav-pills .nav-link.active::before,
#architecture .nav-pills .show>.nav-link::before {
    visibility: visible;
    width: 100%;
}

#architecture .nav-pills .nav-item .nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

#architecture .nav-pills .nav-link.active,
#architecture .nav-pills .show>.nav-link {
    color: #464545;
    background-color: initial;
}

#architecture .nav-link {
    color: #747474;
}
#architecture .architecture-bg {
    background-size: cover;
    min-height: 75vh;
    background-position: center;
}

#architecture .card {
    position: relative;
    transition: all .3s ease-in;
}

#architecture .card .card-image {
    display: block;
    width: 100%;
    height: auto;
}

#architecture .card .card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: none;
    transition: .3s ease;
    background-color: #f6ce30b3;
}

#architecture .card:hover .card-overlay {
    opacity: 1;
}

#architecture .card .overlay-text p {
    color: #3b3b3b;
    font-weight: bold;
}

#interior .video {
    width: 100%;
    object-fit: cover;
    height: 75vh;
}

#interior h1 {
    color: #F6CE30;
    margin-top: 1.5rem;
}

#interior .nav>li>button {
    position: relative;
    margin: 0px 10px;
}

#interior .nav>li>button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: #F6CE30;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

#interior .nav-pills .nav-link.active::before,
#interior .nav-pills .show>.nav-link::before {
    visibility: visible;
    width: 100%;
}

#interior .nav-pills .nav-item .nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

#interior .nav-pills .nav-link.active,
#interior .nav-pills .show>.nav-link {
    color: #464545;
    background-color: initial;
}

#interior .nav-link {
    color: #747474;
}

#interior .card {
    position: relative;
    transition: all .3s ease-in;
}

#interior .card .card-image {
    display: block;
    width: 100%;
    height: auto;
}

#interior .card .card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: none;
    transition: .3s ease;
    background-color: #f6ce30b3;
}

#interior .card:hover .card-overlay {
    opacity: 1;
}

#interior .card .overlay-text p {
    color: #3b3b3b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .services .left {
        width: 100%;
        height: 50%;
    }

    .services .left .video {
        object-fit: cover;
        width: 100vw;
        height: 50vh;
        position: fixed;
        top: 50%;
        left: 0;
        transform: translate(0%);
    }

    .services .left .content {
        background: rgba(0, 0, 0, 0.6);
        margin: auto;
        height: 50%;
        width: 100%;
        z-index: 1;
        position: fixed;
    }

    .services .right {
        width: 100%;
        height: 50%;
    }

    .services .right .content {
        background: rgba(0, 0, 0, 0.6);
        margin: auto;
        height: 50%;
        width: 100%;
        position: fixed;
        top: 50%;
        left: 0;
    }

    .services .right .video {
        object-fit: cover;
        width: 100vw;
        height: 50vh;
        position: fixed;
        top: 0;
        left: 0;
    }
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.news .news-bg {
    background: url(../img/bg-news.webp) center center no-repeat;
    background-size: cover;
    min-height: 75vh;
    background-position: center;
}

.news .nav>li>button {
    position: relative;
    margin: 0px 10px;
}

.news .nav>li>button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: #F6CE30;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.news .nav-pills .nav-link.active::before,
.news .nav-pills .show>.nav-link::before {
    visibility: visible;
    width: 100%;
}

.news .nav-pills .nav-item .nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

.news .nav-pills .nav-link.active,
.news .nav-pills .show>.nav-link {
    color: #464545;
    background-color: initial;
}

.news .nav-link {
    color: #747474;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #5c9f24;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(42, 42, 42, 0.7);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #5c9f24;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5c9f24;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
}

.team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.team .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
}

.team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    color: #5c9f24;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: #f7f7f7;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
}

.pricing .box h4 {
    font-size: 42px;
    color: #5c9f24;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #2a2a2a;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #5c9f24;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 4px;
    border: 2px solid #5c9f24;
    color: #5c9f24;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .box .btn-buy:hover {
    background: #5c9f24;
    color: #fff;
}

.pricing .recommended {
    background: #5c9f24;
}

.pricing .recommended h3,
.pricing .recommended h4,
.pricing .recommended h4 span,
.pricing .recommended ul,
.pricing .recommended ul .na {
    color: #fff;
}

.pricing .recommended .btn-buy {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.pricing .recommended .btn-buy:hover {
    background: #fff;
    border-color: #fff;
    color: #5c9f24;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #9cdc66;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #5c9f24;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-bg {
    background: url(../img/bg-contact.webp) center center no-repeat;
    background-size: cover;
    min-height: 75vh;
    background-position: center;
}

.contact h1 {
    font-size: 50px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #EFEFEF;
    -webkit-text-fill-color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
}

.contact h1::before {
    text-transform: uppercase;
    margin-top: 35px;
    margin-left: 45px;
    font-size: 35px;
    position: absolute;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: #F6CE30;
    -webkit-text-fill-color: #F6CE30;
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
    content: "CONTACT US";
    font-weight: bold;
}

.contact .form {
    margin-top: 80px;
    border: solid 1px #747474;
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 3px;
}

.contact .form::before {
    content: "";
    position: relative;
    display: block;
    width: 25px;
    border-radius: 50%;
    height: 25px;
    background-color: #F6CE30;
    bottom: 0;
    color: #F6CE30;
    top: -15px;
    left: 50%;
}

.contact .form input {
    padding: 10px;
    border: none;
    border-radius: 0px;
    border-bottom: solid 1px #747474;
}

.contact .form input:focus {
    box-shadow: none;
    border-bottom: solid 2px #F6CE30;
}

.contact .form textarea {
    padding: 10px;
    border: none;
    border-radius: 0px;
    margin-bottom: 20px;
}

.contact .form textarea:focus {
    box-shadow: none;
    border-bottom: solid 2px #F6CE30;
}

.contact .form button[type=submit] {
    background: #F6CE30;
    position: relative;
    border: 0;
    top: 25px;
    padding: 10px 40px 10px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .form button[type=submit]:focus,
.contact .form button[type=submit]:hover {
    background: #cfad26;
}

.contact .map {
    border-top: solid 4px #F6CE30;
    border-bottom: solid 4px #F6CE30;
}

.contact .contact-info p {
    margin-bottom: 0;
    color: #74747490;
}

.contact .contact-info .line {
    margin: 0 0 15px 0;
    border-top: 1px solid #747474;
    width: 100px;
}

.contact .contact-info p a {
    margin-bottom: 0;
    color: #74747490;
}

.contact .contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #747474;
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
    padding: 20px 0;
}

@media (min-width: 768px) {

    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .contact .contact-bg {
        min-height: 45vh;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f6f6f6;
    min-height: 40px;
    margin-top: 80px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #444444;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}


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

#footer {
    background: #111111;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #1d1d1d;
    border-bottom: 1px solid #2f2f2f;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #5c9f24;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #8ed851;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #81d33d;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #5c9f24;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #6ab82a;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.footer-bg {
    background-image: linear-gradient(to top, #000000d1, rgb(0 0 0 / 0%));
}