/*COLOR CODES
==============

Purple - #080011
Yellow - #D3E04A
grey (sections) - #fafafa
grey (footer) - #f7f7f8
*/

.colors2 {
    /*purple*/
    color: #080011;
    color: #D3E04A;
    /*grey*/
    color: #fafafa;
    color: #f7f7f8;
}


/* Import the Mulish font from a CDN */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@100;200;300;400;500;600;700;800;900&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

body{
    /* height: 100vh; */
    background-color: #000;
}

section,
div,
article,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow: hidden !important;
}

.navbar,
.nav-wrapper,
.burger-nav,
.logo,
.navlist,
.nav-list ul,
.nav-list ul li,
.nav-list ul li a,
section #tranding,
.containner,
.swiper .tranding-slider,
.swiper-wrapper,
.swiper-slide .tranding-slide,
.tranding-slide-img,
.tranding-slide-content,
.glow-container,
.glow-container:before,
.glow-container:hover:before,
.button-wrapper,
.button-wrapper:hover .button,
.button,
.inner-button,
.button-wrapper:hover .inner-button{
    overflow: visible !important;
}

.padding{
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: #fff;
}


/*reveal js styles*/


.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

/* 
---------------------------------------------
BUTTONS
--------------------------------------------- 
*/
.glow-container {
    position: relative;
    max-width: fit-content;
    margin: 20px 0;
}

.glow-container:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* z-index: 999; */
    transition: all 0.5s ease;
    filter: blur(15px);
        box-shadow:
            0 0 5px white,
            0 0 10px white;
}

.glow-container:hover:before {
    /* z-index: 999;
    #6d4df0 */
    filter: blur(15px)!important;
    box-shadow:

        0 0 5px #582eff,
        0 0 15px #582eff !important;
}

.button2.glow-container:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* z-index: 999; */
    transition: all 0.5s ease;
    filter: blur(7px);
    box-shadow:
        0 0 5px white,
        0 0 5px white;
}

.button2.glow-container:hover:before {
    /* z-index: 999; */
    filter: blur(7px) !important;
    box-shadow:
        0 0 5px #582eff,
        0 0 15px #582eff !important;
}

.button-wrapper {
    position: relative;
    background-color: white;
    padding: 2px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.5s ease;
}

.button-wrapper:hover {
    background-color: #582eff;
}

.button {
    padding: 3px;/*removes black line*/
    font-size: 16px;
    font-weight: bold;
    /* text-transform: uppercase; */
    background-color: white;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
}

.button-wrapper:hover .button {
    background-color: #000;
}
/* .button2 .button-wrapper:hover .button {
    background-color: #eee;
} */

.inner-button {
    position: relative;
    padding: 5px 25px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.5s ease;
}
.inner-button:hover {
    padding: 5px 30px;
    /* color: #fff; */
}
/* .button2 .inner-button:hover {
    color: #eee;
} */
.button-wrapper:hover .inner-button {
    background-color: #582eff;
}

.navbar-button.glow-container {
    margin: 20px 30px;
}

.navbar-button.glow-container:before {
    filter: blur(7px);
    box-shadow:
        0 0 5px white,
        0 0 10px white;
}

.navbar-button.glow-container:hover:before {
    filter: blur(7px) !important;
    box-shadow:
        0 0 5px #582eff,
        0 0 15px #582eff !important;
}

.navbar-button .inner-button {
    position: relative;
    padding: 0 15px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.5s ease;
}

.navbar-button .inner-button:hover {
    padding: 1px 30px;
}


/* 
---------------------------------------------
NAVBAR
--------------------------------------------- 


/* navigation aid buttons*/
#scroll-to-top-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.scroll-text {
    display: inline-block;
    margin-left: 5px;
    /* font-size: 22px; */
}

#scroll-to-top-bottom span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#scroll-to-top-bottom span p{
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
}


.navbar.home {
    background: transparent;
}

#alternativeNavbar {
    display: none;
}

/*navbar*/
.navbar {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background: #000;
    transition: top .6s;
    /* padding-top: 20px; */
    height: 100px;

}
.navbar.animate {
    top: -100px;
    transition: 0.6s ease;
}
.navbar.sticky {
    top: 0;
    z-index: 99;
    transition: top 0.6s, background-color 0.6s;
}
.nav-wrapper {
    width: 100%;
    /* margin-top: 40px; */
}

/*logo element*/
.logo {
    float: left;
    left: 0;
    margin-left: 50px;
    margin-right: 300px;/*centers navlist*/
    /* margin-top: 2px; */
}
.logo img {
    width: 150px;
    height: 80px;
}

.nav-list ul {
    padding: 0;
    /* padding: 5px; */
    margin: 0;
    list-style-type: none;
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 15px; */
}
.nav-list ul li {
    /* display: inline-block; */
    margin: 5px;
    padding: 10px 20px;
    transition: 0.5s ease;
}
.nav-list ul li:hover {
    letter-spacing: 1.5px;
}
.nav-list ul li a {
    font-size: 16px;
}
.nav-list ul li a:hover {
    color: #582eff !important;
    font-weight: bold;
    /* font-size: 17px; */
}

.git-nav{
    visibility: hidden;
}
.burger-nav {
    display: none;
}



/* navbar MEDIA QUERY*/

@media screen and (max-width: 992px) {
    .navbar-button{
        display: none;
    }

    /*logo element*/
    .logo{
        margin-right: 0;
        /* margin-top: -30px; */
        margin-top: -40px;
    }
    

    .burger-nav {
        margin-top: 20px;
        /* margin-top: 10px; */
        display: block;
        height: 30px;
        width: 100%;
        background: url(images/burger-toggle-transparent.png) no-repeat 98% center;
        background-size: contain;
        background-color: transparent;
        cursor: pointer;
    }
    /* .alternative-navbar .burger-nav{
        background: url(images/burger-toggle-black.png) no-repeat 98% center;
        background-size: contain;
        background-color: transparent;
        cursor: pointer;
    } */
    .nav-flex{
        display: block;
        width: 100%;
    }
    .navbar ul {
        float: none;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
    }
    .nav-list ul{
        margin-top: 0;
    }
    .navbar ul {
        position: static;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
        overflow: hidden;
        /* background: #D3E04A; */
        background-image: url('images/sp-purple.png');
        background-size: cover;
        background-position: center;
        height: 0;
        padding: 20px;
    }
    .navbar ul.open {
        width: 1000px;
        /* width: 100%!important; */
        height: 700px;
        /* display: block; */
        display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        text-align: center;
    }
    .navbar ul li {
        float: none;
        text-align: left;
        width: 100%;
        margin: 0;
    }
    .navbar ul li a {
        color: #fff!important;
        padding: 10px;
        /* border-bottom: 1px solid #212529; */
        font-size: 18px;
        display: block;
        margin: 0;
    }
    .navbar ul li a:hover {
        color: #D3E04A!important;
    }
    .git-nav{
        visibility: visible;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        margin-left: 0;
    }
}

/*--------------- landing page -------------------*/
section.landing-page {
    height: 800px;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(images/landing-page.jpg);
    background-size: cover;
    background-position: center;  */
}

section.landing-page video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.landing-page .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lp-left{
    padding: 300px 200px;
    color: #fff;
}
.lp-left a{
    padding: 0 10px;
    font-size: 17px;
    transition: 0.5s ease;

}
.lp-left a:hover{
    color: #D3E04A;
    /* padding: 0 20px; */

    letter-spacing: 2px;
    /* font-size: 18px; */
    font-weight: bolder;
}
.lp-left h2{
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: bolder;
}
.lp-left h2 br{
    display: none;
}
.lp-right{
    padding: 0 100px;
    padding-top: 600px;
    color: #fff;
}
.lp-right .cont{
    float: right;
}
.lp-right .cont p{
    width: 300px;
    height: 70px;
}

/* landing page MEDIA QUERY*/

@media screen and (max-width: 500px) {
    .lp-left {
        padding: 300px 50px;
    }
    .lp-left h2 {
        font-size: 50px;
        margin-bottom: 20px;
        font-weight: bolder;
    }
    .lp-left h2 br{
        display: block!important;
    }
    .lp-right {
        padding: 0 50px;
        padding-top: 600px;
    }
}


/*--------------- purple-belt -------------------*/
section.purple-belt {
    min-height: 300px;
    padding: 100px 200px;
    padding-top: 0;
    /* background-color: #080011; */
    color: #fafafa;
    
}
.boxvid{
    width: 250px;
    height: 200px;
    padding: 10px;
    padding-left: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/boxvid.jpg);
    background-size: cover;
    background-position: center;
}
.boxvid img{
    width: 80px;
    height: 80px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.boxvid a{
    font-size: 14px;
    font-weight: 300;
}
.boxvid a:hover{
    text-decoration: underline;
    font-size: 16px;
}
.strategy{
    width: 500px;
    height: 200px;
    padding: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/purple-pattern.png);
    background-size: cover;
    background-position: center;
}
.strategy h6{
    font-weight: lighter;
}


/* purple belt MEDIA QUERY*/

@media screen and (max-width: 500px) {
    section.purple-belt {
        min-height: 300px;
        padding: 100px 20px;
    }
    .boxvid{
        margin-bottom: 30px;
    }
    .strategy{
        width: 100%;
        height: 200px;
        padding: 20px;
    }
}


/*--------- portfolio-home section -----------*/
section.portfolio-home{
    padding: 100px 200px;
    /* background-color: #000; */
    color: #fff;
}
.projects{
    padding-top: 50px;
}
.project{
    margin: 10px 0;
    padding: 30px;
    color: #fff;
    position: relative;
    min-width: 500px;
    min-height: 300px;
}
.project.one{
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/projects/enja-display3.PNG');
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
    transition: background-position 1s ease;
}
.project.one:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/enja-display3.PNG');
    background-position: bottom right;
}

.project.two{
    width: 590px;
    /* margin-right: 20px; */
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/projects/ds-right.PNG');
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.two:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/ds-right.PNG');
    background-position: bottom right;
}
.project.three{
    width: 590px;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/projects/inhouse-project.png);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.three:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/inhouse-project.png');
    background-position: bottom right;
}
/* .project.four {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/projects/eldoretheights-project.png);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.four:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/eldoretheights-project.png');
    background-position: bottom right;
}
.project.five {
    width: 590px;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/projects/property-project.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.five:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/property-project.jpg');
    background-position: bottom right;
}
.project.six {
    width: 590px;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/projects/interiorbusiness-project.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.six:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/interiorbusiness-project.jpg');
    background-position: bottom right;
}
.project.seven {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/projects/kalchahut-project.png);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.project.seven:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/projects/kalchahut-project.png');
    background-position: bottom right;
} */

.project .project-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* max-width: 100%;
    max-height: 100%; */
}
.project img{
    width: 70px;
    height: 70px;
}
.project .project-details{
    position: absolute;
    top: 80%;
    /* left: 50%;
    transform: translate(-50%, -50%); */
    /* max-width: 100%;
    max-height: 100%; */
}
.project .project-details p{
    font-weight: lighter;
}
.v-more{
    padding-top: 50px;
    padding-bottom: 20px;
}

.v-more a{
    color: #000;
    font-weight: bolder;
    transition: 0.5s ease;
}
/* .v-more a:hover{
    color: #080011;
    font-weight: bolder;
    letter-spacing: 2px;
} */
.v-more a:hover{
    padding: 10px 30px;
    background-color: #D3E04A;
    color: #000;
    /* border: 1px solid #000; */
    font-weight: bolder;
    border-radius: 5px;
    border-bottom-right-radius: 20px;
    /* letter-spacing: 2px; */
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 15px #080011;
    
}
.icon-align {
    vertical-align: middle !important;
    margin-bottom: 3px!important;
}

/* portfolio home MEDIA QUERY*/

@media screen and (max-width: 500px) {
    section.portfolio-home {
            padding: 100px 20px;
        }
    .ph-right{
        display: none;
    }
    .project,
    .project.one {
        min-width: 0;
        width: 100%;
        min-height: 0;
        height: 400px!important;
        }
    .project.two,
    .project.three,
    .project.five,
    .project.six{
        width: 100%;
    }
}

/*-------- numscript section ---------------*/
section.numscript{
    padding: 450px 200px;
    padding-bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/offebw/aboutsec1.jpg);
    /* background-image: url(images/offebw/aboutsec1.jpg); */
    background-size: cover;
    background-position: center;
}

.box{
    width: 250px;
    height: 200px;
    margin-right: 30px;
    /* padding: 50px; */
    color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box p{
    font-size: 42px;
    font-weight: bolder;
}
.box.yellow{
    background-image: url(images/sp-yellow.png);
    background-size: cover;
    background-position: center;
}
.box.green{
    background-image: url(images/sp-green.png);
    background-size: cover;
    background-position: center;
}
.box.purple{
    background-image: url(images/sp-purple.png);
    background-size: cover;
    background-position: center;
}

/* numscript section MEDIA QUERY*/

@media screen and (max-width: 500px) {
    section.numscript {
        padding: 100px 20px;
        padding-bottom: 100px;
    }
    .box-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .box{
        margin-right: 0;
        margin-bottom: 20px;
    }
}




/*--------- our-capabilities section ---------------*/
section.our-capabilities {
    padding: 100px 200px;
    /* background-color: #fafafa; */
    color: #fff;
}

.cp{
    padding: 20px;
    cursor: pointer;
    transition: transform 0.5s;
}
.cp:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 20px 0px rgba(211, 224, 74, 0.1);
    border-radius: 5px;
}
.cp img{
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    text-align: center;
}
.our-capabilities ul{
    padding-left: 0; 
    margin-left: 0;
}
.our-capabilities li {
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 5px;
    list-style-type: none;
    font-weight: bold;
}


/*  our-capabilities MEDIA QUERY*/

@media screen and (max-width: 500px) {
    section.our-capabilities {
        padding: 100px 20px;
    }
    .cp{
        width: 300px;
        border: 1px solid #D3E04A;
        border-radius: 10px;
        margin: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*--------- hwdit section ---------------*/
section.hwdit{
    padding: 100px 200px;
    color: #fff;
}

.hwdit-left{
    /* color: #000; */
}
.hwdit-left h6{
    /* color: #555; */
    font-weight: 600;
}
.hwdit-left h2{
    margin-bottom: 30px;
    font-size: 40px;
}
.hwdit-left a{
    /* color: #000; */
    font-weight: bolder;
    transition: 0.5s ease;
}
.hwdit-left a:hover{
    /* color: #080011; */
    text-decoration: underline;
    letter-spacing: 1px;
}
/* .hwdit-right{
    padding-left: 20px;
} */
.hwdit-right p {
    margin-bottom: 50px;
    padding: 0 40px;
}
.hwdit-right .glow-container {
    margin-left: 40px;
}
/* .hwdit-right div {
    padding: 20px 20px;
} */



/*  hwdit section MEDIA QUERY*/

@media screen and (max-width: 500px) {
    section.hwdit {
        padding: 100px 20px;
    }
    .hwdit-left br{
        display: none;
    }
    .hwdit-left h2{
        font-size: 30px;
    }
    .hwdit-right p {
        padding: 0 0;
    }
    .hwdit-right .glow-container {
        margin-left: 0;
        margin: 20px 0;
    }
    /* .hwdit-right div {
        padding: 40px 0;
    } */
    
}



/*--------- ready-cta section -------------*/
section.ready-cta {
    padding: 180px 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(images/purple-pattern.png);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.ready-cta h6{
    font-weight: lighter;
}
/* .ready-cta h2{
    font-size: 70px;
    font-weight: lighter;
} */
.typescript .text {
    position: relative;
    font-size: 70px;
    font-weight: lighter;
}

.typescript .text.first-text {
    color: #fff;
}
.text.sec-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clear: left;
    
    background-color: transparent;/*block color hides deleted text*/
    backdrop-filter: blur(18px); /* Apply a blur effect */
    -webkit-backdrop-filter: blur(18px); /* For Safari */
    border-left: 2px solid #D3E04A;
    /* border-left: 2px solid #FED800; */
    animation: animate 4s steps(12) infinite;
}

/* section.ready-cta a{
    position: relative;
}
section.ready-cta a:hover {
    background: var(--clr);
    box-shadow: 0 0 35px var(--clr);
} */
@keyframes animate {
    40%,
    60% {
        left: calc(100% + 4px);
    }
    100% {
        left: 0%;
    }
}


/*  ready-cta section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.ready-cta {
        padding: 100px 20px;
    }
    .ready-cta h6 {
        margin-bottom: 30px;
    }
    .ready-cta h2{
        font-size: 50px;
    }
    .typescript .text {
        font-size: 40px;
    }
}


/*--------- media section -------------*/
section.media{
    padding: 100px 200px;
    /* background-color: #f7f7f8; */
    color: #fff;
}

.media .glow-container{
    float: right;
    margin: 30px 20px;
}
.media-wrapper{
    padding-top: 50px;
}

.media-left img{
    width: 100%;
    height: 350px;
}
.media-right{
    padding: 20px;
}
.media-right a:hover{
    color: #fff;
}
.media-right .media-tags{
    padding-right: 20px;
    color: #000;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    border-radius: none!important;
}
.media-right .media-tags:hover{
    color: #000;
}
.media-right .media-link h6{
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.media-right h3{
    font-weight: bold;
}
.media-right h4{
    font-weight: lighter;
    margin-bottom: 20px;
}
/* .media-right .media-link a {
    color: #60606B;
} */


/*  media section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.media {
        padding: 100px 20px;
    }
    .media .padding{
        padding: 30px 0;
    }
}




/*--------- sth-new section -------------*/
section.sth-new{
    padding: 100px 200px;
    color: #fff;
}

.sn-left h2{
    margin-top: 20px;
    margin-bottom: 20px;
}
/* .sn-left .padding{
    padding: 40px 0;
} */
.sth-new .glow-container{
    margin-left: 15px;
}
/*  sth-new section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.sth-new {
        padding: 100px 20px;
    }
    .sn-left br{
        display: none;
    }
        .sn-left h2 {
            font-size: 40px;
            font-weight: bolder;
        }
        .sn-left br{
            display: none;
        }
        .sn-right{
            padding-top: 50px;
        }
}


/*  Scroll to top/bottom section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    #scroll-to-top-bottom span svg{
        width: 25px!important;
        height: 25px!important;
    }
    #scroll-to-top-bottom span p{
        font-size: 12px!important;
    }
}


/*----------- footer -------------------*/
footer {
    padding: 50px 200px;
    padding-right: 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(images/purple-pattern.png);
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* footer.black-footer.purple {
    
} */

footer.black-footer p,
footer.black-footer a {
    color: #fff !important;
}

footer.black-footer .sc-media {
    padding-top: 10px;
    padding-left: 25px;
}

footer.black-footer.sc-media a {
    color: #fff;
}
.foot {
    margin-top: 30px;
    padding-left: 30px;
    padding-top: 0px;
    text-align: left;
    height: 250px;
}
footer p,
footer a{
    color: #000!important;
}
.foot h5 {
    font-weight: 16px;
    font-weight: bolder;
}
.row-foot-bot {
    padding: 20px;
}
.foot-bot {
    text-align: center;
}
.sc-media{
    padding-top: 40px;
}
.sc-media a{
    font-weight: bolder;
}
.sc-media a:hover{
    /* color: #D3E04A;
    text-decoration: underline; */
    font-weight: bolder;
}

/*sign-up area*/
.f-input2 {
    max-width: 200px;
    /* border: 1px solid #13AFB9; */
    border: none;
    /* background-color: #90919C; */
    background-color: rgba(144, 145, 156, 0.2);
    /* box-shadow: 0px 5px 5px 0px rgba(85, 85, 85, 0.5); */
    border-top-right-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
}
#subscription_email::placeholder {
    color: #60606B!important;
}
.sign-up {
    background-color: rgba(144, 145, 156, 0.2)!important;
    font-weight: bold!important;
    width: auto!important;
    padding-left: 10px!important;
    padding-right: 10px!important;
    border: none;
    border-radius: 5px;
    border-top-left-radius: 0px!important;
    border-bottom-left-radius: 0px!important;
    
}

.agreement {
    margin-top: 20px;
}

.agreement input {
    border-color: #000;
    border-radius: 5px!important;
}

.agreement label {
    font-weight: 500;
    font-size: 15px;
    color: #60606B;
}



/*  footer section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    footer {
        padding: 50px 20px;
        padding-right: 20px;
    }
    .foot { 
        margin-top: 30px;
        padding-left: 30px;
        padding-top: 0px;
        text-align: left;
        height: auto;
    }
    .foot img{
        margin-left: -25px;
    }
    footer.black-footer .sc-media {
        padding-left: 0;
    }
    .rfb-left{
        margin-bottom: 20px;
    }
}



/*--------------- PROJECTS  ---------------*/
/* .projects-thumb {
    background: #f9f9f9;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 40px;
    transition: all ease 0.5s;
}

.projects-thumb:hover {
    border-color: #080011;
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
    transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.projects-image {
    border-radius: 20px;
    display: block;
    width: 100%;
    transform: rotate(10deg) translateY(80px);
    transition: all ease 0.5s;
}

.projects-title {
    margin-bottom: 20px;
}

.projects-tag {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
} */



/* 
---------------------------------------------
MEDIA.HTML
--------------------------------------------- 
*/
section.media-body {
    padding: 100px 200px;
    color: #fff;
}

.media-body h2 {
    font-size: 50px;
    font-weight: bolder;
    margin: 50px 0;
}

.media-body p {
    color: #fff;
}

.row.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Adjust the gap as needed */
}
.media-cover{
    width: 30%;
    margin-bottom: 20px;
    box-sizing: border-box;
    min-height: 300px;
}
.media-blog {
    border: 1px solid #fff;/*remove this after image addition*/
    box-sizing: border-box;
    min-height: 300px;
    color: #fff;
    padding: 30px;
    padding-top: 200px;
    /* background-color: #333; */
    /* Add a background color for visibility */
}

.media-blog h4 {
    font-size: 20px;
    /* position: relative !important;
    top: 70%!important; */
}



/* Remove the margin-right for the last item to prevent overflow */
/* .media-blog:last-child {
    margin-right: 0;
} */
.media-blog.one{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/mediagrid.jpg);
    background-size: cover;
    background-position: center;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/projects/megalinkmigaa-project.png');
    background-size: cover;
    background-position: center; */
    transition: background-position 1s ease;
}

.media-blog.one:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/mediagrid.jpg');
    background-position: bottom right;
}

.media-blog.two{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork2.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.two:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork2.jpg);
    background-position: bottom right;
}

.media-blog.three{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.three:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork.jpg);
    background-position: bottom right;
}

.media-blog.four{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/mediagrid.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.four:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/mediagrid.jpg');
    background-position: bottom right;
}

.media-blog.five{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork2.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.five:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork2.jpg);
    background-position: bottom right;
}

.media-blog.six{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.six:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork.jpg);
    background-position: bottom right;
}

.media-blog.seven{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/mediagrid.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.seven:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url('images/mediagrid.jpg');
    background-position: bottom right;
}

.media-blog.eight{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork2.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.eight:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork2.jpg);
    background-position: bottom right;
}

.media-blog.nine{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork.jpg);
    background-size: cover;
    background-position: center;
    transition: background-position 1s ease;
}
.media-blog.nine:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(8, 0, 17, 0.6)), url(images/teamwork.jpg);
    background-position: bottom right;
}

/*  media body MEDIA QUERY*/
/* @media (max-width: 1200px) {
    .media-blog {
        width: 30%;  
    }
} */
@media (max-width: 1350px) {
    section.media-body {
        padding: 100px 50px;
    }
    .media-cover {
        width: 45%;  
    }
}
@media (max-width: 750px) {
    section.media-body {
        padding: 100px 100px;
    }
    .media-cover {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    section.media-body {
        padding: 100px 20px;
    }
}



/* 
---------------------------------------------
ABOUT.HTML
--------------------------------------------- 
*/
section.about-landing{
    min-height: 550px;
    padding: 100px 200px;
    padding-top: 250px;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(images/offebw/aboutsec3.jpg);
    background-size: cover;
    background-position: center;
    z-index: -99;
}
.about-landing h2{
    /* height: 100px; */
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -5pt!important;
}
.about-landing p{
    height: 23px;
    font-size: 17px;
    font-weight: 250;
    margin-bottom: 30px;
}

/*  about-landing section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.about-landing {
        padding: 100px 20px;
        padding-top: 200px;
    }
    .about-landing h2{
        font-size: 40px;
    }
}

/*----------- what-we-are section -----------*/
section.what-we-are {
    padding: 100px;
    padding-top: 0;
    /* background-color: #000; */
    color: #fff;
}
.wwa-left h3,
.wwa-right h3 {
    font-size: 30px;
    font-weight: bolder;
}
.wwa-box {
    padding: 0 50px;
}
.wwa-right p {
    font-size: 14px;
    font-weight: normal;
}
.row-wwa.top {
    margin-bottom: 100px;
}
/*  what-we-are section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.what-we-are {
        padding: 100px 20px;
    }
    .wwa-left h3,
    .wwa-right h3 {
        font-size: 24px;
    }
    .wwa-left h3{
        margin-bottom: 50px;
    }
    .row-wwa.top {
        margin-bottom: 0;
    }
    .wwa-box {
        padding: 20px 15px;
    }
}

/*----------- picture-belt section --------------*/
section.picture-belt {
    min-height: 500px;
    /* background-image: url(images/picturesection-ph.PNG);
    background-size: cover;
    background-position: center; */
}
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 0px 0;
    /* background: #F8F9F9; */
    white-space: nowrap;
    position: relative;
}
.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos:hover .logos-slide {
    animation-play-state: paused;
}
.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}
.logos-slide img {
    /* width: 500px; */
    height: 400px;
    margin: 0 20px;
}
.woman-laptop{
    width: 300px;
}
/*  picture-belt section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.picture-belt {
        padding: 100px 20px;
    }
    .logos:before,
    .logos:after {
        width: 20px; 
    }
}


/*----------- our-philosophy section ------------*/
section.our-philosophy{
    padding: 100px 0;
    /* background-color: #000; */
    color: #fff;
}
.slogan{
    padding: 0 200px;
    padding-bottom: 100px;
}
.slogan h3{
    font-size: 30px;
    font-weight: bolder;
}
.philosophy-cta{
    min-height: 600px;
    /* background-color: #f7f7f8; */
}
.pc-left{
    background-image: url(images/teamwork3.jpg);
    background-size: cover;
    background-position: center;
}
.pc-right{
    padding: 50px;
    padding-right: 200px;
}
.pc-right h3{
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 50px;
}
.pcr-icon i{
    font-size: 26px;
    margin-right: 10px;
    
}
.pc-right h5{
    margin-top: 5px;
    font-size: 16px;
    font-weight: bolder;
}
.pc-right .pc-icon1,
.pc-right .pc-icon2,
.pc-right .pc-icon3
 {
    /* margin-top: 5px; */
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
}


.hidden-paragraph,
.hidden-paragraph2,
.hidden-paragraph3
 {
    display: none;
    margin: 20px 0;
    /* min-height: 500px; */
    transition: 1s ease;
}
/*  our-philosophy section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    .slogan {
        padding: 0 20px;
    }
    .pc-left{
        min-height: 400px;
    }
    .pc-right {
        padding: 50px;
        padding-right: 50px;
    }
    .pc-right h3 br{
        display: none;
    }
}


/*----------- about-cta section -----------------*/
section.about-cta {
    padding: 100px 200px;
    padding-top: 250px;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(images/contact-landing.jpg);
    background-size: cover;
    background-position: center;
}
.about-cta h2 {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
}
.about-cta p {
    font-size: 17px;
    font-weight: 250;
    margin-bottom: 30px;
}
/*  about-cta section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.about-cta {
        padding: 100px 20px;
    }
    .about-cta h2 {
        font-size: 50px;
    }
    .about-cta h2 br{
        display: none;
    }
}


/* 
---------------------------------------------
SERVICES.HTML
--------------------------------------------- 
*/
section.services-landing {
    min-height: 600px;
    padding: 100px 200px;
    padding-top: 250px;
    color: #fff;
    /* background-color: #eee; */
}


.services-landing h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

/*  services-landing section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.services-landing {
        padding: 50px 20px;
        padding-top: 250px;
    }

    .services-landing h6 {
        margin-bottom: 20px;
    }

    .services-landing h2 {
        font-size: 35px;
    }

    .services-landing br {
        display: none;
    }
}


/*----------- services-picture section -----------------*/
section.services-picture {
    padding: 30px;
    /* height: auto; */
    color: #fff;
}
section.services-picture img{
    width: 100%;
    height: auto;
}

/*----------- brands section (strategy,identity,design&vis-----------------*/
section.brand {
    min-height: 700px;
    padding: 100px 100px;
    color: #fff;
}
.brand h2{
    font-size: 60px;
}
.brand P{
    font-size: 30px;
}
.brand ul li{
    font-size: 18px;
}
/*  brands section MEDIA QUERY*/
@media screen and (max-width: 768px) {
    section.brand{
        padding: 25px;
    }
}
@media screen and (max-width: 500px) {
    .brand h2{
        font-size: 40px;
        margin-bottom: 25px;
    }
    .brand h2 br{
        display: none;
    }
    .brand P{
        font-size: 21px;
        font-weight: lighter!important;
    }
    .brand ul li{
        font-size: 16px;
    }
}

/*---------- our-approach section --------------*/
section.our-approach {
    min-height: 500px;
    padding: 100px;
    background-image: url(images/purple-pattern-right.png);
    background-size: cover;
    background-position: center;
    margin-top: 20px;
}
.our-approach h4 {
    color: #D3E04A;
    font-size: 36px;
    font-weight: bolder;
    margin-bottom: 100px;
}

.our-approach p {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

/*  our-approach section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.our-approach {
        padding: 100px 20px;
    }

    .our-approach h4 {
        text-align: center;
    }

    .app-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }

    .arrow-img {
        display: none;
    }
}


/*----------- end-user section -------------------*/
section.end-user {
    padding: 100px 200px;
    /* background-color: #fff; */
    color: #fff;
}
.end-user h6 {
    color: #eee;
    font-weight: 650;
    margin-bottom: 10px;
}
.end-user p {
    /* color: #111; */
    font-size: 42px;
    font-weight: 720;
    line-height: 1.1;
}

/*  end-user section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.end-user {
        padding: 50px 20px;
    }
    .end-user h6 {
        margin-bottom: 20px;
    }
    .end-user p {
        font-size: 20px;
    }
}


/*----------- props section -------------------*/
section.props {
    min-height: 800px;
    /* background-color: #ccc; */
    margin-bottom: 20px;
}
.props-left {
    padding-right: 10px;
    height: 880px;
}
.props-right {
    padding-left: 10px;
    height: 880px;
}
.prop {
    margin-bottom: 20px;
}
.prop.one {
    width: 100%;
    height: 45%;
    background-image: url(images/projects/ds-right2.PNG);
    background-position: center;
    background-size: cover;
    transition: background-position 1s ease;
}
.prop.one:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(0, 0, 0, 0.8)), url(images/projects/mockup3.PNG);
    background-position: bottom right;
}
.prop.two {
    width: 100%;
    height: 55%;
    background-image: url(images/projects/enja-display3.PNG);
    background-position: center;
    background-size: cover;
    transition: background-position 1s ease;
}
.prop.two:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(0, 0, 0, 0.8)), url(images/projects/enja-outdoor4.PNG);
    background-position: bottom right;
}
.prop.three {
    width: 100%;
    height: 55%;
    background-image: url(images/prop3.PNG);
    background-position: center;
    background-size: cover;
    transition: background-position 1s ease;
    transition: 1s ease;
}
.prop.three:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(0, 0, 0, 0.8)), url(images/prop4.PNG);
    background-position: bottom right;
}

.prop.four {
    width: 100%;
    height: 45%;
    background-image: url(images/projects/masshouse-look.PNG);
    background-position: center;
    background-size: cover;
    transition: background-position 1s ease;
}
.prop.four:hover {
    background-image: linear-gradient(rgba(8, 0, 17, 0.6), rgba(0, 0, 0, 0.8)), url(images/projects/masshouse-outside.PNG);
    background-position: bottom right;
}

/*  props section MEDIA QUERY*/
@media screen and (max-width: 768px) {
    section.props{
        padding: 25px;
    }
}



/*
---------------------------------------------
PORTFOLIO.HTML
--------------------------------------------- 
*/
section.port-nav {
    /* padding: 50px 200px; */
    padding-top: 150px;
    padding-bottom: 0;
    padding-left: 300px;
    padding-right: 200px;
    /* background-color: #fff; */
    color: #fff;
    font-weight: 700;
}

.port-row ul {
    list-style: none;
}

.port-row ul li {
    display: inline-block;
    padding: 0 2px;
}

.port-nav a {
    color: #ccc;
}

/*  port-nav section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.port-nav {
        padding-top: 150px;
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 50px;
    }

    .port-row ul li {
        padding: 0 0;
    }
}

/*-------- portfolio-landing section -----------*/
section.portfolio-landing {
    /* position: fixed; */
    /* padding: 0 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-left: 400px; */
    color: #fff;
    /* background-color: #eee; */
    /* width: 100%; */
    min-height: 600px;

}

div.slanting-content {
    position: absolute;
    transform: rotate(-90deg);
    /* width: 500px;
    height: 1600px; */
}

.portfolio-landing a {
    font-size: 80px;
    font-weight: bolder;
    color: #fff;
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    transition: 0.6s ease;
}

.portfolio-landing a:hover {
    color: #000;
    text-shadow:
            -1px -1px 0 #fff,
            1px -1px 0 #fff,
            -1px 1px 0 #fff,
            1px 1px 0 #fff;
}

/*  portfolio-landing section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.portfolio-landing {
        padding: 50px 20px;
        align-items: left;
    }

    div.slanting-content {
        position: absolute;
        transform: rotate(0);
        /* width: 500px;
        height: 1600px; */
    }

    .portfolio-landing a {
        font-size: 40px;
        font-weight: bolder;
    }
}

/*----------- more div -------------------*/
.more-btn {
    padding: 30px 300px;
    padding-top: 0;
    /* background-color: #eee; */
}

.more-btn a {
    padding: 10px 30px;

}

.more-btn a:hover {
    padding: 10px 40px;
}


/*  more-div section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    .more-btn {
        padding: 30px 100px;
    }
}





/* 
---------------------------------------------
CONTACT.HTML
--------------------------------------------- 
*/
section.contact-landing{
    padding: 100px 200px;
    padding-top: 250px;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(images/contact-landing.jpg);
    background-size: cover;
    background-position: center;
}
.contact-landing h2{
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-landing p{
    height: 23px;
    font-size: 17px;
    font-weight: 250;
    margin-bottom: 30px;
}
/*  contact-landing section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.contact-landing {
        padding: 100px 20px;
        padding-top: 200px;
    }
    .contact-landing h2 {
        font-size: 40px;
    }
    .contact-landing h2 br{
        display: none;
    }
}

/*----------- gitch section -------------------*/
section.gitch{
    padding: 0 200px;
    color: #fff;
}
.git-column h3{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}
.send-btn:hover{
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 15px #D3E04A;
}
/*  gitch section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.gitch {
        padding: 0 20px;
    }
}

/*----------- location section -------------------*/

/*  location section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.location {
        padding: 100px 20px;
    }
}

/*----------- lets-talk section ----------------*/
section.lets-talk{
    padding: 100px 200px;
    /* background-color: #111013; */
    color: #fff;
}
.lets-talk h6{
    font-weight: lighter;
}
.lets-talk h2{
    font-size: 40px;
}
.lets-talk p{
    font-weight: 200;
}
.contact-btn .glow-container{
    margin: 20px;
}
/* .contact-btn{
    padding-top: 50px;
}
.contact-btn a{
    float: right;
    padding: 10px 20px;
    background-color: grey;
    color: #fff;
    border-radius: 10px;
}
.contact-btn a:hover{
    padding: 10px 20px;
    background-color: grey;
    color: #fff;
} */
/*  lets-talk section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.lets-talk {
        padding: 100px 20px;
    }
}


/*----------- contact-form section --------------*/
section.contact-form {
    min-height: 400px;
    /* background-color: #fff; */
    color: #fff;
    padding: 100px 200px;
}
.contact-form label {
    font-weight: normal;
}
.form-outline textarea {
    height: 150px;
}
.contact-form input, 
.contact-form textarea {
    border: 1px solid #ccc!important;
    background-color: #000;
}
.grey {
    /* border: 2px solid #999999; */
    border: none;
    background-color: #000;
    /* font-style: italic; */
}
.contact-agreement input {
    border-color: #fff !important;
}
.contact-form .glow-container{
    /* margin: 20px; */
    margin-left: 30px;
}
/*  contact-form section MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.contact-form {
        padding: 100px 20px;
    }
}



/* 
---------------------------------------------
Z-MEDIA.HTML (SOLO MEDIA)
--------------------------------------------- 
*/
section.solo-media-landing{
    padding: 100px 200px;
    padding-top: 500px;
    min-height: 800px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/media-landing.jpeg);
    background-size: cover;
    background-position: center;
}

.sml-left{
    color: #fff;
}
.sml-left h2{
    font-size: 60px;
    font-weight: bolder;
    margin-bottom: 20px;
}
/* .sml-left-wrapper{
    position: relative;
    top: 50%;
} */
.deet-wrapper{
    padding-right: 70px;
}
.sml-left p{
    font-weight: lighter;
}
.sml-left .author-deets img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}
.sml-left .author-name,
.sml-left .date{
    font-weight: bold;
}
section.solo-media{
    padding: 50px 200px;
    color: #000;
}
.media-row ul {
    list-style: none;
    padding-left: 0;
}
.media-row ul li {
    display: inline-block;
    padding: 0 2px;
    /* padding-left: 0; */
}
.media-nav a {
    color: #555;
    font-weight: bolder;
}
.media-img{
    padding: 30px 0;
}
.media-img img{
    width: 100%;
    height: auto;
}
.solo-media h2{
    font-weight: bolder;
    margin-bottom: 20px;
}
section.recent-posts{
    padding: 30px 200px;
    padding-bottom: 100px
}
/* .rp .padding a {
    float: right;
} */
.recent-posts h4{
    font-weight: bolder;
}
.rp-wrapper {
    padding-top: 30px;
}
.rp-top{
    width: 100%;
    height: 250px;
    padding-right: 100px;
}
.rp-top img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.rp-bottom {
    padding: 20px 0;
}
.rp-bottom a {
    color: #000;
}
.rp-bottom .rp-link h6 {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
/* .rp-bottom h3 {
    font-weight: bold;
} */
.rp-bottom h4 {
    font-weight: bold;
    margin-bottom: 20px;
}
.rp-bottom .rp-link a {
    color: #60606B;
}
.media-tags{
    padding: 5px 10px;
    background-color: #ddd;
    border-radius: 5px;
    font-weight: 600;
}/*styles for all media tags*/

.rp-bottom .media-tags {
    padding-right: 20px;
    color: #000;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    border-radius: none !important;
}


/*  MEDIA page MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.solo-media-landing {
        padding: 100px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .deet-wrapper{
        padding-right: 0;
    }
    section.solo-media {
        padding: 50px 20px;
    }
    section.recent-posts{
        padding: 30px 20px;
    }
}


/* 
---------------------------------------------
Z-PORTFOLIO.HTML (SOLO MEDIA)
--------------------------------------------- 
*/
section.solo-portfolio-landing {
    min-height: 800px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/teamwork.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pmh-landing h5{
    font-size: 14px;
    color: #eee;
    margin-bottom: 20px;
}
.pmh-landing ul li{
    font-size: 14px;
    color: #eee;
}
.spl-wrapper{
    /* position: relative;
    top: 50%; */
    color: #fff;
    text-align: center;
    
}
.spl-wrapper h6{
    margin-bottom: 30px;
}
.spl-wrapper h2{
    font-size: 70px;
    font-weight: bolder;
}
section.timeless-identity {
    padding: 100px 200px;
    min-height: 300px;
    color: #fff;
}
.ti-left h2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 20px;
}
.ti-right h6{
    font-weight: bolder;
}
.tir-bot{
    padding-right: 20px;
}
section.brand-overview {
    padding: 50px 200px;
    min-height: 300px;
    color: #fff;
}
.bo-left h2 {
    font-size: 45px;
    font-weight: bolder;
}
section.port-kalchahut{
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(images/kalchahut2.png);
    background-size: cover;
    background-position: center;
}
section.port-approach{
    padding: 100px 200px;
    min-height: 300px;
    color: #fff;
}
.approach-left h2 {
    font-size: 45px;
    font-weight: bolder;
}
section.port-kalchahut2 {
    min-height: 700px;
    background-image: url(images/kalchahut.png);
    background-size: cover;
    background-position: center;
}
/*----------- capabilities section --------------*/
section.port-capabilities {
    padding: 100px 200px;
    min-height: 300px;
    color: #fff;
}
.ptcp-left h6 {
    font-weight: normal;
}
.ptcp-left h2 {
    font-size: 45px;
    font-weight: 730;
}
.ptcp-right {
    padding-left: 30px;
}
.ptcp-right h5{
    font-size: 16px;
    color: #555;
}
.ptcp-right h4{
    font-weight: bolder;
    margin-bottom: 50px;
}
.ptcpbox {
    padding: 0 50px;
    border-left: 1px solid #999;
}
.ptcp-right p {
    font-size: 14px;
    font-weight: normal;
}
.row-ptcp.top {
    margin-bottom: 100px;
}
.row-ptcp h2 {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 32px;
    /* color: #070909; */
} 

/*  PORTFOLIO page MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.timeless-identity {
        padding: 100px 20px;
    }
    section.brand-overview {
        padding: 50px 20px;
    }
    section.port-approach {
        padding: 100px 20px;
    }
    section.port-capabilities {
        padding: 100px 20px;
    }
}

/* 
---------------------------------------------
PORTFOLIO-MASSHOUSE.HTML (SOLO Portfolio)
--------------------------------------------- 
*/
section.pmh-landing{
    padding: 50px 100px;
}
.pmh-landing ul{
    padding: 0!important;
    margin: 0!important;
    display: flex;
    justify-content: space-between;
}
section.pmh-overview{
    padding: 50px 100px;
}

section.pmh-outside{
    height: 550px;
    background-image: url(images/projects/masshouse-outside.PNG);
    background-size: cover;
    background-position: center;
}
section.pmh-goal-strategy{
    padding: 30px 100px;
}
.pmh-gsleft ol{
    padding: 0!important;
    margin: 0!important;
}
.pmh-gsright{
    padding-left: 150px;
}

section.pmh-doublesplit{
    padding: 0 100px;
}
.pmhds-wrapper{
    padding: 5px;
}
.pmhds-left,
.pmhds-right{
    width: auto;
    height: 475px;
}
.pmhds-wrapper img{
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

section.pmh-outlook{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.black{
    padding: 25px 100px;
}

section.stand-alone{
    padding: 20px 100px;
}
.stand-alone img{
    width: 100%;
    height: auto;
}

.masshouse-logos ul{
    padding: 0!important;
    margin: 0!important;
    display: flex;
    justify-content: space-evenly!important;
}
.masshouse-logos ul li{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*****all h6 and p tags have been styled on the html page*/
section.black h6{
    color: #eee;
}
/* section.black p{
    
} */
section.black img{
    width: auto;
    height: auto;
}
section.picsec1{
    padding: 20px 100px;
}
.picsec1 img.one{
    width: 100%;
    height: auto;
}
.picsec1 .ps-row .ps-wrp{
    padding: 10px 5px;
}
.picsec1 .ps-row .ps-wrp img{
    width: 100%;
    height: auto;
}

section.picsec2{
    padding: 20px 100px;
}
.picsec2 img.first,
.picsec2 img.last{
    width: 100%;
    height: auto;
}
.picsec2 .pv-row .pv-wrp{
    padding: 10px 5px;
}
.picsec2 .pv-row .pv-wrp img{
    width: 100%;
    height: auto;
}


.pmh-webld .webld-row .webld-wrp{
    padding: 10px 5px;
}
.pmh-webld .webld-row .webld-wrp img{
    width: 100%;
    height: auto;
}

section.picsec3{
    padding: 20px 100px;
}
.picsec3 .mock-row{
    height: 350px;
}
.picsec3 .mock-row .mock-wrp{
    padding: 10px 5px;
}
.picsec3 .mock-row .mock-wrp img{
    width: 100%;
    height: auto;
}
.mockwrap{
    margin-top: 10px;
    border: 1px #fff solid;
}
.mockwrap img{
    width: 100%;
    height: auto;
}


/*  tablet mode*/
@media screen and (max-width: 768px) {
    section.pmh-landing,
    section.pmh-overview,
    section.black{
        padding: 50px 50px;
    }
    .pmhl-right,
    .pmho-right{
        display: none;
    }
    .black.pmh-brandcreation .black-right,
    .black.pmh-identity .black-right,
    .black.pmh-architecturalvisualization .black-right{
        display: none;
    }
    .black.pmh-brandstory .black-left,
    .black.pmh-webld .black-left{
        display: none;
    }
    .pmh-gsright{
        padding-left: 0;
    }
}

/*  mobile mode*/
@media screen and (max-width: 500px) {
    section.pmh-landing,
    section.pmh-overview,
    section.black,
    section.pmh-goal-strategy,
    section.pmh-doublesplit,
    section.pmh-outlook,
    section.stand-alone,
    section.picsec1,
    section.picsec2,
    section.picsec3{
        padding: 30px 20px;
    }
    section.pmh-outside{
        height: 350px;
        
    }
    .pmhds-left,
    .pmhds-right,
    .picsec1 .ps-row .ps-wrp img,
    .picsec2 .pv-row .pv-wrp img{
        height: 350px;
        object-fit: cover;
    }
}

/* 
---------------------------------------------
PORTFOLIO-ENJA.HTML (SOLO Portfolio)
--------------------------------------------- 
*/

.enja-landing ul{
    padding: 0!important;
    margin: 0!important;
    display: flex;
    justify-content: space-between;
}
section.enja-display1{
    height: 750px;
    background-image: url(images/projects/enja-display1.PNG);
    background-size: cover;
    background-position: center;
}

section.enja-landing,
section.enja-overview,
section.enja-doublesplit,
section.enja-strategy,
section.enja-architecture,
section.enja-story,
section.enja-slider,
section.enja-identity,
section.enja-identity-pictures,
section.enja-styling,
section.enja-outdoor,
section.enja-onlinewave,
section.enja-growth {
    padding: 50px 150px;
    /* min-height: 300px; */
    /* color: #fff; */
}

/* section.enja-doublesplit{
    padding: 0 100px;
} */
.enjads-wrapper{
    padding: 5px;
}
.enjads-left,
.enjads-right{
    width: auto;
    height: 475px;
}
.enjads-wrapper img{
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

section.enja-display2{
    height: 650px;
    background-image: url(images/projects/enja-display2.PNG);
    background-size: cover;
    background-position: center;
}
/* 
section.enja-slider{
    padding: 50px 150px;
} */
section.enja-slider img{
    width: 200px;
    height: auto;
}

section.enja-display3{
    height: 650px;
    background-image: url(images/projects/enja-display3.PNG);
    background-size: cover;
    background-position: center;
}

.enjasp-wrapper{
    padding: 5px;
}
.enjasp-left,
.enjasp-right{
    width: auto;
    height: 400px;
}
.enjasp-wrapper img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

section.enja-styling .last img{
    width: 100%;
    height: auto;
}

.enja-outdoor .img-cont.one,
.enja-outdoor .img-cont.four {
    width: auto;
    height: 400px;
}
.enja-outdoor .img-cont.two,
.enja-outdoor .img-cont.three {
    width: auto;
    height: 475px;
}
.enja-outdoor .img-cont img{
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.enja-identity .img-cont.one,
.enja-identity .img-cont.five,
.enja-identity .img-cont.six{
    width: auto;
    height: 200px;
}
.enja-identity .img-cont img{
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

section.enja-onlinewave img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1200px) {
    section.enja-landing .pmhl-right img{
        display: none;
    }
    section.enja-landing .pmhl-left{
        width: 100%;
    }
    section p{
        padding-left: 0!important;
        padding-right: 0!important;
    }
}

/*  tablet mode*/
@media screen and (max-width: 768px) {
    section.enja-landing,
    section.enja-overview,
section.enja-strategy,
section.enja-doublesplit,
section.enja-architecture,
section.enja-story,
section.enja-slider,
section.enja-identity,
section.enja-identity-pictures,
section.enja-styling,
section.enja-outdoor,
section.enja-onlinewave,
section.enja-growth {
        padding: 50px 50px!important;
    }
/*YOU LEFT HERE*/
section.enja-identity-pictures br{
    display: none;
}
section.enja-identity-pictures img{
    margin-bottom: 20px;
}
section.enja-identity-pictures .left{
    display: none;
}
section.enja-outdoor br{
    display: none;
}
section.enja-outdoor .img-cont{
    margin-bottom: 20px;
}

    

}

/*  mobile mode*/
@media screen and (max-width: 500px) {
    section.enja-landing,
    section.enja-overview,
section.enja-strategy,
section.enja-doublesplit,
section.enja-architecture,
section.enja-story,
section.enja-slider,
section.enja-identity,
section.enja-identity-pictures,
section.enja-styling,
section.enja-outdoor,
section.enja-onlinewave,
section.enja-growth{
        padding: 30px 20px!important;
    }
    .enja-landing ul{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

}