/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');


/* END IMPORTS */



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.6s;
    font-family: -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

body {
    background-color:#BBBBBB;
}


.container{
    margin-left: 5%;
    margin-right: 5%;
}





/* Navbar section */

.nav{
    top: 15px;
    width: 95%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    background-color: #191718;
    align-items: center;
    left: 2.5%;
    border-radius: 15px;
    z-index: 1;
}

.nav div.logo{
    width: 180px;
    height: 10px;
    position: absolute;
}

.nav div.logo a{
    text-decoration: none;
    color: #fff;
    font-size: 1.8em;
    text-transform: uppercase;
}

.nav div.logo a:hover {
    color: #BBBBBB;
    transition: all 0.2s;
}

.nav div.main_list{
    width: 400px;
    height: 65px;
    float: right;
}

.nav div.main_list ul{
    width:100%;
    height: 65px;
    display: flex;
    list-style: none;
}

.nav div.main_list ul li{
    width: 120px;
    height: 65px;
}

.nav div.main_list ul li a{
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    text-transform: uppercase;
}

.nav div.main_list ul li a:hover{
    color: #BBBBBB;
    transition: all 0.2s;
}

.nav div.media_button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    position: absolute;
    right: 15px;
    top: 12px;
    display: none;
}

.nav div.media_button button.main_media_button {
    width: 100%;
    height: 100%;
    background-color: transparent;;
    outline: 0;
    border: none;
    cursor: pointer;
}

.nav div.media_button button.main_media_button span{
    width: 98%;
    height: 1px;
    display: block;
    background-color: #fff;
    margin-top: 9px;
    margin-bottom: 10px;
}



/* Home section */

.home{
    width: 100%;
    height: 100vh;

}

.parallax-window {
    height: 100%;
    width: 100%;
    background: url('/tarik-haiga-P3nSGQwF4Mk-unsplash.jpg') no-repeat fixed;
}




/* Media section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    
    .container{
        margin: 0;
    }


    
}




@media screen and (max-width:768px) {

    .parallax-window{
        height: 100%;
        width: 100%;
        object-fit: cover;
        background: url('/nicolas-solerieu-4gRNmhGzYZE-unsplash.jpg') no-repeat fixed;
    }

    .container{
        margin: 0;
    }
    
    .sk-fading-circle {
        top: 50%;
        left: 47%;
        width: 40px;
        height: 40px;
        position: relative;
    }

    .nav{
        border-radius: 15px;
    }

    .nav div.logo{
        margin-left: 15px;
    }
    
    .nav div.main_list{
        width: 100%;
        margin-top: 65px;
        height: 0px;
        overflow: hidden;
    }
    
    .nav div.show_list{
        height: 200px;
    }
    
    .nav div.main_list ul{
        flex-direction: column;
        width: 100%;
        height: 200px;
        top: 80px;
        right: 0;
        left: 0;
    }

    .nav div.main_list{
        margin-top: 70px;
        border-radius: 20px;
    }
    
    .nav div.main_list li:nth-child(3){
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }


    .nav div.main_list ul li{
        width: 100%;
        height: 40px;
        background-color: #191718;
        
    }
    
    .nav div.main_list ul li a{
      text-align: center;
        line-height: 40px;
        width: 100%;
        height: 40px;
        display: table;
    }
    
    .nav div.media_button{
        display: block;
    }
}


/* END Navbar section */




/* DIV class usluge */

.usluge{
    height: 900px;
    width: 100%;
}

.usluge h2 {
    font-family: "Arvo" sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 35px;
    padding: 0.5em 0.5em 0.5em;
    
    
}

/* Services Section */

.wrapper{
    max-width: 1200px;
    margin: 2% auto;
}
.wrapper h2{
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin: 0;
    padding: 0.5em 0.5em 0.5em;
}
.single-service {
position: relative;
width: 31%;
height: 320px;
background: #fff;
box-sizing: border-box;
padding: 0 15px;
transition: .5s;
overflow: hidden;
float: left;
margin: 0 10px;
text-align: center;
margin-bottom: 30px;
border-radius: 20px;
}
.line {
width: 150px;
height: 3px;
background: #fff;
margin: 0 auto 60px auto;
}
.single-service p{            
    color: #262626;
    font-size: 14px;
}
.single-service h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-family: poppins;
    letter-spacing: 1px;
    color: #262626;
}
.social {
width: 65px;
height: 65px;
background: #262626;
border-radius: 50%;
margin: 5% auto;
}
.social i {
font-size: 30px;
padding: 15px;
color: #fff;
vertical-align: middle;
margin-left: auto;
margin-right: auto;
}
.single-service:hover{
    box-shadow: 0 30px 35px rgba(0,0,0,0.7);
}


@media (max-width:1000px){
    .wrapper {
width: 100%;
}
.single-service {
width: 95%;
margin-bottom: 30px;
}
.wrapper h2 {
font-size: 30px;
}
}



  /* End Services Section */


/* END  DIV class usluge */


/* START gallery slider section */

.title-usluge{
    height:auto;
    text-align:center;
}

.title-usluge h2{
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin: 0;
    padding: 0.5em 0.5em 0.5em;
}

.gallery-container {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 600px;
  }
  
  .gallery-container h1 {
    margin-top: 75px;
    font-size: 3rem;
    margin-bottom: 25px;
    font-family: "Raleway", sans-serif;
  }
  
  .gallery-container a {
    font-size: 20px;
    color: rgb(0, 122, 255);
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 45px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 15%; /* IE10 */
    flex: 15%;
    max-width: 30%;
    padding: 0 4px;
    justify-content: center;
    max-height: 600px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    height: 450px;
    border-radius: 6%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .gallery-container {
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: auto;
      }
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }
  
/* END gallery slider section */








/* START Footer section */

.container {
    flex: 1;    /* same as flex-grow: 1; */
}

.ft-main {
    display: flex;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-left:auto;
    margin-right:auto;
    overflow-x: hidden;
}

.ft-main-item {
    padding: 1.25rem;
    min-width: 12.5rem /*200px*/;
}

.ft-main-item ul li {
    list-style-type: none;
}

footer {
    background-color: #555555;
    color: #bbbbbb;
    line-height: 1.5;
    padding: 1.25rem 1.875rem;
    display: flex;
    flex-wrap: wrap;
}

footer a{
    text-decoration: none;
    color: #eeeeee;
}

footer li{
    margin-bottom: 12px;
}

a:hover {
    text-decoration: underline;
}
.ft-title {
    color: #fff;
    font-family: 'Titilium', sans-serif;
    font-size: 1.375rem;
    padding-bottom: 0.625rem;
}

.ft-title2 {
    color: #fff;
    font-family: 'Titilium', sans-serif;
    font-size: 1.375rem;
    padding-bottom: 1.3rem;
}

.ft-class{
    list-style: none;
    padding-left: 0; ;
}

form {
    display: flex;
    flex-wrap: wrap;
}
input[type="email"] {
    border: 0;
    padding: 0.625rem;
    margin-top: 0.3125rem;
    width: 250px;
}

input[type="message"] {
    border: 0;
    padding: 0.625rem;
    margin-top: 0.3125rem;
    width:250px;
}

input[type="submit"] {
    background-color: #416dea ;
    color: #fff;
    cursor: pointer;
    border: 0;
    padding: 0.625rem 0.9375rem;
    margin-top: 0.3125rem;
}

input[type="submit"]:hover {
    background-color:#959595;
    transition: all 0.3s;
}




@media only screen and (max-width:900px){
    .ft-main{
        width:100%;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
    footer li{
        margin-bottom: 5px;
    }
}

/* END Footer section */