*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family: 'Kumbh Sans' , sans-serif;
    scroll-behavior: smooth;
}

html, body {
    background-color: #ffffff;
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-color: yellow black
}

.navbar {
background: #000000;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
position: sticky;
top: 0;
z-index: 999;
}

.navbar__container {
    display: flex;
justify-content: space-between;
height: 80px;
z-index: 1;
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 auto;
}

#navbar__logo {
    background:#ffee01;
    background-size: 100%;
    background-image: linear-gradient(to top,#ffff 0%, #ffe600 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
    padding-left: 25px;
    white-space: nowrap;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
    
}

.navbar__links{
    color: #797101;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    white-space: nowrap;

    
}

nav {
    width: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/*Language code*/

  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: block;
    position: absolute;
    min-width: 32px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: -30px;
    top: -10px;
  }
  

  .dropdown-content a {
    color: black;
    border:1px solid black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .fi {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(https://flagsapi.com/FI/flat/32.png);
  }
  .en {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(https://flagsapi.com/GB/flat/32.png);
  }
  
  .dropdown a:hover {background-color: #706f6f;}


.show{
    display: block;
}
.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-size: 100%;
    background-image: linear-gradient(to top,#a57e00 0%, #ffe600 100%);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-text-fill-color: #3f3b01;
    -moz-text-fill-color: #797101;
}

.button:hover {
    transform:scale(1.075);
    transition:0.2s ease-in;
    cursor: pointer;
}

.navbar__links:hover {
    color: #ffee01;
    transition: all 0.3s ease;
}


@media screen and (max-width:1190px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index:-1;
        background: #000000;
    }

    .navbar__menu.active {
        background: #000000f6;
        top:100%;
        opacity: 1;
        transition: all o.5s ease;
        z-index: 99;
        height: 80vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

.dropbtn {
    position: relative;
}

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #ffee01;
    }
    
    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active.bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active.bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active.bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*Hero*/
.main {
    background-color: #000000ee;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 80vh;
    background-color: #292929;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main1__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 100vh;
    background: url(/images/skyline.jpg) no-repeat center center / cover;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content {
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 20px;
}

.main__content h1 {
    font-size: 4rem;
    background-color: #ffee00;
    background-image: linear-gradient(to top,#aa9900 10%, #f7ef8a 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
}

.main__content h2 {
    font-size: 1.5rem;
    color: #ffffff;
    
}

.main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
color: #c59700;
padding-bottom: 5px;
}

.main__btn {
    font-size: 1rem;
    background-image: linear-gradient(to right,#ffa600 10%, #ffe600 100%);
    padding: 14px 32px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    border-radius: 4px;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: #000000;
    text-decoration: none; 
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c59700;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #ffffff;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
   height: 100%;
   width: 100%; 
}

@media screen and (max-width: 800px){
    .main1__container{
        grid-template-columns: 1fr;
    }
    
    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }
    .main__content h2 {
        font-size: 1.3rem;
    }
    .main__content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }
    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
    #main__img{
        display: none;
    }
}

/*Meistä hero*/
.abus__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 80vh;
    background-color: #292929;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 80px 50px;
}

.abus1__container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    background-image: url(/images/pencile.jpg);
background-size: cover;

background-position: center;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 80px 50px;
}
.abus1{
    color: #aa9900;
    padding-bottom: 10px;
}

.abus2 {
    color: #aa9900;
    font-weight: 999;
}

.abusR {
    color: #aa9900;
    font-size: 1.3rem;
    padding-bottom: 10px;
}
@media screen and (max-width: 800px){
    .abus__container{
        grid-template-columns: 1fr;
        height: auto;
        
    }
}

/*services*/

.services {
    background: #000000ee ;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    
}

.services h1 {
    background-color: #797101;
    background-image: linear-gradient(to top,#ffe601 10%, #ffee01 100%);
    background-size: 100%;
    margin-bottom: 3rem;
    font-size: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
}

.services__card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/con_site_resized.jpg');
    background-size: cover;
    position: relative;
    color: #ffffff;
}

.services__card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/shower_resized.jpg');
}
.services__card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/cleaning2.jpg');
}
.services__card:nth-child(4) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/logistics_resized.jpg');
}

.services h2 {
    position: absolute;
    top: 350px;
    left: 30px;
}


.services__card button a{
    color: #ffffff;
    padding: 10px 20px;
    border:none;
    outline: none;
    border-radius: 4px;
    background: #797101;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}


.services__card:hover {
    transform:scale(1.075);
    transition:0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width:960px){
    .services {
        height: auto;
    }
    
     .services__container{
        justify-content: flex-start;
        scroll-padding-left: 1rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .services h1 {
        font-size: 2rem;
        padding-top: 30px;
    }
   .services__card {
        min-width: 290px;
        margin: 0 1rem;
        scroll-snap-align: start;
    }
}

/*footer*/

.footer__container {
    background-color: #000000;
    padding: 5rem 30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__logo pre {
    color: #797101;
}

#footer__logo {
    background:#ffee01;
    background-size: 100%;
    background-image: linear-gradient(to top,#ffff 0%, #ffe600 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 200px;
    box-sizing: border-box;
}

.footer__link--item > h2 {
    color: #ffffff;
}

.footer__link--item a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__link--item a:hover {
    color: rgb(218, 123, 0);
    transition: 0.3s ease-out;
}

/*rights*/

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 30px;
}

.website__rights {
    color: #797101;
}

@media screen and (max-width: 820px) {
    .footer__links{
        padding-top: 2rem;
    }
    #footer__logo {
        margin-bottom: 2rem;
    }
     
    .footer__container{
        padding-right: 20px;
    } 

    .website__rights {
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }
    .footer__link--wrapper {
        flex-direction: column;
    }
    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__link--item {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}

/*contact*/ 

.contact{
    background: #1a1a1aee;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: #00000000;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2 {
    font-weight: 600;
    color: #ffee01;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title h3 {
    font-weight: 300;
    color: #ffee01;
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-left-title h4 {
    font-weight: 250;
    color: #ffee01;
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height:  5px;
    background-color: #997500e8;
    border-radius: 10px ;
    margin-bottom: 20px;
}

.contact-input {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500px;
    color: #000000;
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-input:focus{ 
    border: 4px solid #ff994f;
}
.contact-input::placeholder {
    color: #000000;
}
.contact-left button {
    display:flex;
    align-items: center;
    padding: 20px;
    color: #000000;
    gap: 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #ffee01,#a57e00);
    cursor: pointer;
}

.contact-img {
    height: 55%;
    margin: 40px;
}

@media (max-width:800px) {
    .contact-input {
        width: 80vw;
    }
    
    .contact-container {
    height: 105vh;
}
    
    .contact-img{
        display: none;
    }
}