:root{
    --bg :#0A0A0A;
    --white: #ffffff;
    --text: #CECABF;
    --accent: #E11B1B;
    --gradient: linear-gradient(92.45deg, #EB5E14 0%, #E11B1B 100%);
    --gradient-hover: linear-gradient(92.45deg,#E11B1B 0%, #EB5E14  100%);

}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Matter';
    src: url(../fonts/Matter-Light.otf);
    font-display: swap;
    font-weight: 400;
}
@font-face {
    font-family: 'Matter';
    src: url(../fonts/Matter-Regular.otf);
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'Aminute';
    src: url(../fonts/Aminute.woff2);
    font-display: swap;
    font-weight: 400;
}
body{
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Matter';
    font-weight: 400;
    line-height: 1.4;
}

.btn {
    color: var(--bg);
    background: var(--white);
    font-family: 'Aminute';
}
.btn-gradient{
    background: var(--gradient);
    color: var(--white);
    transition: ease-in-out 0.5s all;
}
.btn-gradient:hover{
    background: var(--gradient-hover);
    transition: ease-in-out 0.5s all;
}
.title{
    font-family: 'Aminute';
    font-size: 70px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
.inner{
    padding-top: 100px;
}

/***************************/
/*         Header          */
/***************************/

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: ease-in-out 0.3s all;
}
header.active {
    background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    padding: 20px 50px;
    transition: all 0.3s ease-in-out;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 33px;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
}
.toggler {
    padding: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
}
.gg--menu-right {
    display: inline-block;
    width: 26px;
    height: 26px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M22 18.005c0 .55-.446.995-.995.995h-8.01a.995.995 0 0 1 0-1.99h8.01c.55 0 .995.445.995.995M22 12c0 .55-.446.995-.995.995H2.995a.995.995 0 1 1 0-1.99h18.01c.55 0 .995.446.995.995m-.995-5.01a.995.995 0 0 0 0-1.99H8.995a.995.995 0 1 0 0 1.99z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/***************************/
/*           Hero          */
/***************************/

.hero{
    padding: 150px 50px 137px;
    position: relative
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    bottom: 32%;
    background: url(../images/shape.png) no-repeat bottom center/ cover;
}
.hero > *{
    position: relative;
}
span.tagline2 {
    color: #fff;
    font-family: 'Aminute';
    font-size: 30px;
    display: block;
    text-align: right;
    padding-right: 20px;
}
.oliver {
    margin-top: -6%;
    width: clamp(200px, 25vw , 330px);
}
.hero h1{
    font-size: clamp(20px,3vw,40px);
    color: var(--white);
    max-width: 55%;
    margin: -5% auto 0;
    font-weight: 500;
}
.hero .text {
    font-size: clamp(16px,2.5vw,18px);
    color: #fff;
    max-width: 836px;
    margin: 239px auto 40px;
}

/***************************/
/*           Logos         */
/***************************/

.section_logos{
    padding: 150px 0 75px;
}
.section_logos .container {    
    display: flex;
    align-items: center;
    gap: 10%;
}
.logos {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
    flex: 1;
}

/***************************/
/*         Text Block      */
/***************************/

.text_block{
    padding: 75px 0;
}
.text_block .text {
    font-size: clamp(20px, 4vw ,54px);
    font-weight: 400;
    text-align: center;
    max-width: 1074px;
    margin: 0 auto 60px;
    text-transform: uppercase;
}
.text_block .text strong{
    display: block;
    font-weight: 600;
}
.text_block .text + p {
    font-size: 18px;
    max-width: 321px;
    margin: 0 20% 0 auto;
}

/***************************/
/*         Projects        */
/***************************/

.projects{
    padding: 75px 0 150px;
}
.project_layout{
    display: flex;
    gap: 40px;
}

.project_intro{
    flex: 0 0 25%;
}

.project_slider{
    flex: 1;
    min-width: 0;
}

/* Sticky card */
.project_intro .card{
    position: sticky;
    top: 120px;
}
.project_slider .card {    
    border-radius: 12px;    
    display: flex;
    min-height: 400px;
    flex-direction: column;    
    overflow: hidden;
    text-decoration: none;
    position: relative;
}
.project_slider .card .featured_image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: ease-in-out 0.5s all;
}
.project_slider .card:hover .featured_image{
    transform: scale(1.1);
    transition: ease-in-out 0.5s all;
}
.project_slider .card .content{background-color: #F2E7DA; margin-top: auto;padding: 15px 20px;position: relative;}
.project_slider .card h3{font-size: 24px; font-family: 'Aminute'; font-weight: 400; border-top: 1px solid var(--bg); color: var(--bg)}
.project_intro .card {
    border: 1px solid var(--text);
    gap: 60px;
    padding: 30px;
    align-items: flex-start;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.project_intro .card h3 {font-size: 38px;}
.project_intro .card p {font-size: 14px;align-self: flex-end;margin-top: auto;}


/***************************/
/*           Why           */
/***************************/

.why{
    padding: 60px 0 95px;
    background: var(--text);
    color: var(--bg);
    position: relative;
}
.why:before {
    content: '';
    width: 45%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: var(--bg);
}
.why .content_wrapper {
    display: flex;
    gap: 15%;
    align-items: end;
}
.why .title{
    border-top: 1px solid var(--bg);
    padding-top: 20px;
}
.why .h1{
    max-width: 550px;
    line-height: 1;
    margin: 20px  0 60px;
}
.why .h1 a{
    color: inherit;
    font-weight: 500;
}
.why span{
    color: var(--accent);
}
.why .content p{
    max-width: 607px;
    padding-left: 50px;
}
.why .content p + p {
    max-width: 370px;
    margin: 60px -25% 0 auto;
}
.why .image {
    max-width: 500px;
}
/***************************/
/*        Philosophy       */
/***************************/

.philosophy {
    padding: 150px 0 75px;
}
.philosophy .title {
    border-top: 1px solid var(--text);
    padding-top: 20px;
}
.philosophy .wrapper {
    display: flex;
    margin-top: 60px;
    align-items: flex-start;
    gap: 5%;
}
.philosophy .content{
    max-width: 810px;
    display: flex;
    gap: 5%;
    font-size: 20px;
}
.philosophy .content > *{
    flex: 1;
}
.philosophy .link {
    float: right;
    color: inherit;
    margin-top: -20px;
}

/***************************/
/*          Launch         */
/***************************/

.launch{
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}
.launch::before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 52%;
    left: 0;
    background-color: var(--text);
}
.launch .title{font-size: 58px}
.launch .wrapper {
    display: flex;
    align-items: center;
    gap: 5%;
    position: relative;
}
.launch .wrapper > .item{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.launch .wrapper .item p{
    font-size: 18px;
    margin-bottom: 20px;
}
/***************************/
/*       Blog Section      */
/***************************/

.blogs{
    padding: 75px 0 120px;
}
.blogs .container {
    border-top: 1px solid var(--text);
    padding-top: 15px;
}
.blogs h4 {
    font-family: 'Aminute';
    font-weight: 400;
    color: #fff;
    float: left;
}
.blogs h2 {
    font-size: 40px;
    font-weight: 400;
    max-width: 519px;
    color: #fff;
    line-height: 1;
    margin-left: 37%;
}
.blogs_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 120px;
}
.meta .cat{
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}
.blog_title{
    font-size: 20px;
    font-weight: 400;
}
.blog_title a{
    color: var(--white);
    text-decoration: none;
}
/***************************/
/*           Footer        */
/***************************/

footer{
    background-color: var(--text);
    color: var(--bg);
    padding: 60px 60px 0;
    font-size:18px;
    font-weight: 500;
    line-height: 1.2;
}
.footer_top {display: flex; gap: 10%;margin-bottom: 33px;}
.information{max-width: 50%; display: flex; flex-direction: column;align-items: baseline; gap:44px;}
.information .btn {
    border-radius: 60px;
    font-size: clamp(16px, 2.5vw , 38px);
    padding: 34px 43px;
    color: #fff;
    background: var(--bg);
    line-height: 1;
    text-decoration: none;    
}
.information .btn em{color: #EB5D14;}
.widget_wrapper {display: flex; gap: 10%; flex: 1}
.widget {min-width: 35%;}
.widget_title{font-size: 20px; margin-bottom: 24px; color:var(--bg); text-transform: uppercase;margin-top: 70px;}
.widget ul{list-style: none;padding:0;}
.widget ul li{margin-bottom: 10px;}
.widget ul li a{color: #545454; text-decoration: none;}
.widget ul li a:hover{color: var(--bg);}
.copyright{padding: 40px 0 25px; text-align: center; }


/* My Story */

.story{
    padding: 30px 0 75px;    
}
.story .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 5%;
}
.story  .wrapper img {
    max-width: 320px;
}
.story .content .h4{
    font-family: 'Aminute';
    font-weight: 400;
}
.story .content p{
    color: var(--white);
    font-size: clamp(16px, 3vw, 20px);
}
.story .content .btn{
    margin-top: 36px;
    text-decoration: none;
    border-radius: 30px;;
}
.story .content .btn em{
    color: #EB5D14;
}
/* counter */
.counters{
    padding: 75px 0;
}

.counters .wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5%;
}
.counter_wrap h2{
    font-family: 'Aminute';
    font-size: 50px;
    line-height: 1;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 24px;
}
.counter_wrap h2 .num{color: #EB5D14}
.counter_wrap h3{font-size:20px; color:var(--white); font-weight: 400;}

/* Philosophy */

.about_philosophy{
    padding: 75px 0;
}
.about_philosophy .container{
    max-width: 1187px;
}
.about_philosophy .wrapper {
    display: flex;
    align-items: center;
    gap: 5%;
}
.about_philosophy .image_wrapper {
    display: flex;
    gap: 10px;
    flex: 1;
}
.about_philosophy .image_wrapper .col{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}
.about_philosophy .join{
    padding: 30px 24px;
    border-radius: 24px;
    background: #EB5D14;
    color: var(--white)
}
.about_philosophy .join img{margin-bottom: 20px; }
.about_philosophy .join h3,
.about_philosophy .services h3 {
    text-transform: uppercase;
    font-size: 32px;
}
.about_philosophy .services{
    background: var(--text);
    height: 100%;
    color: var(--bg);
    padding: 30px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about_philosophy .content h2{
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 30px;
}
.about_philosophy .content{
    flex: 1;
    font-size: 20px;
}
.about_philosophy .content p{
    margin-bottom: 30px;
}


/* services */

.services .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 75px 0;
}
.services_list{
    list-style: none;
    padding: 0;
    font-size: 65px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    color: #181818;
}
.services_list .active{
    color: var(--white);
}
.images_list {
    position: relative;
    max-width: 320px;
    height: 100%;
    min-height: 300px;
    width: 100%;
}

.images_list img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .4s ease;
}

.images_list img.active {
    opacity: 1;
}

/* publication */

.publication{
    padding: 75px 0;
}
.publication .heading{
    display: flex;
    gap: 5%;
}
.publication .h4{
    text-transform: capitalize;
}
.publication h2{
    color: var(--white);
    text-transform: capitalize;
}
.publication h2 + p {
    max-width: 296px;
    margin-top: 12%;
}
.publication .articles{
    max-width: 86%;
    margin-left: auto;
    margin-top: 84px;
}
.publication article{
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.5fr;
    border-bottom: 1px solid var(--text);
    padding: 10px 10px 24px
}
.publication article .content h3{
    font-size: 30px;
    color: var(--white)
}
.publication article .content p{
    font-size: 18px;
}
.publication article .link{
    text-align: right;
    padding-top: 20px;
}




/* blog single */
.single-post{
    color: var(--white)
}
.single-post h2, .single-post h3 .single-post h4{
    margin-bottom: 15px;
}
.post_header {
    display: flex;
    align-items: center;
    gap: 5%;
}
.post_header > * {
    flex: 1 1 50%;
}
.featured_image {
    width: 100%;
}
.post_header .content{
    text-align: center;
    padding: 5%;
}
.post_header .date{
    font-family: 'Aminute';
}
.post_header h1{
    font-size: 45px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
}
.single-post .meta{
    display: flex;
    justify-content: space-between;
    padding: 44px 50px 60px;
}
.single-post main{
    padding:0 0 60px;
}
.single-post ul, .single-post ol{
    padding-left: 40px;
    margin-bottom: 15px;
}
.single-post p{
    margin-bottom: 15px;
}
@media(max-width:991px){
    header,header.active{padding-left: 15px;padding-right:15px;}
    .toggler {display: flex;}
    nav {
        position: absolute;
        background: var(--bg);
        padding: 50px 40px;
        min-width: 250px;
        top: 0;
        right: 0;
        height: 100vh;
        transform: translateX(100%);		
		transition: ease-in-out 0.5s all;
    }
	nav.active {
		transform: translateX(0);
		transition: ease-in-out 0.5s all;
	}
    nav ul{flex-direction: column;}
}
@media(max-width: 768px){
    .title {font-size: 48px;}
    .hero {padding: 150px 15px 80px;}
    .hero::before {bottom: 39%;}
	.hero .text {margin: 90px auto 40px;}
    .tagline2 {font-size: 10px !important;padding-right: 0 !important;}
    .hero h1{max-width: 480px; margin-top:-10%;}
    .project_layout {flex-direction: column;}
    .why .content_wrapper {flex-wrap: wrap;gap: 60px;}
    .why .content p + p {margin: 30px 0% 30px auto}
    .philosophy .wrapper {gap: 30px;flex-wrap: wrap;justify-content: center;margin-bottom: 15px;}
    .philosophy .link{float: none; margin: 0;}
    .philosophy .content {flex-direction: column;gap: 0;}
    .launch .wrapper {flex-wrap: wrap;gap: 30px;}
    .launch .wrapper > .item {flex: 0 1 100%; gap: 60px;}
    .blogs h2 {font-size: 20px;}
    .blogs_grid {grid-template-columns: repeat(2, 1fr);}
    footer{padding: 60px 20px 0;}
    .footer_top {flex-wrap: wrap;}
    .information{max-width: 100%;}
    .information .btn {padding: 20px 25px; }
    .post_header {display: block;}
    .story .wrapper ,
    .publication .heading,
    .about_philosophy .wrapper {gap: 30px;flex-wrap: wrap;}
    .publication .articles {max-width: 100%; margin-top: 60px;}
    .counters .wrapper {grid-template-columns: auto;}
    .publication article {grid-template-columns: auto;}
    .services .wrapper {gap: 30px;flex-wrap: wrap;}
    .services_list {font-size: 40px;}
	.section_logos {padding: 60px 0;}
	.section_logos .container {gap: 40px;flex-direction: column;}
}
@media(max-width:480px){
    .hero::before {bottom: 48%;}
}