/* MAIN SETTINGS */

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Arimo&family=Montserrat:wght@800&family=Nanum+Gothic:wght@700&display=swap');

/* COLORS */

:root{
    --orange: #E88831;
    --fontgray: #2B2D2F;
    --darkgray: #707070;
    --gray: #BCBCB4;
    --lightgray: #DFDCD9;
    --lightblack: #2B2D2F;
    --darkcolor: #191919;
}




/* STYLES OF PAGE */

.container{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.menu{
    width: 100vw;
    height: 80px;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: fixed;
    z-index: 1;
}

.logo{
    width: 163px;
    height: 60px;
    margin-right: 300px;
}

.emr{
    -webkit-tap-highlight-color: transparent;
}

.menu_icon{
    display: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu img:hover{
    cursor: pointer;
}


.menu_element{
    margin-right: 70px;
    font-family:'Lucida Sans';
    font-size: 20px;
    font-weight: bold;
    color: var(--fontgray);
}


.button{
    color: var(--fontgray);
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.button::after{
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10%;
    width: 0%;
    height: 4%;
    border-radius: 100px;
    background-color: var(--fontgray);
    transition: ease-in-out .3s;
}

.button:hover::after{
    width: 80%;
}

/* INNA WERSJA HOVERA ZE ZMIANA TLA Z PADDINGAMI */

/* .button:hover{
    color: var(--orange);
    cursor: pointer;
    background-color: var(--fontgray);
    box-shadow: var(--fontgray) 0px 3px 8px;
    transition: ease-in .3s;
} */

.button_mobile{
    text-decoration: none;
    width: 100%;
    height: 16vh;
    line-height: 16vh;
    text-align: center;
    font-family:'Lucida Sans';
    font-size: 17px;
    font-weight: bold;
    color: whitesmoke;
    transition: ease-in-out .1s;
    -webkit-tap-highlight-color: transparent;
}

.button_mobile:active{
    background-color: var(--darkgray);
}

.button_mobile:nth-child(1){
    margin-top: 1vh;
}

.button_mobile:last-child{
    margin-bottom: 1.4vh;
}

.menu_mobile{
    position: absolute;
    right: 0;
    top: 120px;
    background-color: var(--fontgray);
    opacity: 0%;
    width: 65vw;
    height: 100vh;
    transform: translate(100%);
    transition: ease-in-out .3s;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu_mobile_active{
    transform: translate(0%);
}


h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}

.main{
    width: 100vw;
    min-height: 100%;
    background:url("photo/tlo.jpg") center no-repeat;
    background-size: cover;
    position: relative;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transparent_background{
    background-color: var(--lightgray);
    opacity: 85%;
    width: 100vw;
    /* height: 600px; */
    height: 65vh;
}

.company{
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: bold;
    color: var(--darkgray);
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 21%;
    /* margin-top: 6.5%; */
}

hr{
    width: 800px;
    height: 1px;
    background-color: var(--darkgray);
    position: relative;
    top: 28%;
    /* margin-top: 2.7%; */
}



.about{
    font-family: 'Arimo', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--lightblack);
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 35%;
    /* margin-top: 2.7%; */
    text-align: center;
}

.emro{
    color: var(--orange);
}





/* MEDIA QUERIES */

/* 1780px */

@media only screen and (max-width: 1780px){

    .company{
        font-size: 68px;
    }

    .about{
        font-size: 23px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 50px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 17px;
            top: 31%;
        }
    }

}


/* 1700px */

@media only screen and (max-width: 1700px){

    .menu{
        height: 72px;
    }

    .logo{
        margin-left: 100px;
        width: 149px;
        height: 55px;
    }

    .menu_element{
        font-size: 19px;
        margin-right: 64px;
    }

    .button{
        border-radius: 9px;
        padding-top: 9px;
        padding-bottom: 9px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .transparent_background{
        /* height: 570px; */
        height: 61vh;
    }

    .company{
        font-size: 66px;
    }

    hr{
        width: 770px;
    }

    .about{
        font-size: 22px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 50px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 17px;
            top: 31%;
        }
    }
}


/* 1630px */

@media only screen and (max-width: 1630px){

    .menu_element{
        font-size: 18px;
        margin-right: 60px;
    }

    .logo{
        margin-right: 220px;
    }

    .company{
        font-size: 64px;
    }

    hr{
        width: 730px;
    }

    .about{
        font-size: 21px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 46px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 15px;
            top: 31%;
        }
    }

}

/* 1580px */

@media only screen and (max-width: 1580px){

    .company{
        font-size: 61px;
    }

    .about{
        font-size: 20px;
    }

    .transparent_background{
        /* height: 540px; */
        height: 58vh;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 46px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 15px;
            top: 31%;
        }
    }
}


/* 1540px */

@media only screen and (max-width: 1540px){

    .company{
        font-size: 59px;
    }

    .logo{
        margin-right: 170px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 46px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 15px;
            top: 31%;
        }
    }
}

/* 1500px */

@media only screen and (max-width: 1500px){

    .company{
        font-size: 58px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 42px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}


/* 1460px */

@media only screen and (max-width: 1460px){

    .company{
        font-size: 57px;
    }

    .logo{
        margin-right: 130px;
    }

    .menu_element{
        margin-right: 45px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 42px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1420px */

@media only screen and (max-width: 1420px){

    .company{
        font-size: 55px;
    }

    .about{
        font-size: 18px;
    }

    hr{
        width: 700px;
    }

    .transparent_background{
        /* height: 500px; */
        height: 54vh;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 38px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1370px */

@media only screen and (max-width: 1370px){

    .menu{
        height: 69px;
    }

    .company{
        font-size: 53px;
    }

    .logo{
        margin-left: 60px;
        margin-right: 130px;
        height: 50px;
        width: 135px;
    }

    .menu_element{
        font-size: 17px;
        margin-right: 35px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 34px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1330px */

@media only screen and (max-width: 1330px){
    
    .company{
        font-size: 52px;
        top: 18%;
    }

    hr{
        width: 630px;
    }

    .about{
        top: 38%;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 34px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1290px */

@media only screen and (max-width: 1290px){

    .company{
        font-size: 51px;
    }

    hr{
        width: 530px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 32px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}
/* 1210px */

@media only screen and (max-width: 1210px){

    .logo{
        margin-right: 100px;
    }

    hr{
        width: 450px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 32px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1175px */

@media only screen and (max-width: 1175px){

    .menu_element{
        margin-right: 20px;
    }

    .button{
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo{
        margin-left: 30px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 32px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 14px;
            top: 31%;
        }
    }
}

/* 1110px */

@media only screen and (max-width: 1110px){

    .logo{
        margin-left: 0px;
        margin-right: 100px;
    }

    .menu_element{
        margin-right: 10px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 30px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 13px;
            top: 31%;
        }
    }
}

/* 980px */

@media only screen and (max-width: 980px){

    .menu_element{
        font-size: 16px;
    }

    .logo{
        margin-right: 70px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 28px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 13px;
            top: 31%;
        }
    }
}

/* 910px */

@media only screen and (max-width: 910px){

    .logo{
        margin-right: 83px;
    }

    .company{
        font-size: 48px;
        top: 21%;
    }

    hr{
        width: 400px;
    }

    .about{
        font-size: 16px;
        top: 35%;
    }

    .transparent_background{
        /* height: 450px; */
        height: 48vh;
    }

    .menu_element{
        font-size: 15px;
    }

    .button{
        padding-left: 17px;
        padding-right: 17px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 26px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 13px;
            top: 31%;
        }
    }
}

/* 890px */

@media only screen and (max-width: 890px){

    .about{
        width: 80%;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 24px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 13px;
            top: 31%;
        }
    }
}


/* 830px */

@media only screen and (max-width: 830px){

    .company{
        width: 80%;
    }

    .button{
        padding-left: 15px;
        padding-right: 15px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 24px;
            top: 17%;
        }

        hr{
            top: 24%;
        }

        .about{
            font-size: 13px;
            top: 31%;
        }
    }
}

/* 790px */

@media only screen and (max-width: 790px){

    .button{
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo{
        margin-right: 70px;
    }

    .transparent_background{
        /* height: 430px; */
        height: 46vh;
    }
}

/* 770px */

@media only screen and (max-width: 770px){

    .menu_element{
        font-size: 14px;
    }

    .logo{
        margin-right: 60px;
    }

    .about{
        width: 85%;
    }
}

/* 740px */

@media only screen and (max-width: 740px){

    .menu{
        height: 120px;
        align-items: center;
        justify-content: space-between;
    }

    .menu_mobile{
        opacity: 97%;
    }

    .logo{
        height: 90px;
        width: 243px;
        margin-right: 0px;
    }

    .menu_element{
        display: none;
    }

    .menu_icon{
        display: block;
        width: 15vw;
        height: 100px;
        margin-right: 40px;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .menu_icon_active .line:nth-child(1){
        transform: translateY(22px) rotate(-405deg);
    }

    .menu_icon_active .line:nth-child(2){
        transform: translateX(200px);
    }

    .menu_icon_active .line:nth-child(3){
        transform: translateY(-22px) rotate(405deg);
    }

    .line{
        width: 100%;
        height: 11px;
        background-color: var(--lightblack);
        margin: 11px;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        transition: .3s ease-in-out;
    }

    .transparent_background{
        height: 55vh;
    }

    .company{
        font-size: 48px;
        width: 88%;
        top: 17%;
    }

    hr{
        width: 480px;
        top: 28%;
    }

    .about{
        font-size: 18px;
        width: 88%;
        top: 39%;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 34px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 13px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 500px){

        .button_mobile{
            height: 15vh;
            line-height: 15vh;
        }
    }

    @media only screen and (max-height: 450px){

        .button_mobile{
            height: 14vh;
            line-height: 14vh;
        }
    }

    @media only screen and (max-height: 400px){

        .button_mobile{
            height: 13vh;
            line-height: 13vh;
        }

        .company{
            font-size: 26px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 350px){

        .button_mobile{
            height: 12vh;
            line-height: 12vh;
            font-size: 16.5px;
        }
    }

    @media only screen and (max-height: 300px){

        .button_mobile{
            height: 11vh;
            line-height: 11vh;
            font-size: 16px;
        }
    }
}


/* 700px */

@media only screen and (max-width: 700px){

    .company{
        font-size: 47px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 32px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 12px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 24px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 667px */

@media only screen and (max-width: 667px){

    .company{
        top: 19%;
    }

    .about{
        font-size: 17px;
        top: 37%;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 32px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 12px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 24px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 648px */

@media only screen and (max-width: 648px){

    hr{
        width: 420px;
    }

    .company{
        font-size: 45px;
    }

    @media only screen and (max-height: 630px){

        .company{
            font-size: 30px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 24px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 620px */

@media only screen and (max-width: 620px){

    .company{
        width: 90%;
        font-size: 43px;
    }

    .about{
        width: 90%;
        font-size: 16px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 30px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 23px;
            top: 17%;
        }

        hr{
            top: 22%;
        }

        .about{
            font-size: 9px;
            top: 27%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 565px */

@media only screen and (max-width: 565px){

    .company{
        top: 16%;
    }

    hr{
        top: 23%;
    }

    .about{
        top: 30%;
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 22px;
            top: 15%;
        }

        hr{
            top: 20%;
        }

        .about{
            font-size: 8.5px;
            top: 25%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

}

/* 540px */

@media only screen and (max-width: 540px){

    .company{
        font-size: 42px;
    }

    hr{
        width: 350px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 30px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

}

/* 510px */

@media only screen and (max-width: 510px){

    .company{
        font-size: 41px;
    }

    hr{
        width: 320px;
        height: 0.5px;
    }

    .about{
        font-size: 16px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 30px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 495px */

@media only screen and (max-width: 495px){

    .company{
        font-size: 40px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 30px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 11px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 485px */

@media only screen and (max-width: 485px){

    .company{
        width: 92%;
    }

    .about{
        width: 92%;
    }
}

/* 475px */

@media only screen and (max-width: 475px){

    .company{
        width: 94%;
    }

    hr{
        width: 300px;
    }

    .about{
        width: 94%;
    }
}

/* 460px */

@media only screen and (max-width: 460px){

    .company{
        font-size: 40px;
    }


    .button_mobile{
        font-size: 15px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 450px */

@media only screen and (max-width: 450px){
    
    .company{
        font-size: 39px;
    }

    .about{
        font-size: 15px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 440px */

@media only screen and (max-width: 440px){

    .company{
        font-size: 38px;
    }

    hr{
        width: 280px;
    }

    .logo{
        height: 82px;
        width: 222px;
    }

    .menu_icon{
        height: 75px;
        width: 75px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 430px */

@media only screen and (max-width: 430px){

    .company{
        font-size: 37px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 418px */

@media only screen and (max-width: 418px){

    .company{
        font-size: 36px;
    }

    hr{
        width: 270px;
    }

    .about{
        font-size: 14px;
    }

    .button_mobile{
        font-size: 14px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 26px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 21px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 8px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 407px */

@media only screen and (max-width: 407px){

    .company{
        font-size: 35px;
    }

    .logo{
        height: 77px;
        width: 210px;
    }

    .menu_icon{
        height: 70px;
        width: 70px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 24px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 9px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 20px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.7px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 395px */

@media only screen and (max-width: 395px){

    .company{
        font-size: 34px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 22px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 9px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 18px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.5px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 385px */

@media only screen and (max-width: 385px){

    .company{
        font-size: 33px;
    }

    hr{
        width: 260px;
    }

    .about{
        font-size: 13px;
    }

    .menu{
        height: 110px;
    }

    .menu_mobile{
        top: 110px
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 18px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.5px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 373px */

@media only screen and (max-width: 373px){

    .company{
        font-size: 32px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 18px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.5px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 360px */

@media only screen and (max-width: 360px){

    .company{
        font-size: 31px;
    }

    .button_mobile{
        font-size: 13px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 450px){

        .company{
            font-size: 18px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.5px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 350px */

@media only screen and (max-width: 350px){

    .company{
        font-size: 30px;
    }

    hr{
        width: 240px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 450px){

        .company{
            font-size: 18px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.5px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 340px */

@media only screen and (max-width: 340px){

    .company{
        font-size: 29px;
    }

    .logo{
        height: 68px;
        width: 185px;
    }

    .line{
        height: 10px;
    }

    .menu_icon_active .line:nth-child(1){
        transform: translateY(21px) rotate(-405deg);
    }

    .menu_icon_active .line:nth-child(2){
        transform: translateX(200px);
    }

    .menu_icon_active .line:nth-child(3){
        transform: translateY(-21px) rotate(405deg);
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 28px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 24px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 327px */

@media only screen and (max-width: 327px){

    .company{
        font-size: 28px;
    }

    hr{
        width: 220px;
    }

    .about{
        font-size: 12px;
    }

    .menu{
        height: 105px;
    }

    .menu_mobile{
        top: 105px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 26px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 22px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 317px */

@media only screen and (max-width: 317px){

    .company{
        font-size: 27px;
    }

    hr{
        width: 210px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 26px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 22px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 305px */

@media only screen and (max-width: 305px){
    
    .company{
        font-size: 26px;
    }

    .about{
        font-size: 11px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 26px;
            top: 23%;
        }

        hr{
            top: 30%;
        }

        .about{
            font-size: 10px;
            top: 37%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 22px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 293px */

@media only screen and (max-width: 293px){
    .company{
        font-size: 25px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 24px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 10px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 21px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}


/* 281px */

@media only screen and (max-width: 281px){
    
    .company{
        font-size: 24px;
    }

    .logo{
        width: 165px;
        height: 61px;
    }

    .line{
        height: 9px;
    }

    .menu_icon_active .line:nth-child(1){
        transform: translateY(20px) rotate(-405deg);
    }

    .menu_icon_active .line:nth-child(2){
        transform: translateX(200px);
    }

    .menu_icon_active .line:nth-child(3){
        transform: translateY(-20px) rotate(405deg);
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 24px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 10px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 20px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 270px */

@media only screen and (max-width: 270px){
    
    .company{
        font-size: 23px;
    }

    hr{
        width: 200px;
    }

    .about{
        font-size: 10px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 22px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 10px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 20px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 260px */

@media only screen and (max-width: 260px){
    
    .logo{
        width: 150px;
        height: 55px;
    }

    .line{
        height: 8px;
    }

    .menu_icon_active .line:nth-child(1){
        transform: translateY(19px) rotate(-405deg);
    }

    .menu_icon_active .line:nth-child(2){
        transform: translateX(200px);
    }

    .menu_icon_active .line:nth-child(3){
        transform: translateY(-19px) rotate(405deg);
    }

    .company{
        font-size: 22px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 22px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 10px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 19px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 9px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 17px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7.2px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 247px */

@media only screen and (max-width: 247px){
    
    .company{
        font-size: 21px;
    }

    hr{
        width: 190px;
    }

    .about{
        font-size: 8px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 21px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 9px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 18px;
            top: 17%;
        }

        hr{
            top: 23%;
        }

        .about{
            font-size: 8.4px;
            top: 29%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 16px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 236px */

@media only screen and (max-width: 236px){

    .company{
        font-size: 20px;
    }

    hr{
        width: 180px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 21px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 9px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 17.5px;
            top: 16%;
        }

        hr{
            top: 22%;
        }

        .about{
            font-size: 8.4px;
            top: 28%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 16px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}

/* 225px */

@media only screen and (max-width: 225px){

    .company{
        font-size: 19px;
    }

    hr{
        width: 170px;
    }

    @media only screen and (max-height: 670px){

        .company{
            font-size: 21px;
            top: 21%;
        }

        hr{
            top: 28%;
        }

        .about{
            font-size: 9px;
            top: 35%;
        }
    }

    @media only screen and (max-height: 500px){

        .company{
            font-size: 17px;
            top: 10%;
        }

        hr{
            top: 16%;
        }

        .about{
            font-size: 8.4px;
            top: 22%;
        }

        .transparent_background{
            height: 42vh;
        }
    }

    @media only screen and (max-height: 400px){

        .company{
            font-size: 15.5px;
            top: 13%;
        }

        hr{
            top: 18%;
        }

        .about{
            font-size: 7px;
            top: 23%;
        }

        .transparent_background{
            height: 42vh;
        }
    }
}