@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
    margin: 0 auto;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('hero-pic.jpg') no-repeat center -1050px;
    background-attachment: fixed;
}
input{
    font-family: 'Poppins', sans-serif;
}
/*end option----------------------*/
body::-webkit-scrollbar {
    width: 0.7em;
  }
  body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }
/*-------------------left menu----------*/
.left-menu{
    position: fixed;
    left: 0px;
    top: 30%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 10000;
}
.left-menu ul{
    list-style: none;
}
.left-menu ul li{
    border:2px solid rgba(61, 166, 1,1);
    background: rgba(61, 166, 1,0.8);
    height: 2.5vw;
    width: 2.5vw;
    border-radius: 100%;
    margin-top: 20px;
    text-align: center;
    position: relative;
    transition: 0.8s;
    cursor: pointer;
    z-index: 1;
    transition: 0.7s;
    left: -200px;
}
.left-menu ul li:hover{
    background: rgba(61, 166, 1,1);
}
.left-menu ul li:hover::before{
    width: 100px;
}
.left-menu ul li:before{
    overflow: hidden;
    transition: 0.3s;
    content: attr(title);
    position: absolute;
    top: 50%;
    transform: translateY(-49%);
    -webkit-transform: translateY(-49%);
    -o-transform: translateY(-49%);
    -moz-transform: translateY(-49%);
    left:-2px;
    padding-left: 100%;
    width: 0vw;
    height: 2.5vw;
    background: red;
    border-radius: 50px 50px 50px 50px;
    border:2px solid rgba(61, 166, 1,1);
    z-index: 0;
    background: rgba(61, 166, 1,0.3);
    text-align: center;
    line-height: 2.5vw;
    border-radius: 50px 50px 50px 50px;
    font-weight: 800;
    color: #f5f5f5;
    text-shadow: 0px 0px 2px #000;
    
}
.left-menu ul li i{
    font-size: 1.7vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    color: #fff;
}
/*----------------home---------------*/
/*-------------- header--------------*/
   .header{
       width: 100%;
       height:140px;
       position: absolute;
       background: transparent;
       z-index: 100;
       padding-top: 0px;
       background-color: rgba(255,255,255,0.8);
   }
   .content-header{
       position: relative;
       margin: 0 auto;
       width: 1200px;
       height: 120px;
   }
   .header-left{
       width: 300px;
       height: 120px;
       background: transparent;
       float: left;
   }
   .header-center{
    width: 900px;
    height: 120px;
    background: transparent;
    float: left;
    position: relative;
    text-align: right;
   }
   .header-center ul{
    list-style: none;
    margin: 0px auto;
    position: absolute;
    right: 0%;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    height: 40px;
    width: 900px;
   }
   .header-center ul li{
		width: 180px;
		height: 40px;
		font-size: 24px;
		float: left;
		color: #685419;
		font-weight: 400;
        box-sizing: border-box;
        padding-top: 6px;
        
        letter-spacing: 3px;
        text-align: center;
        transition: 0.6s;
		position: relative;
   }
   #flag::after{
    display: none !important;
   }
   #flag:hover{
        transform: scale(1.1,1.1);
        -webkit-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
   }
   .header-mobile{
       display: none;
   }
   .mobile-menu{
       display: none;
   }
   .header-center ul li:hover{
       color: #c7c7c7;
   }
   .header-center ul li::after{
       background-color: #3da601;
       height: 2px;
       width: 0%;
       position: absolute;
       content: '';   
       bottom: 0px;
       left: 50%;
       transform: translateX(-50%);
       -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
       transition: 0.6s;
    }
    .header-center ul li:hover::after{
        width: 90%;
    }
    .header-right{
        width: 00px;
        float: left;
        height: 120px;
    }
	
	/*.header-cont{
        width: 160px;
        height: 40px;
        background: #fff;
        color: #685419;
        position: absolute;
        right: 0;
        text-align: center;
        font-size: 25px;
        padding-top: 10px;
        transition: 0.6s;
		font-weight: 400;
	}
	
	.header-cont:hover{
		background: #685419;
		color: #fff;
	}

   /*--------------home -------------*/
.home-sec{
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-background-size: 100%;
    -o-background-size: 100%;
    -moz-background-size: 100%;
    width: 100%;
    height:100vh;
    padding-top: 10px;
    box-sizing: border-box;
    overflow: hidden;
}
.home-sec:after{
    margin-top: -10px;
    height: 100vh;
    width: 100%;
    content: ' ';
    background: #685419;
    display: block;
    box-sizing: border-box;
    opacity: 0.25;
    position: absolute;
    z-index: 0;
}
.content-home{
    width: 1200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    position: absolute;
    z-index: 1;
}
.content-home h1{
    text-align: center;
    color:#f5f5f5;
    font-weight: 800;
    letter-spacing: 5px;
    
    top:200px !important;
    font-size: 60px;text-shadow: 1px 1px #000;
}

.content-home p{
    text-align: center;
    color:#f5f5f5;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px #000;
    font-size: 20px;
    margin-left: 0px;
}
.btn{
    margin: 0 auto;
    width: 500px;
    height: 70px;
}
.btn a{
    float: left;
}
.right-btn-home{
    background: #f5f5f5;
    width: 120px;
    height: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    text-align: center;
    font-size: 18px;
    padding-top: 10px;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: 400;
    border: 2px solid #f5f5f5;
    color: #000;
    transition: 0.9s  ;
    letter-spacing: 2px;
    margin-top: 30px;
}
.right-btn-home:hover{
    background: #685419;
    color: #fff;
    border:2px solid #685419;
    
}
/*--------uslugiii-----------------------*/
.services{
    height: 180vh;
    width: 100%;
    background-color: #f5f5f5;
    box-sizing: border-box;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
}
.services::after{
    height: 5px;
    position: absolute;
    content: '';
    background-color: #c9c9c9;
    width: 20%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    left: 50%;
    bottom: 0px !important;
}
.services h2{
    width: 100%;
    height: 10vh;
    font-size: 60px;
    text-align: center;
    margin-bottom: 3vh;
    margin-top: 5vh;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}

.con-serv{
    width: 1200px;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.box-serv{
    height: 90%;
    width: 45%;
    background-color: transparent;
	float: left;
	margin-left: 2%;
	margin-right: 2%;
    margin-top: 1%;
    text-align: center;
    box-sizing: border-box;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    
}
.box1{
    opacity: 0;
}
.box2{
    opacity: 0;
}
.box3{
    opacity: 0;
}
.box4{
    opacity: 0;
}
.box3 i{
    margin-top: 20px;
}
.box4 i{
    margin-top: 20px;
}
.box-serv i{
    font-size: 5vw;
    color: #3da601;
}
.box-serv h3{
    font-size: 2vw;
    margin-top: 5px;
    position: relative;
    font-weight: 400;
}
.box-serv h3::after{
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 40%;
    background-color: #d4d4d4;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    left: 50%;
}
.box-serv p{
    font-size: 1rem;
}
.box-serv{
    display: block;
}
.box-serv-o2{
    display: none;
}
/*-------------------opcja 2----------------*/

/*----------------- o  nas ------------------*/
.about-us{
    height: 120vh;
    width: 100%;
    background-color: #f5f5f5;
    position: relative;
    box-sizing: border-box;
    padding-top: 5vh;
    overflow: hidden;
}
.about-us::after{
    height: 5px;
    position: absolute;
    content: '';
    background-color: #c9c9c9;
    width: 20%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    left: 50%;
    bottom: 0px;
}
/*-----------------------o nas opcja 2---------------------*/
.box-about-us-o2{
    margin: 0 auto;
    height: 110vh;
    width: 1000px;
    box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
-webkit-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
-moz-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
-o-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
overflow: hidden;
background: url(company.jpg);
background-repeat: no-repeat;
background-size:cover;
display: block;
}
.left-about-us-o2{
 width: 50%;
 height: 80vh;
 background: transparent;
 float: left;
}
.right-about-us-o2{
    width: 50%;
    height: 110vh;
    float: left;
    background: rgba(255,255,255,0.8);
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
}
.right-about-us-o2 h2{
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
}
.right-about-us-o2 p{
    font-weight: 500;
    text-align: left;
    font-size: 17px;
}
/*--------------------------kontakt---------------*/
.contact-mob{
    display: none;
}
.contact{
    height: 100vh;
    width: 100%;
    background-color: #f5f5f5;
    padding-top: 5vh;
    box-sizing: border-box;
}
.content-contact{
    width: 1200px;
    height: 90vh;
    margin: 0 auto;
    border-radius: 10px;
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.forms{
    width: 100%;
    height: 90vh;
    position: absolute;
    left: 0px;
    float: left;

}
.content-forms{
    height: 80vh;
    width: 60%;
    background-color: rgba(61, 166, 1,0.9);
    box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
    -webkit-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
    -moz-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
    -o-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.48);
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    color: #fff;
}
.content-forms h2{
    height: 10vh;
    margin: 0px !important;
    font-size: 30px;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}
.content-forms form{
    height: 60vh;
    width: 100%;
    text-align: center;
    margin-top: 5vh;
}
.butt{
height: 40px;
border: none;
background-repeat: no-repeat;
background-image:
linear-gradient(to right, #685419 100%, #685419 100%),
linear-gradient(to bottom, #685419 100%, #685419 100%),
linear-gradient(to right, #685419 100%, #685419 100%),
linear-gradient(to bottom, #685419 100%, #685419 100%);
margin-top: 10px;
width: 180px;
font-size: 17px;
color: #685419;
background-size:   100% 2px,2px 100%,100% 2px,2px 100%;
background-position: 0 0,100% 0,100% 100%,0 100%;

font-weight: 600;
cursor: pointer;
}

.butt:hover {
animation: around 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
-webkit-animation: around 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
-o-animation: around 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
-moz-animation: around 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
}
@keyframes around {
0% {
background-size: 0 2px,2px 0,0 2px,2px 0;
}
25% {
background-size: 100% 2px, 2px 0, 0 2px, 2px 0;
}
50% {
background-size: 100% 2px, 2px 100%, 0 2px,2px 0;
}
75% {
background-size:   100% 2px, 2px 100%, 100% 2px,2px 0;
}
100% {
background-size:    100% 2px, 2px 100%, 100% 2px,2px 100%;
}
}

.box-contact-name{
width: 80%;
font-size: 14px;
margin-top: 0px;
margin: 0 auto;
text-align: left;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 30px;
}
.box-contact-name input{
width: 100%;
border:none;
outline: none;
font-size: 20px;
margin-top: 10px;
border-bottom: 2px solid #fff;
background-color: transparent !important;
color: #fff;
padding-bottom: 5px;
}
.box-contact-name input::placeholder{
    color: #fff;
}
.box-contact-email{
width: 80%;
font-size: 14px;
margin-top: 80px;
margin: 0 auto;
text-align: left;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 30px;
}
.box-contact-email input{
width: 100%;
border:none;
outline: none;
font-size: 20px;
margin-top: 10px;
border-bottom: 2px solid #fff;
background-color: transparent !important;
padding-bottom: 5px;
color: #fff;
}
.box-contact-email input::placeholder{
    color: #fff;
}
.box-contact-mess{
width: 80%;
font-size: 14px;
margin-top: 80px;
margin: 0 auto;
text-align: left;
text-transform: uppercase;
font-weight: 700;

}
textarea{
    font-family: 'Poppins', sans-serif;
}
.message{
width: 100%;
height: 120px;
outline: none;
border-top:none;
border-left: none;
border-right: none;
border-bottom: 2px solid #fff;
font-size: 20px;
margin-top: 10px;
background-color: transparent;
color: #fff
}
.message::placeholder{
    color: #fff;
}

/*----------------------------przyciski-------------------------*/

.data-company{
position: absolute;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-o-transform: translateY(-50%);
-moz-transform: translateY(-50%);
right: 0px;
height: 40px;
width: 140px;
border: 2px solid #3da601;
cursor: pointer;
font-size: 20px;
color: #fff;
background: rgba(61, 166, 1,0.7);
transition: 0.6s;
z-index: 100000000;
float: left;
}
.data-company:hover{
background: rgba(61, 166, 1,0.9);
}
.data-company i{

animation: arrow-right 0.7s linear;
-webkit-animation: arrow-right 0.7s linear;
-o-animation: arrow-right 0.7s linear;
-moz-animation: arrow-right 0.7s linear;
float: right;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
}

.form-company{
position: absolute;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-o-transform: translateY(-50%);
-moz-transform: translateY(-50%);
left: 0px;
height: 40px;
width: 140px;
border: 2px solid #3da601;
font-size: 20px;
color: #fff;
background: rgba(61, 166, 1,0.7);
transition: 0.6s;
z-index: 100000000;
float: left;
display: none;
cursor: pointer;
}
.form-company:hover{
background: rgba(61, 166, 1,0.9);
}
.form-company i{

animation: arrow-left 0.7s linear;
-webkit-animation: arrow-left 0.7s linear;
-o-animation: arrow-left 0.7s linear;
-moz-animation: arrow-left 0.7s linear;
float: left;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
}


@keyframes arrow-right {
0%{
    transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
}
100%{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -moz-transform: translateX(0px);
}
}
@keyframes arrow-left {
0%{
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -o-transform: translateX(5px);
    -moz-transform: translateX(5px);
}
100%{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -moz-transform: translateX(0px);
}
}


/* dane firmy --------------------------------*/


.data{
    width: 100%;
    height: 90vh;
    position: absolute;
    float: left;
    background-color: transparent;
    right: -100%;
}
.data-content{
    height: 80vh;
    width: 70%;
    background-color: #ffff;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    border-radius:20px;
}
.data-content h2{
    height: 10vh;
    margin: 0px !important;
    font-size: 30px;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    
}
.data-content-box{
    height: 70vh;
    width: 100%;
    text-align: center;
    margin-top: 0vh;
    box-sizing: border-box;
    position: relative;
}
.data-content-left{
    width: 80%;
    height: 70vh;
    position: relative;
    margin: 0 auto;

}
.data-content-left ul{
    list-style: none !important;
    text-align:center;
    height: 30vh;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
}
.data-content-left ul li{
line-height: 30px;
font-size: 22px;
text-align: center;
}

/*.data-content-right{
    height: 30vh;
    width: 50%;
    float: left;
    position: relative;
}
.data-content-right ul{
    list-style: none !important;
    position: absolute;
    left: 20px;
    text-align: left;
    height: 30vh;
}
.data-content-right ul li{
line-height: 30px;
font-size: 22px;
}*/


.data-content-icon{
    height: 10vh;
    width: 100%;
    position: relative;
}
.data-content-icon ul{
height: 10vh;
width: 200px;
list-style: none;
padding-left: 0px;
margin-left:0px;
margin: 0 auto;
position: absolute;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-o-transform: translateX(-50%);
-moz-transform: translateX(-50%);
}
.data-content-icon ul a li{
float: left;
font-size: 25px;
height: 40px;
width: 40px;
border:1px solid #3da601;
color: #3da601;
border-radius: 100%;
text-align: center;
margin-left: 20px;
padding-top: 2px;
box-sizing: border-box;
top:0px;
position: relative;
}
/*-------------------kontakt-------------------*/


/*footer------------------------*/
.footer{
    height: 11vh;
    width: 100%;
    position: relative;
    background-color: #c7c7c7;
    text-align: center;
    line-height: 10vh;
}
.footer-icon{
    height: 80px;
    background-color: #3DA601;
    width: 100%;
    position: relative;
    padding-top: 10px;
    box-sizing: border-box;
}
.footer-icon ul{
    height: 80px;
    width: 200px;
    list-style: none;
    padding-left: 0px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 5px;
}
.footer-icon ul li{
    float: left;
    font-size: 25px;
    height: 40px;
    width: 40px;
    border:1px solid #fff;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    margin-left: 20px;
    box-sizing: border-box;
    position: relative;
}
.footer-icon ul li i{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}
.data-corpo-mobile{
    display: none;
}



























/*========================css mobile===============*/
@media  screen and (max-width: 900px){
    .option{
        display: none !important;
    }
    body::-webkit-scrollbar {
        width: 0em !important;
      }
    html,
    body{
    width:100% !important;
    overflow-x:hidden;
    width: 100%; 
    height: auto; 
    margin: 0px; 
    padding: 0px; 
    overflow-x: hidden;
    
    }
    body{
        background: url('telefonbg.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center center;
        
    }

    .header{
        display: none;
    }
    .header-mobile{
        display: block;
        height: 60px;
        width: 100%;
        background-color: transparent;
        position: relative;
        z-index: 10;
    }
    .header-left-mobile{
        width: 50%;
        height: 50px;
        float: left;
       
        box-sizing: border-box;
        padding-left: 10px;
        padding-top: 10px;
    }
    .header-right-mobile{
        width: 50%;
        height: 50px;
       
        float: left;
    }
    .mobile-menu-btn{
        position: absolute;
        right: 30px;
        top:30px;
        font-size: 40px;
        color: #fff;
        background-color: transparent;
        border:none;
        outline: none;
    }
    /*------------mobile menu-----------*/
    .mobile-menu{
        height: 100vh;
        position: fixed;
        width: 100%;
        background-color: #f5f5f5;
        z-index: 10000;
        text-align: center;
        right: -100%;
        display: block;
    }
    .menu-mobile-content{
        list-style: none;
        width: 100%;
        margin-top: 100px;
        text-align: center;
        margin-left: 0px;
        padding-left: 0px;
    }
    .mobile-menu ul a{
        text-decoration: none;
    }
    .menu-mobile-content li{
        line-height: 70px;
        font-size: 30px;
        color: #fff;
        text-decoration: none;
        color: #3da601;
    }
    .box-icon-mobile-menu{
        width: 100%;
        height: 70px;
        position: relative;
        margin-top: 60px;
    }
    .menu-mobile-icon{
        width: 200px;
        text-align: center;
        list-style: none;
        margin: 0 auto;
        height: 70px;
        padding-left: 0px;
        
    }

    .menu-mobile-icon li{
        float: left;
       box-sizing: border-box;
        font-size: 30px;
        color: #3da601;
        border:1px solid #3da601;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        margin-left: 12.5px;
        position: relative;
    }
    .menu-mobile-icon li i{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    .quit-mobile-menu{
        clear: both;
        margin-top: 40px;
        height: 60px;
        width: 60px;
        outline: none;
        border-radius: 100%;
        box-sizing: border-box;
        font-size: 30px;
        border:1px solid #3da601;
        background-color: #3da601;
        color: #FFF;
    }


/*opcja dwa mobile */



    .left-menu{
        display: none !important;
    }
    .header-left-mobile img{
        width: 80%;
        margin-left: 10px;
    }


   .home-sec{
       width: 100%;
       height: 100vh !important;
   }

   .content-home{
       width: 100% !important;
       height: 100vh;
       padding-top: 300px !important;
   }
   .content-home h1{
    width: 100%;
    font-size: 40px;
    margin-top:0px;
    
}
 .content-home::after{
     background-color: transparent !important;
 }
 .content-home p{
     font-size: 24px;
     text-shadow: 1px 1px #000;
 }  
.home-sec:after {
    margin-top: -10px;
    height: 100vh;
    width: 100%;
    content: ' ';
    background: transparent !important;
    display: none !important;
    box-sizing: border-box;
    opacity: 0.25;
    position: absolute;
    z-index: 0;
}

   
   .services{
      position: relative;
      overflow: auto !important;
      height: auto !important;
   }
   .services h2{
    margin-bottom: 50px ;
   }
   .con-serv{
       width: 100%;
   }
   .box-serv{
       width: 100%;
       height: auto !important;
       margin-left: 0px !important;
       margin-top: 10px !important;
   }
   .about-us{
       height: auto !important;
       padding-bottom: 30px !important;
   }  
   .box3 i{
    margin-top: 0px !important;
   }
   .box4 i{
       margin-top: 0px !important;
   }
   .box-serv h3{
       font-size: 25px;
   }
   .box-serv i{
       font-size: 50px;
   }


   .box-about-us{
    width: 100%;
}
    .about-us{
    height: auto !important;
    width: 100%;
}
    .box-about-us{
        width: 100%;
    }
    .left-about-us{
        width: 100%;
        height: 400px;
    }
    .left-top{
        height: 80%;
    }
    .left-bottom{
        height: 10%;
    }
    .left-bottom h3{
        font-size: 20px;
    }
    .right-about-us{
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 15px;
        height: auto !important;
    }
    .right-about-us h2{
        font-size: 30px;
    }
    .right-about-us p{
        font-size: 1rem;
        width: 100%;
    }
    .box-about-us-o2{
        height: auto !important;
        width: 100%;
    }
    .left-about-us-o2{
        width: 100%;
        height: 00px;
    }
    .right-about-us-o2{
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 15px;
        font-size: 20px;
        height: auto !important;
    }


.contact{
    display: none;
}

    /*kontakt mobie*/
    .contact-mob{
        height: 850px;
        z-index: 0;
        display: block;
        padding-top: 40px;
        background-color: #f5f5f5;
    }
    .contact-mob h2{
        font-size: 40px;
        height: 150px;
        margin-top:0px !important;
        text-align: center;
    }
    .contact-mob form{
        width: 100% !important;
        position: relative;
        height:700px !important;
        padding-top: 0px !important;
        
    }
    .con-form{
        width: 100%;
        position: relative;
        padding-left: 00px;
    }
    .info{
        display: none;
    }
    .imie-input{
        width: 100%;
        margin-top: 0px;
        position: relative;
        height: 70px;
    }
    .imie-input span{
        margin-left: 5%;
        opacity: 0;
    }
    .imie-input input{
        width: 90%;
        height: 40px;
        font-size: 1.3rem;
       margin: 0 auto;
       position: absolute;
       left: 50%;
       padding-left: 15px;
       transform: translateX(-50%);
        }
    .email-input{
        width: 100%;
        margin-top: 20px;
        position: relative;
        height: 70px;
    }
    .email-input span{
        margin-left: 5%;
        opacity: 0;
    }
    .email-mob{
        width: 90%;
        height: 40px;
        font-size: 1.3rem;
       margin: 0 auto;
       position: absolute;
       left: 50%;
       transform: translateX(-50%);
       margin-top: 20px;
       padding-left: 15px;
        }

    #wiadomosc{
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
        height: 200px;
        font-size: 1.3rem;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        padding: 15px;
    }
    .butt-mob{
        margin-top: 50px;
        height: 50px;
        font-size: 22px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border: 2px solid #3da601;
    }
    .butt{
        transform: translate(-50%);
        -webkit-transform: translate(-50%);
        -o-transform: translate(-50%);
        -moz-transform: translate(-50%);
    left: 50%;
    position: relative;
    }
    .data-corpo-btn{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        border: 2px solid #3da601;
        color: #3da601;
        border-radius: 0px;
        height: 50px;
        width: 120px;
        font-size: 20px;
        margin-top: -180px;    }
    .data-corpo-mobile{
        height: 100vh;
        position: fixed;
        width: 100%;
        background-color: #f5f5f5;
        z-index: 10001;
        text-align: center;
        right: -100%;
        display: block;
        
    }
    .data-corpo{
        display: none;
    }
    .left-data-cor-mobile{
        width: 100%;
        box-sizing: border-box;
        float: left;
        margin-top: 20px;
    }
    .left-data-cor-mobile ul{
        padding-left: 0px;
        list-style: none;
        text-align: center;
        box-sizing: border-box;
        margin-left: 0px;
    }
    .right-data-cor-mobile{
        width: 50%;
        box-sizing: border-box;
        float: left;
        margin-top: 100px;
    }
    
    .del-mobile{
        clear: both;
        margin-top: 80px;
        height: 60px;
        width: 60px;
        outline: none;
        border-radius: 100%;
        box-sizing: border-box;
        font-size: 30px;
        border:1px solid #3da601;
        background-color: transparent;
        text-align: center;
        background-color: #3da601;
        color: #fff;
        position: absolute;
        left:50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        bottom:40px;
    }


    .box-icon-mobile-data{
        width: 100%;
        height: 70px;
       
        margin-top: 90px;
        text-align: center;
    }
    .table-data-mobile{
        height: 250px;
    }
    .data-mobile-icon{
        width: 200px;
        height: 70px;
        list-style: none;
        margin: 0 auto;
        padding-left: 0px;
        position: relative;
    }
    .data-mobile-icon li{
        width: 50px;
        height: 50px;
        float: left;
        margin-left: 12.5px;
        box-sizing: border-box;
        font-size: 30px;
        border:1px solid #3da601;
        border-radius: 100%;
        color: #3da601;
        position: relative;
    }
    
    .data-mobile-icon a li i{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
    }
    .footer{
        height: auto !important;
        line-height: none !important;
        font-size: 13px !important;
    }
}

