main.projects-page .gradient-intro .wrapper .content {margin: 70px auto 0 auto;}
.projects-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    width: 1680px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 80px 40px;
    margin: 0 auto;
}
ul.industry-nav__list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    color: #fff;
}
ul.industry-nav__list li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
ul.industry-nav__list li.active a, ul.industry-nav__list li a:hover {
    color: #43c1cb;
}

/*PROJECTS LIST*/
ul.projects-list  {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 1680px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0px;
    margin: 0 auto;
    list-style:none;
}
ul.projects-list li {
    box-sizing: border-box;
    width: calc(25% - 30px);
    margin-bottom: 80px;
}
ul.projects-list li a.project-info {
    position: relative;
}
a.project-info:before {
    content: '';
    width: 100%;
    height: 40%;
    display: block;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
ul.projects-list li a.project-info .image-wrapper span.project-header  {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
ul.projects-list li a.project-info .image-wrapper span.project-header img {
    width: 60px;
    border-radius: 100px;
    background: linear-gradient(45deg, rgba(53, 36, 122, 1) 0%, rgba(29, 146, 169, 1) 100%);
    padding: 6px;
    box-sizing: border-box;
}
ul.projects-list li a.project-info .image-wrapper span.project-header span.project-details {
    color: #fff;
    width: calc(100% - 70px);
}
ul.projects-list li a.project-info .image-wrapper span.project-header span.project-details h3 {font-size: 16px;margin: 0;}
ul.projects-list li a.project-info .image-wrapper span.project-header span.project-details p {font-size: 12px;line-height: 1.4;margin-top: 3px;}
ul.projects-list li .description-wrapper a {text-decoration: none;}
ul.projects-list li .description-wrapper a.domain {
    font-size: 16px;
    color:#43C1CB;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
}
ul.projects-list li .description-wrapper a h3 {
    font-size: 2.5rem;
    margin: 10px 0 0 0;
    color: #100D53;
}
ul.projects-list li .description-wrapper a h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0 3px 0;
    color: #100d53;
}
ul.projects-list li .description-wrapper p {
    margin: 0;
}
ul.projects-list li a.project-info .image-wrapper {
    background-size: 125%;
    transition: .5s all ease;
    background-position: center center;
}
ul.projects-list li a.project-info:hover .image-wrapper {
    background-size: 120%;
}
ul.projects-list li a.project-info .image-wrapper .awards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

ul.projects-list li a.project-info .image-wrapper .awards-wrapper .award {
    width: calc(100% / 6);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.1);
}
ul.projects-list li a.project-info .image-wrapper .awards-wrapper .award img {max-width: 100%;}
ul.projects-list li a.project-info .image-wrapper .awards-wrapper .award span.award-count {
    position: absolute;
    top: 4px;
    left: 4px;
    color: #fff;
    font-size: 11px;
}


/*------------------------------------*/
/*----------SINGLE PROJECT------------*/
/*------------------------------------*/
.project-header {
    background-position: center center;
    background-size: cover;
}
.project-header .overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.6);
}
.project-header .overlay a {
    font-size: 14px;
    color: #43C1CB;
    text-decoration: none;
    transition: .3s all ease;
}
.project-header .overlay a:hover {
    color: #43c1cb;
}
.project-header .overlay img {
    width: 60px;
    border-radius: 140px;
}
.project-header .overlay .content {
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}
.project-header .overlay .content  h1 {
    font-size: 5rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}
.project-header .overlay .content  h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 5px 0 0 0;
    font-weight: normal;
}
.project-header .overlay .content  a {
    display: inline-block;
    margin-top: 5px;
}
.logo-couple .elegento-logo {
    position: relative;
    transform: translateX(-20px);
    transition: .3s all ease;
}
.logo-couple .client-logo {
    position: absolute;
    transform: translateX(-50px);
    transition: .3s all ease;
}
.logo-couple:hover .elegento-logo {
    transform: translateX(-30px);
}
.logo-couple:hover .client-logo {
    transform: translateX(-40px);
}
.project-content .section-wrapper {
    width: 1680px;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.project-content .section-wrapper .left {
    width: 40%;
    padding: 40px;
    box-sizing: border-box;
}

.project-content .section-wrapper .left h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 40px 0 0 0;
    color: #100d53;
}
.project-content .section-wrapper .left p a {
    color: #43c1cb;
    font-weight: 500;
    text-decoration: none;
}
.project-content .section-wrapper .right {
    width: 60%;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}
ul.elegento-teams {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
ul.elegento-teams li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
ul.elegento-teams li p {
    margin: 0;
    font-size: 12px;
}
ul.elegento-teams li img {
    width: 60px;
    height: auto;
    display: block;
}

img.img-responsive.iphone-mockup.center-block {
    position: absolute;
    top: -20%;
    max-height: 80vh;
    left: 50%;
    transform: translateX(-50%);
}
.awards-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);

    padding: 0;
    box-sizing: border-box;
    border-top: 1px solid #fff;
}
.awards-section ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 10px;
    width: 1200px;
    max-width: 100%;
    padding: 40px;
    margin: 0 auto;
    box-sizing: border-box;
}
.awards-section ul li {
    width: calc(20% - 10px);
    background: #ffffff;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}
.awards-section ul li img {
    width: 40px;
    border-radius: 5px;
}

.awards-section ul li h3 {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.awards-section ul li p {
    font-size: 9px;
    margin: 0;
}

.seperate-container {
    min-height: 100vh;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    background-attachment: fixed;
}

.feature-section {
    background-color: #fff;
}
.feature-section .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 40vh;
    color: #000;
}

.feature-section .wrapper .left {
    width: 40%;
    padding: 40px;
    box-sizing: border-box;
}

.feature-section .wrapper .right {
    width: 60%;
    padding: 40px;
    box-sizing: border-box;
}

.feature-section .wrapper .right img {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-height: 420px;
    width: auto;
    max-width: 100%;
}

.all-devices, .full-image {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
}
.numbers-facts {
    padding: 40px;
}
.numbers-facts .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.numbers-facts .wrapper .numbers {
    display: flex;
    gap: 40px;
}
.numbers-facts .wrapper h3 {
    font-size: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
}
.numbers-facts .wrapper h3 span {
    font-size: 14px;
    font-weight: normal;
}

.numbers-facts .wrapper p {
    width: 600px;
    max-width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.related-projects .wrapper {
    padding: 40px;
    width: 1680px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}


.text-wrapper {
    max-height: none;
    overflow: visible;
}
.read-more-text {
    display: none;
    color: white;
    border: 1px solid;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 50px;
}