@font-face {
    font-family: 'rubik';
    src: url('rubik.ttf');
  }

html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background-color: #ecf0f1;
    font-family: 'rubik';

}
h2{
    color: purple;
}




.main-wrapper {
    z-index: 9999;
    width: 100%;
    max-width: 5000px;
    margin: auto;
    background-color: #fff;
    position: fixed;
    border-bottom: 1px solid #c7c7c7;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  /*position: absolute;*/
  /*top:0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: 100%;*/
}

.nav-wrapper {
    width: 100%;
    max-width: 800px;
    margin: auto;
    height: 80px;
    display: block;

}



.logo {
    position: absolute;
    margin: 0px;

}
.logo h1 {
    padding-left: 5px;
    margin: 0px;

}

h1 {

    font-family: 'Montserrat', sans-serif;
    color: white;
}


.nav ul {
    margin-top: 5px;

}

.nav ul li {
    display: inline-block;
    padding: 10px;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
}
.nav ul li a{
    color: purple;
    text-decoration: none;
    transition: all ease 0.3s;
}
.nav ul li a:hover{
    color: #db00a4;
}

/* mobile bar view */



.mobile-nav {
    width: 100%;
    height: 80px;
    display: none;
    border-bottom: 1px solid #c7c7c7;
}



/* mobile view */

@media (max-width: 800px) {

    .mobile-nav {
        display: block;
        margin: 20px -20px;
    }


    .nav ul li {
        display: block;
        text-align: right;

    }

    .nav-wrapper {
        height: 80px;
        overflow: hidden;


    }


    .nav {
        width: 200px;
        margin: auto;


    }


    .mobile-wrapper {
        display: block;


    }

    footer div{
        width: 80%;
        margin: 0 auto;
    }
}
    /* end of responsive style */





    /* menu icon styles */

    /* style for each bar */

    .responsive-menu-icon-line {
        width: 40px;
        height: 7px;
        background-color: #3d3d3d;
        margin: 5px;
        border-radius: 2px;

        /* this determines animation speed */

        transition: all 1s ease;

    }


    /* classes to add for each animation */

    .rotate-down {
        margin-bottom: -12px;

        -ms-transform: rotate(45deg); /* IE 9 */
        -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
        transform: rotate(45deg);
    }

    .rotate-up {
        margin-top: -12px;
        -ms-transform: rotate(-45deg); /* IE 9 */
        -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
        transform: rotate(-45deg);

    }

    .disappear {
        opacity: 0;
    }

    /* grouping div for all bars */


    .responsive-menu-icon {
        width: 60px;
        padding: 3px;
        margin-left: 85%;


        /* this determines animation speed */

        transition: all 1s ease;

    }

    /* animation class to keep icon in similar place after animations */





    .menu-up {
        padding-top: 15px;
    }










/*
Form
*/

#recipe{
    direction: rtl;
    color: black;
    text-align: center;
}
#recipe h1{
    color: purple;
    font-size: 32px;
    letter-spacing: 3px;
}
#recipe h3{
    display:inline
}

input[type="text"], input[type="email"]{
    font-size: 16px;
    border-radius: 15px;
    width: 300px;
    height: 50px;
    text-align: center;
    outline: none;
    border: 2px solid #bdbdbd;
    transition: all ease 0.5s;
}
input[type="text"]:focus, input[type="email"]:focus{
    border: 2px solid purple;
}
input[type="submit"], button, input[type="button"], #add{
    font-size: 16px;
    border-radius: 15px;
    width: 150px;
    height: 30px;
    text-align: center;
    outline: none;
    border: 2px solid #bdbdbd;
    transition: all ease 0.5s;
}
input[type="submit"]:hover, button:hover, input[type="button"]:hover , #add:hover{
    border: 2px solid purple;
}
textarea{
    font-size: 16px;
    border-radius: 15px;
    width: 30em;
    height: 300px;
    padding: 10px;
    outline: none;
    border: 2px solid #bdbdbd;
    transition: all ease 0.5s;
}
@media screen and (max-width: 767px) {
    textarea{
    font-size: 16px;
    border-radius: 15px;
    width: 100%;
    height: 300px;
    padding: 10px;
    outline: none;
    border: 2px solid #bdbdbd;
    transition: all ease 0.5s;
}
}
textarea:focus{
    border: 2px solid purple;
}
select{
    font-size: 16px;
    border-radius: 15px;
    width: 100px;
    height: 40px;
    text-align: center;
    outline: none;
    border: 2px solid #bdbdbd;
    transition: all ease 0.5s;
}
select:focus{
    border: 2px solid purple;
}



input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 300px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12.8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ac51b5;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 19px;
  border-radius: 7px;
  background: #65001c;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.6px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ac51b5;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 12.8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ac51b5;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 19px;
  border-radius: 7px;
  background: #65001c;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 12.8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 19px;
  border-radius: 7px;
  background: #65001c;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #ac51b5;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ac51b5;
}
input{
    outline: none;
}



.item_text_input{
    width: auto !important;
    min-width: 150px;
}
.amount_text_input{
    width: 5em !important;
}
.units_text_input{
    width: 7em !important;
}


.parameter2 .checkbox_container{
    display: inline-block;
    margin-left: 20px;
}

.policy_container .checkbox_container, .policy_container span{
    display: inline-block;
}



/* File upload */

.file-upload {
    width: 500px;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: purple;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #6F0048;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}


.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed purple;
    height: 150px;
    position: relative;
    cursor: pointer;
}

.image-dropping,
.image-upload-wrap:hover {
    border: 4px dashed #000000;
    transition: 300ms;
}

.image-title-wrap {
    text-align: center;
    color: purple;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #6F0048;
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

footer{
    background-color: rgb(41, 41, 41);
    border-top: 1px solid #c7c7c7;
    height: 20vh;
    color: white;
}




.text-aside{
    float: right;
    padding-right: 7em;
    padding-top: 10em;
    text-align: center;
}
.text-aside h1{
    color: purple;
    font-size: 30px;
    letter-spacing: 2px;
}
.text-aside h3{
    color: #242424;
}
.text-aside p{
    line-height: 20px;
}
.text-aside button{
    height: 40px;
    margin-left: 20px;
    cursor: pointer;
}
#main{
    height: 100vh;
    background-image: url('../images/main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    margin: 0;
}
.bg{
    background-color: none;
}

@media (max-width: 1150px){
    .text-aside{
        float: right;
        padding-right: 1em;
        padding-top: 10em;
        text-align: center;
    }
}
@media (max-width: 1024px){
    #main{
        background-position: 70% 100%;
    }
}
@media (max-width: 600px){
    #main{
        display: block;
        position: relative;
        background-image: none;
    }
    #main::after {
        content: "";
        background: url('../images/main.jpg');
        opacity: 0.7;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;   
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 65% 100%;
      }
    .text-aside{
        padding-right: 1em;
        text-shadow: 3px 3px 10px rgba(150, 150, 150, 1);
        width: 100%;
    }
    .text-aside p{
        font-weight: bold;
        width: 95%;
    }
    .text-aside .bg{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}


#download{
    height: 150vh;
    padding: 100px;
}
#download h1{
    color: purple;
    font-size: 30px;
    text-align: center;
}
.container{
    display: table;
    border-collapse: separate;
    border-spacing: 10px;
    width: 100%;
}
.container .margleft{
    margin-left: 30px;
}
.container .box{
    border-radius: 15px;
    display: table-cell; 
    vertical-align: middle;
    border: 2px solid #000;
    color: white;
    background-color: black;
    width: 200px;
    height: 70px;
    text-align: center;
    font-size: 22px;
    transition: 500ms;
}
.container .box:hover{
    background-color: white;
    color: black;
}
.container .box span{
    float: right;
    margin-right: 15px;
}
.container img{
    float: left;
    padding-left: 20px;
}
.container a{
    text-decoration: none;
}
.row{
    display: table-row;
    text-align: center;
    margin: 0 auto;
}
  @media (max-width: 800px){
    #download{
        padding: 60px 20px 20px 20px;
        height: 60vh;
    }
  }
  @media (max-width: 550px){
    .container .margleft{
        margin-left: 0;
    }
    .container a{
        padding-top: 10px;
    }
  }






#testimonial{
    height: 85vh;
    padding-top: 100px;
    background-color: #ffffff;
    padding-bottom: 50px;
}
  #testimonial h1{
    color: purple;
    text-align: center;
    font-size: 30px;
  }
  .main-gallery {
    background: #fff;
    border-top: 2px solid  rgba(0, 0, 0, 0.25);
  
  }
  
  .gallery-cell {
    width: 100%;
  }
  
  .testimonial {
    text-align: center;
    max-width: 850px;
    margin: 100px auto 130px auto;
    padding: 0 20px;
  }
  
  .testimonial-avatar {
    width: 100px;
    zborder-radius: 50%;
  }
  
  .testimonial-quote {
    display: block;
    font-size: 24px;
    font-weight: 300;
    padding: 10px 0;
  }
  
  .testimonial-author {
    display: block;
    font-weight: 800;
    font-size: 20px;
    color: purple;
  }
  
  .flickity-page-dots {
    bottom: 25px;
  }
  
  .flickity-page-dots .dot.is-selected {
    background: #000;
  }



  footer{
      direction: rtl;
  }
  footer .flex{
      padding-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  footer .social, footer .sitemap, footer .references{
      text-align: center;
      padding-left: 50px;
  }



  .fa-instagram, .social .fa-facebook-square{
    transition: 300ms;
    font-size: 30px;
    padding-left: 10px;
    color: rgb(226, 226, 226);
  }
  footer a{
      text-decoration: none;
      color: #dbdbdb;
  }
  footer a:hover{
    color: #ffffff;
    }
  .fa-instagram:hover{
    color: #d60084;
  }
  .fa-facebook-square:hover{
    color: rgb(0, 68, 255);
  }

  footer ul{
      list-style: none;
  }
  footer ul li{
      padding-bottom: 5px;
  }

  @media (max-width: 767px){
      footer{
          height: auto;
      }
      footer .flex{
        flex-direction: column
      }
      footer .social, footer .sitemap, footer .references{
        padding-left: 0px;
        padding-top: 30px;
    }
    footer ul{
        padding: 0;
    }
    .credit{
        padding-top: 30px;
    }
  }
  
  
  
  
  
  
  
  
  iframe{
      width: 100%;
      height: 100vh;
  }
  
    @media (max-width: 767px){
        iframe{
            height: auto;
        }
    }