@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    /* overflow-x: hidden; */
}
:root{
    --text-gray:#3f4954;
    --text-light:#686666da;
    --bg-color:#563d7c;
    --white:#fff;
    --midnight:#104f55;
    --black:#0f0f0f;
    /* gradient color */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);

}

.container-fluid{
    margin: 0 ;
    padding: 0 ;
}

a{
    text-decoration: none ;

}
.flex-row{
    display: flex ;
    flex-direction: row ;
    justify-content: space-between ;
    flex-wrap: wrap ;

}
ul{
    list-style-type: none;
}
h1{
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    text-shadow: 2px 2px 3px 4px #bbb;
}
h3{
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;

}
h2{
     font-family: 'Roboto', sans-serif;

}
button.btn{
    border: none;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}
.text-gray{
    color: #fff;
}
p{
    font-size: 1rem;
     font-family: 'Roboto', sans-serif;
    color: var(--text-light);
}

/* Navbar css*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.5s ease;
    background: transparent;
    /* transform: translate3d(0px, 0px, 0px); */
}
.nav{
    height: 0vh ;
    width: 100%;
    min-height: 11vh ;
    overflow: hidden ;
    transition:height 1s ease-in-out ;
}
.top-menu.add-bg{background: black;}
.nav ,.nav-menu{
    justify-content: space-between ;
}

.nav .nav-item{
    display: flex;
    justify-content: space-between;
}

.nav .nav-brand a{
    font-size: 1.6rem;
    line-height: 70px;
   display: block;
   color: white;
   font-family: 'Roboto', sans-serif;
   margin-left: 1.5em;
}
.nav .nav-brand a.add-color{
    color: white;
}
.nav .nav-item .nav-link a{
    line-height:73px;
   margin-left: 2em ;
    padding-bottom:1em;
    color:#fff;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem ;

}
.nav .nav-item .nav-link a.add-link{
    color: white;
}


.nav .nav-item .nav-link a:hover{
    color:#bbb;
  border-bottom: 5px solid #fefefe;
}
.nav .nav-item .nav-link a.active{
    border-bottom: 5px solid #fefefe;
}


.nav .toggle-icons i{
   color: white;
   font-size: 2em;
   float: right;
   margin-top: 0.8em;
}
.nav .toggle-collapse{
    position: absolute;
    top: 0%;
    width: 90%;
    cursor: pointer;
    display: none;

}
.text-gray a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 70px;
    margin-right: 2em;
    text-transform: uppercase;
    padding: 0.5em 0.5em;
}
.text-gray a:hover{
 background: #191970;
 color: #bbb;
}
 .sidebar{
     background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
    display:none;
    width:100%;
    height: 100%;
    position:fixed;
    top:0px;
    left: 0;
    transition: 0.5s;
    z-index:2;
}
.sidebar .sidenav-items{
    background-color:whitesmoke;
    width:270px;
    height: 100vh;
}

.sidebar .sidenav-items li {
    padding: 1em 2em 1em 2em;
}
.sidebar ul li a{
    text-decoration: none;
    font-size: 25px;
    color: #111;
    display: block;
    transition: 0.3s;
    font-size: 1rem;

}
 .sidebar ul li a:hover{
    color: #818181;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
   .nav-link .fa-times{
    font-size: 1.5rem;
  }


/*search*/

.searchBlock .mainBlock{
    display: flex;
   flex-wrap: wrap;
}
.searchBlock .mainBlock .search-block1{
    width: 20%;
}
.searchBlock .mainBlock .searchForm{
 width: 60%;
}
.searchBlock .mainBlock .search-block2{
    width: 20%;
}
 .searchBlock .searchForm .searchInput{
  width: 80%;
  height:6vh;
  outline: none;
  border: none;
  padding-left: 4em;
  margin-top: 13em;
  border-radius: 0.2em;
}
.searchBlock .searchForm .searchInput::placeholder{
    font-size: 1rem;
}


 .searchBlock .searchForm .searchbtn{
   width: 15%;
  height: 6vh;
  margin-left: -0.35em;
  border: none;
  background: var(--bg-color);
  outline: none;

}
.searchBlock .searchForm .searchbtn i{
    color: white;

}
/*carousel **/
main .blog{
   background: whitesmoke;
    width: 100%;
      height: 100%;
}
main .blog-content img{
    width: 100% ;
    height: 200px;


}

main .blog-post .blog-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 90%;
    margin: 3rem 2rem ;
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
    background: #fff;
}
main .blog-content.blog-title{
    padding: 2rem 0;
}
main .blog-content .btn-blog{
    padding: 0.7rem 2rem;
    background: var(--sky);
    margin: 0.5rem;


}
main .blog-content span{
    display: block;
    padding-bottom: 20px;

}
.container{
    margin: 0 5vw;
}
section .container .owl-nav{
    position: absolute;
    top:0%;
    margin: 0 auto;
    width: 100%;
}
/*pagination*/
/* pagination**/
.paginationBlock{
    float: right ;
    cursor: pointer;
    clear: both;
}

.pagination{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 3em;
    height: 20%;

}
.pagination .page-item{
    padding: 0.5em 0.8em;
   background-color: var(--bg-color);
   margin: 0.3em;
   border-radius: 1em;
   border: 2px solid #aaa;
}
#previous-page{
    padding: 0.5em 0.8em;
    background-color: var(--bg-color);
    margin: 0.3em;
    border-radius: 1em;
    border: 2px solid #aaa;

}

#previous-page a{
    color: white;
}
#next-page{
    padding: 0.5em 0.8em;
    background-color: var(--bg-color);
    margin: 0.3em;
    border-radius: 1em;
    border: 2px solid #aaa;
}
#next-page a{
    color: white;
}
.pagination .page-item .page-link{
    color: white;
}
.pagination .page-item.active{
    background-color: white;
    color: black;
}
.pagination .page-item.active .page-link{

    color: black;
}
/*modal*/
.modalForm{
    padding-left: 5em;
}
/* .modalForm h4{
    text-align: center;
} */

.modalForm   .input-group {
    position: relative;
    margin: 40px 0 20px;
  }

  .modalForm  input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 2px solid #757575;
  }

  .modalForm  input:focus {
    outline: none;
  }
  .modalForm label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  .modalForm  input:focus ~ label,
input:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #4285f4;
}
.modalForm  .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
  }
  input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
  }
  .modalForm .modalBtn{
      padding: 2vh 15vh;
      border: none;
      outline: none;
      background: var(--bg-color);
      color: white;
      font-size: 1rem;
      margin-top: 1em;
      margin-left: 2em;
  }
  /* animations */
  @-webkit-keyframes inputHighlighter {
    from { background: #4285f4; }
    to   { width: 0; background: transparent; }
  }
  @-moz-keyframes inputHighlighter {
    from { background: #4285f4; }
    to   { width: 0; background: transparent; }
  }
  @keyframes inputHighlighter {
    from { background: #4285f4; }
    to   { width: 0; background: transparent; }
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
.jumbotron{
    margin-top: 11vh;
    padding: 2em;
}
.jumbotron p{
    color: var(--black);
}
  .jumbotron img{
    width: 100%;
    height: 200px;
    border-radius: 1em;
}
 .price .icon{
    width: 10px;
    height: 15px;
}
.gridBlock{
    width: 90%;
    margin: 0 auto;
    padding: 2em;
    margin-top: 1em;
    background: whitesmoke;
    display: grid;
    grid-template-columns: 2fr  2fr 4fr ;
    cursor: pointer;
    box-shadow: 1px 1px 2px 4px #ccc;
}
 .gridBlock .price{
    padding: 2em;
}
.gridBlock div>img:hover{
    transform: scale(1.1);
    transition: all 1s ease;
}
button{
    margin-right: 10px;
}
.primary{
    background:#dc3545;
    color: white;
    border: #dc3545;
    width: 25%;
    height: 5vh;
    margin-top: 0.5em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.primary:hover{
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
}
.contact-btn{
    border: none;
    width: 25%;
    height: 5vh;
    background: var(--bg-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.contact-btn:hover{
    background: #fefefe;
    color: var(--bg-color);
    border: 2px solid var(--bg-color);

}

.details{
    padding: 0.5em;
    font-size:0.9rem ;
    text-align: justify;
    color: black;
    padding: 1em;
}

.footerRoutes{
    margin-bottom: 0px ;
}


/**loader css*/
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }

  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
  }

  @keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
  }

  #containerDiv {
    display: none;

  }

  /*foooter*/
.footer{
    padding: 1.5em;
    background:var(--black);
   margin-top: 3em;
position: relative;
top: 50px;
color: white;
}
.footer .footerDiv{
    width: 100%;
 display: grid;
 grid-template-columns: 2fr 1fr 2fr 1fr;
 grid-column-gap: 50px;

}
 .footerDiv .about-us p{
 color: var(--white);
 padding: 0.5em;
}


.footerDiv .follow p {
    color: var(--white);
    padding: 0.5em;

}
footer.footer .footerDiv>div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}
footer.footer .footerDiv  h2{
color: white;
}



footer.footer .newsletter .form-element input{
    padding: .5rem .7rem;
    border: none;
    background: transparent;
    color: white;
   width: 74%;
   font-size: 1rem;
   font-family: 'Roboto', sans-serif;
}

footer.footer .newsletter .form-element span{
    display: block;
    margin: 2px;
    padding: .5rem .7rem;
    cursor: pointer;
    color:var(--white);
    font-family: 'Roboto', sans-serif;
}
footer.footer .instagram div>img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;
}
footer.footer .follow div i{
    color:var(--white);
    font-size: 3rem;
    padding: 0.1em;
}
footer.footer .rights{

   display: flex  ;
    justify-content: center ;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    background: rgba(0,0,0,1);
    padding: 1em;
}
 footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;

}
footer.footer .move-up span{
    color:var(--white);
    font-size: 2rem;
}
footer.footer .move-up span:hover{
    color: white;
    cursor: pointer;
}


@media only screen and (max-width:750px){


    .nav .toggle-collapse{
        display: block;
    }

    .nav .social {
        text-align: center;
    }
    .nav{
        min-height: 13vh;
    }
    .jumbotron{
        padding: 1em;
    }
    .paginationBlock{
        float: right ;
       padding: 1em;
    }
    footer.footer .footerDiv{
        grid-template-columns: repeat(1,1fr);
    }

}

@media only screen and (max-width:480px){


    section{
        overflow-x: hidden !important;
    }
    footer{
        overflow-x: hidden !important;
    }
   .nav{
       min-height: 10vh;
   }
    .nav .nav-item .nav-link a {
        display: none !important;
    }
    .text-gray a{
        display: none;
    }
    .searchBlock .searchForm .searchInput{
        height: 5vh;
padding-left: 0.5em;

    }
    .searchBlock .searchForm .searchInput::placeholder{
        font-size: 0.8em;
    }
    .searchBlock .searchForm .searchbtn{
        height: 5vh;
    }
.gridBlock{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.primary{
    width: 40%;
}
.jumbotron{
    padding: 1em;
}
.contact-btn{
    width: 50%;
}

.pagination{

    margin-right: 0em;


}
.modalForm  input {
    width: 250px;
  }
.modalForm{
    padding-left: 0em;
   padding-right: 0.5em;
}
.modalForm .modalBtn{
    margin-left: 0em;
}
.footer{
    position: relative;
    top: 50px;
}
    footer.footer .footerDiv{
        grid-template-columns: repeat(1,1fr);
        text-align: center;
    }


}
