:root{
    --purple: purple;
    --orange: orange;
    --white: white;
    --blue: blue;
    --black: black;
    --pink: pink;
    --magenta: magenta;
    --grey: grey;
}

body{
    width: 100%;
    margin: 0px;
}


/* THE MOBILE SCREEN STARTS */
@media screen and (max-width:480px) {


/* THE TOP DIV */
div.head_container{
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    background-color: var(--purple);
    position: sticky;
    top: 0;
}

div.logo_holder{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;

 
}

img.logo{
    height: 60px;
}


div.top_link{
    width: 100%;
    margin-left: auto;
    margin-right: auto;


}

ul.top_link_ul{
    width: 80%;
    margin: 15px auto 0px auto;
    list-style-type: none;
    text-align: center;
    line-height: 25px;   
}

li.link1{
    margin-left: 4px;
    margin-right: 4px;
    background-color: var(--white);
    border-radius: 4px;
    padding: 2px;

}

li.link1:hover{
    background-color: rgb(245, 119, 203); 
    border-radius: 4px;
}

a#link1{
    text-decoration: none;
    display: inline-flex;
}


/* THE CONTENT DIV */
div.content_background{
    width: 100%;
    height: 550px;
    background-image: url(../images/wert.jpg);
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    background-size: cover;
    padding-top: 50px;
}
div.top_text_container{
    width: 90%;
    height: auto;
    background-color: var(--white);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 5px;
    padding-bottom: 20px;
}

h2.top_text{
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: -25px;
    margin-left: 4px;

}

p.under_text{
    color: var(--purple);
    margin-left: 4px;
}

sup#sup{
    color: red;
}

div.info_container{
    width: 90%;
    height: auto;
    background-color: var(--white);
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
}

div.info_flex{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}


input[type = text]{
    width: 100%;
    height: 25px;
    border: var(--purple) solid 2px;
    border-radius: 4px;
}

input[type = text]:hover{
    background-color: var(--orange);
}

input[type = email]#email{
    width: 100%;
    height: 25px;
    border: var(--purple) solid 2px;
    border-radius: 4px;
}

input[type = email]:hover{
    background-color: var(--orange);
}

textarea#message{
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    background-color: var(--white);
    resize: none;
    border-radius: 5px;
}


/* THE FOOTER DIV */
div.bottom_container{
    height: 700px;
    background-color: var(--grey);
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

div.card{
    width: 100%;
}

div.text2{
    width: 100%;
    text-align: center;
}

h2#text2{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--black);
}

div.text3{
    width: 100%;
    display: flex;
    text-align: center;
}

p#text3{
    color: var(--black);
}

div.product_categories{
    width: 100%;
    height: 1300px;
    background-color: var(--purple);
    padding-top: 40px;
    justify-content: center;
}
h2.product_head{
    text-align: center;
}

div.products{
    width: 80%;
    height: 300px;
    background-color: var(--white);
    margin: 6px auto 6px auto;
    border-radius: 10px;
    overflow: hidden;
}

img#products_image{
    height: 300px;
}

div.brief_about_us{
    width: 95%;
    background-color: var(--white);
    height: 200px;
    padding: 30px 0px 0px 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

h4.brief_head{
    font-size: 23px;
    color: var(--purple);
}

div.bottomtext_holder{
    width: 100%;  
}

h3.bottom_text1{
    color: var(--black);
    text-align: center;
}

div.icons{
    text-align: center;
}

span.iconify-inline{
    text-align: center;
}


div.bottom_link_holder{
    width: 100%;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
    position: absolute;
    
}

span.link1{
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-decoration: none;
}

a.bottom_link{
    width: 100px;
    color: var(--black);
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

a.bottom_link:hover{
    color: var(--blue);
}


hr.hr_line{
    border-color: var(--black);
}


}
/* THE MOBILE SCREEN ENDS */


/* THE TABLET SCREEN STARTS */
@media screen and (max-width:840px) and (min-width:481px) {

 /* THE TOP DIV */
 div.head_container{
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    padding-top: 15px;
    background-color: var(--purple);
    position: sticky;
    top: 0;
}

div.logo_holder{
    width: 20%;
    height: 60px;
    display: flex;
    float: left;
}

img.logo{
    height: 60px;
}


div.top_link{
    width: 80%;
    margin-left: auto;
    margin-right: auto;


}

ul.top_link_ul{
    width: 80%;
    margin: 15px auto 0px auto;
    list-style-type: none;
    text-align: center;
    line-height: 25px;   
}

li.link1{
    margin-left: 10px;
    margin-right: 10px;
    background-color: var(--white);
    border-radius: 4px;
    padding: 4px;
    font-size: 18px;

}

li.link1:hover{
    background-color: rgb(245, 119, 203); 
    border-radius: 4px;
}

a#link1{
    text-decoration: none;
    display: inline-flex;
}
    

/* THE CONTENT DIV */
div.content_background{
    width: 100%;
    height: 650px;
    background-image: url(../images/wert.jpg);
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    background-size: cover;
    padding-top: 50px;
}
div.top_text_container{
    width: 90%;
    height: auto;
    background-color: var(--white);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 5px;
    padding-bottom: 20px;
}

h2.top_text{
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: -25px;
    margin-left: 20px;

}

p.under_text{
    color: var(--purple);
    margin-left: 20px;
}

sup#sup{
    color: red;
}

div.info_container{
    width: 90%;
    height: auto;
    background-color: var(--white);
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
}
div.info_flex{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

input[type = text]{
    width: 100%;
    height: 40px;
    border: var(--purple) solid 2px;
}

input[type = text]:hover{
    background-color: var(--orange);
}

input[type = email]#email{
    width: 100%;
    height: 40px;
    border: var(--purple) solid 2px;
}

input[type = email]:hover{
    background-color: var(--orange);
}


textarea#message{
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    background-color: var(--white);
    resize: none;
}


/* THE FOOTER DIV */
div.bottom_container{
    height: 600px;
    background-color: var(--grey);
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

div.card{
    width: 100%;
    /* display: flex; */
    justify-content: center;
}

div.text2{
    width: 100%;
    text-align: center;
}

h2#text2{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--black);
}

div.text3{
    width: 60%;
    display: flex;
    text-align: center;
}

p#text3{
    color: var(--black);
}

div.product_categories{
    width: 100%;
    height: auto;
    background-color: var(--purple);
    padding-top: 40px;
    justify-content: center;
}
h2.product_head{
    text-align: center;
}


div.brief_about_us{
    width: 95%;
    background-color: var(--white);
    height: 200px;
    padding: 30px 0px 0px 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

h4.brief_head{
    font-size: 23px;
    color: var(--purple);
}

div.bottomtext_holder{
    width: 100%;  
}

h3.bottom_text1{
    color: var(--black);
    text-align: center;
}

div.icons{
    text-align: center;
}

span.iconify-inline{
    text-align: center;
}


div.bottom_link_holder{
    width: 100%;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
    position: absolute;
    
}

span.link1{
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-decoration: none;
}

a.bottom_link{
    width: 100px;
    color: var(--black);
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

a.bottom_link:hover{
    color: var(--blue);
}


hr.hr_line{
    border-color: var(--black);
}


}

/* THE TABLET SCREEN ENDS */


/* THE DESKTOP SCREEN STARTS */

@media screen and (min-width:841px) {

    /* THE TOP DIV */
    div.head_container{
       width: 100%;
       height: auto;
       padding-bottom: 15px;
       padding-top: 15px;
       background-color: var(--purple);
       position: sticky;
       top: 0;
   }
   
   div.logo_holder{
       width: 20%;
       height: 60px;
       display: flex;
       float: left;
   }
   
   img.logo{
       height: 60px;
   }
   
   
   div.top_link{
       width: 80%;
       margin-left: auto;
       margin-right: auto;
   
   
   }
   
   ul.top_link_ul{
       width: 80%;
       margin: 15px auto 0px auto;
       list-style-type: none;
       text-align: center;
       line-height: 25px;   
   }
   
   li.link1{
       margin-left: 10px;
       margin-right: 10px;
       background-color: var(--white);
       border-radius: 4px;
       padding: 4px;
       font-size: 18px;
   
   }
   
   li.link1:hover{
       background-color: rgb(245, 119, 203); 
       border-radius: 4px;
   }
   
   a#link1{
       text-decoration: none;
       display: inline-flex;
   }
       
   
   /* THE CONTENT DIV */
   div.content_background{
       width: 100%;
       height: 650px;
       background-image: url(../images/wert.jpg);
       margin-left: auto;
       margin-right: auto;
       background-position: center;
       background-size: cover;
       padding-top: 50px;
   }
   div.top_text_container{
       width: 90%;
       height: auto;
       background-color: var(--white);
       margin-left: auto;
       margin-right: auto;
       margin-top: 20px;
       border-radius: 5px;
       padding-bottom: 20px;
   }
   
   h2.top_text{
       font-size: 40px;
       margin-top: 10px;
       margin-bottom: -25px;
       margin-left: 20px;
   
   }
   
   p.under_text{
       color: var(--purple);
       margin-left: 20px;
   }
   
   sup#sup{
       color: red;
   }
   
   div.info_container{
       width: 90%;
       height: auto;
       background-color: var(--white);
       margin-left: auto;
       margin-right: auto;
       margin-top: 5px;
       padding-top: 20px;
       padding-bottom: 20px;
       border-radius: 5px;
   }
   div.info_flex{
       width: 70%;
       margin-left: auto;
       margin-right: auto;
       justify-content: center;
   }
   
   input[type = text]{
       width: 100%;
       height: 40px;
       border: var(--purple) solid 2px;
   }
   
   input[type = text]:hover{
       background-color: var(--orange);
   }
   
   input[type = email]#email{
       width: 100%;
       height: 40px;
       border: var(--purple) solid 2px;
   }
   
   input[type = email]:hover{
       background-color: var(--orange);
   }
   
   
   textarea#message{
       width: 100%;
       height: 150px;
       box-sizing: border-box;
       background-color: var(--white);
       resize: none;
   }
   
   
   /* THE FOOTER DIV */
   div.bottom_container{
       height: 600px;
       background-color: var(--grey);
       margin-left: auto;
       margin-right: auto;
       padding-top: 10px;
   }
   
   div.card{
       width: 100%;
       /* display: flex; */
       justify-content: center;
   }
   
   div.text2{
       width: 100%;
       text-align: center;
   }
   
   h2#text2{
       text-align: center;
       margin-left: auto;
       margin-right: auto;
       color: var(--black);
   }
   
   div.text3{
       width: 60%;
       display: flex;
       text-align: center;
   }
   
   p#text3{
       color: var(--black);
   }
   
   div.product_categories{
       width: 100%;
       height: auto;
       background-color: var(--purple);
       padding-top: 40px;
       justify-content: center;
   }
   h2.product_head{
       text-align: center;
   }
   
   
   div.brief_about_us{
       width: 95%;
       background-color: var(--white);
       height: 200px;
       padding: 30px 0px 0px 15px;
       margin-left: auto;
       margin-right: auto;
       border-radius: 4px;
   }
   
   h4.brief_head{
       font-size: 23px;
       color: var(--purple);
   }
   
   div.bottomtext_holder{
       width: 100%;  
   }
   
   h3.bottom_text1{
       color: var(--black);
       text-align: center;
   }
   
   div.icons{
       text-align: center;
   }
   
   span.iconify-inline{
       text-align: center;
   }
   
   
   div.bottom_link_holder{
       width: 100%;
       display: inline-flex;
       margin-left: auto;
       margin-right: auto;
       align-items: center;
       text-align: center;
       position: absolute;
       
   }
   
   span.link1{
       width: 100px;
       margin-left: auto;
       margin-right: auto;
       padding: 10px;
       text-decoration: none;
   }
   
   a.bottom_link{
       width: 100px;
       color: var(--black);
       margin-left: auto;
       margin-right: auto;
       text-decoration: none;
   }
   
   a.bottom_link:hover{
       color: var(--blue);
   }
   
   
   hr.hr_line{
       border-color: var(--black);
   }
   
   
   }

   /* THE DESKTOP SCREEN ENDS */