@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

*,
*:before,
*:after {
    position: relative;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    color: #ffffffb8;
}

img{
    max-width: 100%;
}


/* Header */
.header {
    width: 100%;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.fixed {
    padding: 20px 0;
    padding-left: 50px;
    padding-right: 50px;

    background-color: black;
    border-bottom: 1px solid #ffffff30;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.6s;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

#scroll-down-animation {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}
.mouse {
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    border: 1px solid #fff;
    height: 60px;
    width: 38px;
    position: relative;
    z-index: 2;
}

.move {
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-20%);
    animation: move 2s linear infinite;
}

.scroll-down{
    font-size: 16px;
    color: white;
    z-index: 2;
    font-weight: 200;
}

@keyframes move {
    0% {
        transform: translate(-50%,5px);
        opacity: 0;
    }
    50% {
        transform: translate(-50%,20px);
        opacity: 1;
    }
    100% {
        transform: translate(-50%,50px);
        opacity: 0;
    }
}

@media (max-width: 1600px){
    .mouse {
        height: 50px;
        width: 30px;
    }
    .scroll-down {
        font-size: 14px;
    }
    .move {
        height: 7px;
        width: 7px;
    }
    @keyframes move {
        0% {
            transform: translate(-50%,5px);
            opacity: 0;
        }
        50% {
            transform: translate(-50%,20px);
            opacity: 1;
        }
        100% {
            transform: translate(-50%,40px);
            opacity: 0;
        }
    }
}

@media (max-width: 1200px){
    .mouse {
        height: 40px;
        width: 27px;
    }
    .scroll-down {
        font-size: 13px;
    }
    .move {
        height: 6px;
        width: 6px;
    }
    @keyframes move {
        0% {
            transform: translate(-50%,5px);
            opacity: 0;
        }
        50% {
            transform: translate(-50%,20px);
            opacity: 1;
        }
        100% {
            transform: translate(-50%,30px);
            opacity: 0;
        }
    }
}

@media (max-width: 950px) {
    .hide-pl {
        display: none;
    }
}

@media (max-width: 700px) {
    .header {
        padding-top: 20px;
    }
}

/* Nav */
.header-nav {
    display: flex;
    flex-direction: row;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .menu-item a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
    margin: 0 30px 0 0;
    padding: 11px 15px;
}

.header-nav .menu-item:last-child a {
    margin: 0;
}

.header-nav .menu-item a:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: all .3s linear;
}

.header-nav .menu-item a:hover:after,
.menu-item.current-menu-item a:after {
    opacity: 1;
}

.header-nav .menu-item.current-menu-item a {
    color: #ffffff;
}

.header-nav .menu-item a[href^="tel:"] {
    border: 1px solid #ffffff91;
    padding: 10px 15px;
    transition: all 0.3s linear;
}

.header-nav .menu-item a[href^="tel:"]:after{
    display: none;
}

.header-nav .menu-item a[href^="tel:"]:hover {
    background-color: white;
    color: black;
}

.text-black{
    color: #000!important;
}

.text-gold{
    color: #ca9330;
}

.text-white{
    color: #fff!important;
    text-decoration: none;
    width: fit-content;
}

/* Nav toggle */
.nav-toggle {
    width: 25px;
    padding: 16px 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(2px, -3px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(2px, 3px, 0);
}

@media (max-width: 1600px) {
    .header__logo {
        font-size: 25px;
    }
    .nav {
        font-size: 14px;
        text-transform: uppercase;
    }
    .header.fixed {
        padding: 15px 50px;
    }
}

@media (max-width: 1400px) {
    .header__logo {
        font-size: 20px;
    }
    .nav {
        font-size: 13px;
        text-transform: uppercase;
    }
}

@media (max-width: 1200px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
    .header__logo {
        font-size: 18px;
    }
    .header.fixed {
        padding: 10px 40px;
    }
}

@media (max-width: 990px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
}
@media (max-width: 850px) {
    .nav-toggle__item:before, .nav-toggle__item:after {
        height: 2px;
    }
    .nav-toggle__item {
        height: 2px;
    }
    .nav-toggle {
        top: -3px;
    }
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000000;
    }

    .nav.active {
        display: block;
        top: 47px;
        left: -40px;
        padding: 30px;
        width: calc(100% + 80px);
        animation: show-menu 1s forwards;
    }
    @keyframes show-menu {
        from {
            display: none;
            opacity: 0;
        }
        to {
            display: block;
            opacity: 1;
        }
	}
	
	.header-nav .menu-item a {
		display: block;
		margin: 0;
		font-size: 14px;
		padding: 20px 30px;
		text-transform: uppercase;
		width: 100%;
		text-align: center;
    }
	.header-nav .menu-item a:after {
        width: 20%;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 80%;
    }
    .nav-toggle {
        display: block;
    }
	
    .header-nav .menu-item a[href^="tel:"],
    .nav-phone {
        padding: 10px 15px!important;
        margin-top: 10px!important;
    }
    .header.fixed {
        padding: 20px 40px;
    }
}
@media (max-width: 700px) {
    .header.fixed {
        padding: 20px;
    }
    .nav-toggle {
        right: 0;
    }
    .nav.active {
        padding: 5px 30px 30px 30px;
    }
}

/*page*/
.page-wrapper {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    background-color: white;
}

.container {
    max-width: 1800px;
    padding: 0 40px;
    margin: 0 auto;
}

.intro-section {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.black-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #111;
    opacity: 0.8;
}

.header__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.intro-box{
    text-align: center;
    z-index: 2;
}

.logo-intro{
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.logo-intro img{
    max-width: 100%;
    height: auto;
}

.intro-title{
    font-size: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 25px;
    line-height: 1.3;
    margin: 60px 0 0 0;
}

#bg-video {
    position: fixed;
    margin: 0 auto;
    bottom: 0;
    min-width: 100%;
    min-height: 100vh;
    z-index: 0;
}

@media (max-width: 1600px){
    .logo-intro {
        width: 150px;
        height: 150px;
    }
    .intro-title {
        font-size: 40px;
    }
}

@media (max-width: 1200px){
    .logo-intro {
        width: 130px;
        height: 130px;
    }
    .intro-title {
        font-size: 35px;
    }
}

@media (max-width: 1050px){
    .logo-intro {
        width: 110px;
        height: 110px;
    }
    .intro-title {
        font-size: 30px;
        margin: 40px 0 0 0;
    }
}

@media (max-width: 950px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 700px){
    .intro-section {
        min-height: calc(100vh - 70px);
    }
    .container {
        padding: 0 20px;
    }
    .intro-title {
        font-size: 20px;
        letter-spacing: 10px;
    }
    #bg-video {
        height: 100vh;
    }
}

/*projects*/
.content-section {
    --scroll-length: 1;
    height: calc(var(--scroll-length) * 100vh);
    width: 100%;
    background-color: white;
}

.figure {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.figure > img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 35em;
    display: grid;
    grid-template-rows: 1fr 1fr;
    color: white;
    padding: 2em;
    font-size: 2.5vmin;
}

.header-pr {
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.heading {
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    opacity: 1;
    opacity: calc(0.8 + var(--viewport-y));
}

.paragraph {
    grid-row: 2/3;
    line-height: 1.5;
}

.paragraph p{
    font-weight: 200;
    font-size: 15px;
    opacity: 1;
    opacity: calc(0.8 + var(--viewport-y));
}

.project-cta{
    color: white;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #ffffff57;
    padding: 20px 40px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 200;
    transition: all 0.3s ease-in;
    opacity: 1;
    opacity: calc(1 + var(--viewport-y));
    margin-top: 50px;
    display: block;
    width: fit-content;
    background-color: transparent;
}

.project-cta:hover{
    color: black;
    background-color: white;
}

.black-sta{
    color: black !important;
    border: 1px solid black !important;
    font-weight: 400;
}

.black-sta:hover{
    color: white!important;
    background-color: black!important;
}

@media (max-width: 1600px) {
    .heading {
        font-size: 35px;
    }
    .paragraph p {
        font-size: 14px;
    }
    .project-cta {
        padding: 18px 35px;
        font-size: 11px;
        margin-top: 40px;
    }
}

@media (max-width: 1200px) {
    .heading {
        font-size: 27px;
    }
    .paragraph p {
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .heading {
        font-size: 25px;
    }
    .paragraph p {
        font-size: 11px;
    }
}

@media (max-width: 950px) {
    .content-section {
        height: calc(var(--scroll-length) * 56vh);
    }
    .figure {
        height: 56vh;
    }
    .figure > img {
        object-position: 60% 50%;
    }
}

@media (max-width: 700px) {
    .heading {
        font-size: 20px;
    }
    .paragraph p {
        font-size: 10px;
    }
}

/* ---------------------------------- */
.figure {
    --scale: calc(.8 + (.21 * var(--scroll-length) * var(--visible-y)));
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    display: block;
    overflow: hidden;
    will-change: transform;
    transform: scale(var(--scale));
}

.figure:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000c2;
    opacity: calc(var(--visible-y));
}

.figure > img {
    display: block;
    will-change: transform;
    transform: scale(calc(1 / var(--scale)));
}

/* ---------------------------------- */
.char {
    display: inline-block;
    opacity: calc(1 + ((var(--viewport-y) * 1.5) - var(--char-percent)));
}

/*About*/
.about{
    background-color: black;
    padding: 150px 0;
    width: 100%;
}
.why{
    background-color: black;
    padding: 50px 0 150px 0;
    width: 100%;
    margin-top: -2px;
}

.two-fourty{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.tf-40{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.subtitle{
    color: #b5b5b5;
    font-size: 25px;
    line-height: 1;
    font-weight: 200;
    margin: 0 0 25px 0;
    letter-spacing: 15px;
}
.about-title{
    color: white;
    letter-spacing: 1px;
    display: block;
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 50px;
}
.about-desc{
    color: #ffffffb8;
    display: block;
    font-size: 16px;
    font-weight: 200;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    width: 100%;
    padding-left: 100px;
    margin-bottom: 20px;
}

@media(max-width: 1600px){
    .about {
        padding: 120px 0;
    }
    .why {
        padding: 50px 0 120px 0;
    }
    .subtitle {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    .about-title {
        font-size: 40px;
    }
    .about-desc {
        font-size: 14px;
        padding-left: 70px;
    }
}

@media(max-width: 1200px){
    .subtitle {
        font-size: 14px;
        letter-spacing: 10px;
    }
    .about-title {
        font-size: 27px;
        margin-bottom: 30px;
    }
    .about-desc {
        font-size: 12px;
        padding-left: 40px;
    }
    .project-cta {
        padding: 15px 30px;
        font-size: 9px;
        margin-top: 30px;
    }
}

@media(max-width: 1050px) {
    .why {
        padding: 0 0 120px 0;
    }
    .tf-40 {
        width: 43%;
    }
    .about-title {
        font-size: 25px;
    }
    .about-desc {
        font-size: 11px;
        padding-left: 35px;
    }
}

@media(max-width: 700px) {
    .about {
        padding: 70px 0;
    }
    .tf-40 {
        width: 100%;
    }
    .mob-m-b{
        margin-bottom: 40px;
    }
    .about-desc {
        padding-left: 20px;
    }
    .mobile-revers{
        flex-direction: column-reverse;
    }
    .why {
        padding: 0 0 70px 0;
    }
}


/****************** cases */
.cases{
    background-color: white;
    padding: 150px 0 40px 0;
}

.cases-title{
    color: black;
    letter-spacing: 1px;
    display: block;
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    max-width: 50%;
    margin-bottom: 20px;
}
.cases-title:after{

    position: absolute;
    bottom: -15px;
    left: 0;
    height: 3px;
    background-color: black;
    width: 70%;
}

.cases-desc{
    color: black;
    font-size: 16px;
    font-weight: 200;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    padding-left: 100px;
    margin-top: 60px;
}

@media (max-width: 1600px) {
    .cases {
        padding: 120px 0 40px 0;
    }
    .cases-title {
        font-size: 40px;
    }
    .cases-desc {
        font-size: 13px;
        padding-left: 70px;
        margin-top: 50px;
    }
}
@media (max-width: 1200px){
    .cases-title {
        font-size: 27px;
        margin-bottom: 15px;
    }
    .cases-desc {
        font-size: 12px;
        padding-left: 40px;
        margin-top: 30px;
    }
}

@media (max-width: 1050px){
    .cases-title {
        font-size: 27px;
    }
    .cases-desc {
        font-size: 11px;
    }
}

@media (max-width: 950px) {
    .cases {
        padding: 100px 0 40px 0;
    }
    .cases-title {
        max-width: 70%;
    }
}

@media (max-width: 700px) {
    .cases {
        padding: 60px 0 40px 0;
    }
    .cases-title {
        font-size: 20px;
        max-width: 100%;
    }
    .cases-desc {
        padding-left: 25px;
        margin-top: 25px;
    }
}


/*pre-footer*/
.wpcf7-not-valid-tip
{
    color: #ee2323;
}

.pre-footer {
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image: linear-gradient(194deg, rgba(13,13,13,0.929) 0%, rgba(13,13,13,0.969) 95%), url(../images/footer.svg?v=8fa4c094);
    background-position: center;
    background-size: cover;
    padding: 50px;
}

.pre-footer .screen-reader-response {
    display: none;
}

.pre-footer-box{
    margin: 0 0 0 auto;
    width: 55%;
    margin-right: 10%;
}

.logo-prefooter {
    width: 200px;
    height: 200px;
}

.pre-footer-title{
    color: white;
    font-size: 30px;
    text-align: left;
    font-weight: 100;
    margin-top: 100px;
}

.form {
    border-radius: 0;
    display: block;
    padding: 5px 0;
    border: none;
    font-size: 25px;
    font-weight: 200;
    color: silver;
    text-decoration: none;
    letter-spacing: 0.11em;
    margin-top: 35px;
    width: 100%;
    border-bottom: 1px solid #4e4c4c;
    outline: none;
    background-color: transparent;
    font-family: "Poppins", sans-serif;
}

.form::-webkit-input-placeholder,
.form:-ms-input-placeholder,
.form:-moz-placeholder,
.form::-moz-placeholder {
    font-weight: 100;
}

.form-cta{
    margin: 40px 0 0  0;
    font-size: 20px;
    font-weight: 200;
    color: silver;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.11em;
    text-transform: none;
    padding: 17px 50px;
}

#error-msg{
    color: red;
}

@media (max-width: 1600px) {
    .logo-prefooter {
        width: 150px;
        height: 150px;
    }
    .pre-footer-title {
        font-size: 25px;
        margin-top: 70px;
    }
    .form {
        font-size: 20px;
    }
    .form-cta {
        margin: 40px 0 0 0;
        font-size: 15px;
        padding: 15px 40px;
    }
}

@media (max-width: 1200px) {
    .pre-footer {
        height: 80vh;
    }
    .form {
        height: 35px;
        font-size: 16px;
        margin-top: 15px;
    }
    .logo-prefooter {
        width: 120px;
        height: 120px;
    }
    .pre-footer-title {
        font-size: 20px;
        margin-top: 40px;
    }
    .form-cta {
        margin: 20px 0 0 0;
        font-size: 12px;
        padding: 12px 30px;
    }
}

@media (max-width: 1024px){
    .form {
        height: 35px;
        font-size: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 950px) {
    .pre-footer {
        height: 60vh;
    }
}

@media (max-width: 700px){
    .pre-footer {
        height: 75vh;
        padding: 50px 30px
    }
    .pre-footer-box {
        width: 100%;
    }
    .logo-prefooter {
        width: 70px;
        height: 70px;
    }
    .pre-footer-title {
        font-size: 18px;
    }
    .form {
        margin-top: 15px;
    }
}

/*footer*/
.site-footer{
    background-color:#000;
    padding:70px 0 20px;
    color:#ffffffb8;
    margin-top: -2px;
}
.footer-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-about{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.footer-contact{
    width: 20%;
    display: flex;
    flex-direction: column;
}
.footer-link-box{
    width: 10%;
    display: flex;
    flex-direction: column;
}

.footer-about p{
    font-size:15px;
    line-height: 1.5;
    color:#ffffffb8;
    margin: 0;
}
.site-footer hr{
    border-top-color:#bbb;
    opacity:0.5
}
.site-footer hr.small{
    margin:20px 0
}
.site-footer h6{
    color:#fff;
    font-size:16px;
    text-transform:uppercase;
    margin-top:5px;
    letter-spacing:2px
}

.site-footer .menu {
    padding-left:0;
    list-style:none;
    margin: 0;
}
.site-footer .menu li {
    display:block;
    line-height: 1.3;
    margin-bottom: 20px;
}
.site-footer .menu a {
    color:#ffffffb8;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.copyright-text {
    font-size:15px;
    line-height: 1.5;
    color:#ffffffb8;
    margin: 0 0 20px 0;
}
.copyright-text p {
	margin: 0;
}

@media (max-width:1600px){
    .footer-link-box{
        width: 12%;
    }
    .footer-about p {
        font-size: 14px;
    }
    .site-footer {
        font-size: 14px;
    }
}

@media (max-width:1400px) {
    .footer-about {
        width: 44%;
    }
    .footer-contact {
        width: 25%;
    }
    .site-footer .menu li {
        margin-bottom: 15px;
    }
    .site-footer .menu a {
        font-size: 14px;
    }
    .footer-about p {
        font-size: 13px;
    }
    .copyright-text {
        font-size: 13px;
    }
}
@media (max-width:1200px) {
    .footer-contact {
        width: 27%;
    }
    .footer-about {
        width: 47%;
    }
    .footer-link-box {
        width: 14%;
    }
    .site-footer .menu li {
        margin-bottom: 15px;
    }
    .site-footer .menu a {
        font-size: 13px;
    }
    .footer-about p {
        font-size: 12px;
    }
    .copyright-text {
        font-size: 12px;
    }
}
@media (max-width:1050px) {
    .footer-contact {
        width: 27%;
    }
    .footer-about {
        width: 47%;
    }
    .site-footer .menu li {
        margin-bottom: 15px;
    }
    .site-footer .menu a {
        font-size: 12px;
    }
    .footer-about p {
        font-size: 11px;
    }
    .copyright-text {
        font-size: 11px;
    }
}

@media (max-width:950px) {
    .footer-about {
        width: 37%;
    }
    .footer-contact {
        width: 30%;
    }
    .footer-link-box {
        width: 17%;
    }
    .site-footer h6 {
        font-size: 14px;
    }
    .footer-about p {
        font-size: 10px;
    }
}

@media (max-width:700px) {
    .footer-row {
        flex-wrap: wrap;
    }
    .footer-about, .footer-contact, .footer-link-box{
        width: 100%;
    }
}

/*about us page*/
.about-intro{
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.about-page-one{
    padding: 150px 0;
    background-color: white;
}
.about-page-two{
    padding: 150px 0;
    background-color: black;
}

.about-images{
    margin-top: 50px;
}

.about-page-desc{
    color: white;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    max-width: 850px;
    padding-left: 100px;
    margin-bottom: 10px;
}

.slider__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 100px;
    margin-top: 100px;
}

.slider__item {
    display: flex;
    flex-direction: column;
    width: 33.3%;
    margin-bottom: 50px;
    padding: 0 20px 0 0;
}

.slider__num {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.slider__num img{
    max-width: 100%;
    height: auto;
    opacity: 0.5;
}

.slider__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.slider__text p {
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    color: silver;
    margin: 0;
    text-transform: uppercase;
    margin-top: 20px;
    line-height: 1.3;
}

@media (max-width: 1600px){
    .about-page-one{
        padding: 120px 0;
    }
    .about-page-two{
        padding: 120px 0 70px 0;
    }
    .about-page-desc {
        font-size: 14px;
        padding-left: 70px;
    }
}

@media (max-width: 1200px) {
    .about-page-desc {
        font-size: 12px;
        padding-left: 70px;
    }
    .slider__num {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1050px){
    .about-page-desc {
        font-size: 11px;
        padding-left: 20px;
    }
    .slider__num {
        width: 50px;
        height: 50px;
    }
    .slider__text p {
        font-size: 12px;
    }
    .about-images {
        margin-top: 20px;
    }
}

@media (max-width: 950px) {
    .about-intro {
        min-height: 50vh;
        background-attachment: scroll;
        background-position: 30% 50%;
    }
    .slider__inner {
        padding-left: 35px;
    }
}

@media (max-width: 700px) {
    .about-page-one{
        padding: 70px 0;
    }
    .about-page-two {
        padding: 70px 0 20px 0;
    }
    .slider__item {
        width: 50%;
    }
    .slider__inner {
        padding-left: 20px;
        margin-top: 50px;
    }
    .slider__num {
        width: 40px;
        height: 40px;
    }
    .slider__text p {
        margin-top: 0;
    }
}

/***********************services*/
.services{
    background-color: white;
    padding: 50px 0 150px 0;
}

.services-box{
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    max-width: 850px;
    margin: 0 0 30px auto;
}
.services-box:last-child{
    margin: 0 0 0 auto;
}
.services-img{
    width: 380px;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: end;
}
.services-img img{
    width: 100%;
    max-width: 100%;
    height: auto;
}
.services-desc{
    width: calc(100% - 380px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px 20px 0 20px;
}
.service-name{
    font-size: 20px;
    color: black;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
}
.service-desc{
    font-size: 13px;
    font-weight: 400;
    color: #746c6c;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1400px){
    .services {
        padding: 50px 0 120px 0;
    }
    .services-box{
        max-width: 680px;
    }
    .services-img {
        width: 300px;
    }
    .services-desc {
        width: calc(100% - 300px);
    }
}

@media (max-width: 1200px) {
    .service-name {
        font-size: 18px;
    }
    .service-desc {
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .services-box {
        max-width: 600px;
    }
    .services-img {
        width: 250px;
    }
    .services-desc {
        width: calc(100% - 250px);
    }
}

@media (max-width: 700px) {
    .services {
        padding: 0 0 50px 0;
    }
    .services-box {
        max-width: 100%;
        justify-content: start;
        flex-wrap: wrap;
    }
    .services-img {
        width: 60%;
    }
    .services-desc {
        width: 100%;
        padding: 0 0 10px 0;
    }

}

/* Single Project */
.sinle-project{
    padding: 0 0 150px 0;
}
.vert-line{
    height: 300px;
    border-left: 5px solid black;
    margin-left: 5px;
    margin-bottom: 30px;
}

.project-title{
    font-size: 20px;
    color: black;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-left: 100px;
    margin-top: 50px;
}

.project-detail{
    display: flex;
    flex-direction: row;
    max-width: 700px;
    flex-wrap: wrap;
    font-size: 15px;
    letter-spacing: 1px;
    color: black;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: 30px;
    margin-left: 100px;
}

.project-detail-item{
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 50%;
    border-bottom: 1px solid black;
    padding: 20px 0 5px 0;
}

@media (max-width: 1400px) {
    .sinle-project {
        padding: 0 0 120px 0;
    }
    .vert-line {
        height: 200px;
        border-left: 3px solid black;
    }
}

@media (max-width: 950px){
    .vert-line {
        height: 140px;
        border-left: 2px solid black;
    }
    .project-title{
        font-size: 16px;
        margin-bottom: 0;
        margin-left: 0;
        margin-top: 50px;
    }
    .project-detail {
        font-size: 12px;
        margin-left: 0;
        margin-top: 10px;
    }
    .sinle-project {
        padding: 0 0 50px 0;
    }
}

/*animation*/
.fadein{
    opacity: 0;
}

.appear {
    opacity: 0;
    transform: translateY(50px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    line-height: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


