@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600&display=swap');


:root{
  --peach: #00001b;
}

*{
  margin: 0;
  padding: 0;
  /* font-family: 'Red Hat Display', sans-serif; */
  font-family: "Palatino Linotype";  font-style: normal; font-variant: normal;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 2em;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body{
  font-size: 100%;
  border-color: #e1e1e1;
}


a{
  text-decoration: none;
}

ul {
  list-style: none;
}

/* CHECKBOX HACK */

input[type=checkbox] {
  display: none;
}

    /* HAMBURGER MENU */
.fa-bars{
  padding-right: 7px;
}

.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
  color: #e6bf71;

  padding-left: 2px;
}

label .hamburger{
  padding-right: 100px;
}

.navbar {
  display: flex;
  align-items: center;
  height: 175px;
  justify-content: space-between;
  background-color: #4e0017;
  background-image: linear-gradient(
              #2e0517,#3d061e,#3d061e,#4d0124,#4d0124,#5c012b,#5c012b
                                    );
  position: relative;
  width: 100%;
/* 5f002c/720035 */
}

.nav-links a {
  color: #e6bf71;
  display: flex;
}

.nav-links li{
  width: 100%;
}

.navbar .logo img{
  position: absolute;
  right: 5px;
}

.menu {
  /* position: fixed; */
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu a:hover {
  color: rgba(218, 150, 32, 0.617);
  transition: 0.3s ease;

}

.menu a {
  padding: 5px 14px;
  margin-right: 20px;
}
.products {
  position: relative;
}

.dropdown {
  background-image: linear-gradient(
    #5c012b,#5c012b,#4d0124,#4d0124,#3d061e,#3d061e,#2e0517);
  padding-top: 30px;
  position: absolute;
  display: none;
  top: 13%;
  width: 230px;
  z-index: 100;
  border:1px solid #5f002c;
  border-radius: 5%;
}
    
.dropdown a + a {
  margin-top: 20px;
}
    
.dropdown a {
  padding: 0.5em 1em;
  text-align: center;
  display: block;
  font-size: 15px;
  margin-bottom: 15px;
}
    
.dropdown a:hover {
  color:rgba(218, 150, 32, 0.617);
}

#sub_products{
  display :none;
}
    
.products:hover .dropdown {
  display: block;
  margin-top: 30px;
}

h1{
  font-size : 35px;;
}
h2{
  font-size: 26px;
}

.content{
  min-width: 90%;
  font-size: 20px;
  line-height: 1.4em;
  color: #00001b;
  margin: 3% 5% 3% 5%;
}

#back-to-top .btn{
  display: none;
  position: fixed;
  z-index: 1;
  bottom: 10px;
  right: 5px;
  box-shadow: 1;
  border-width: 0.25px;
  outline: none;
  color: #00001b;
  background-color: #5f002c;
  cursor: pointer;
  height: 40px;
  width: 40px;
  font-size: 2rem;
  justify-content: center;
  touch-action: manipulation;
  white-space: nowrap;
}

#back-to-top .btn:hover{
  background-color: #2e0517;
  color: #dddd;
}


.footer{
  
  height: 45vh;
  display: flex;
  /* align-items: center; */
  color: #e6bf71;
  background-image:linear-gradient(#3a011f,#3a011f,#1f030f,#1f030f,#0f0107,#0f0107);
  padding-top: 2%;
}

.left1{
  width: 25%;
}

.footer .footer_center1{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-left: 2%;
  margin-top: 3%;
 
}

.right1{
  margin-left: 9%;
  margin-right: 6%;
  font-weight: bold;
  padding-top: 3.5%;
}

.right1 a{
  display: block;
  padding-top: 12%;
  padding-left: 10%;
  text-decoration: none;
  color:  #e6bf71;
}

.right1 a:hover{
  color:rgba(218, 150, 32, 0.617);
}

.footer_center1 p{
  padding-top: 5%;
  padding-bottom: 5%;
  font-size: 100%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer_center1 h3{
  font-size: 90%;
  /* font-family:cursive; */
  padding-top: 10%;
  font-family: "Palatino Linotype";font-size: 130%; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px;
}


.footer_logo{
  height: 80%;
  margin-left: 5%;
}



@media (orientation:portrait){

  .menu {
    display:none;
    position: absolute;
    background-image: linear-gradient(#5c012b,#5c012b,#4d0124,#4d0124,#3d061e,#3d061e,#2e0517);
    right: 0;
    left: 0;
    top: 100%;
    text-align: center;
    padding: 16px 0;
    z-index: 100;
  }
  .products{
    display: none;
  }

  #sub_products{
    /* color:#e6bf71; */
    display:block;
  }
    
  .dropdown{
    margin-top: 15%;
  }
  .menu li:hover {
    display: inline-block;
    color:rgba(218, 150, 32, 0.617);
    transition: 0.3s ease;
  }
    
  .menu li + li {
    margin-top: 12px;
  }
    
  input[type=checkbox]:checked ~ .menu {
    display: block;
  }
    
  .hamburger {
    display: block;
    margin-right: 20px;
  }
    
  .dropdown li:hover {
    background-color: rgba(218, 150, 32, 0.617);
  }

  .navbar .logo img{
    position: absolute;
    right: 5px;
    height: 10px;
  }





  
  .content{
    min-width: 90%;
    font-size: 15px;
    line-height: 1.4em;
    color: #00001b;
    width: 80%;
    text-align: justify;
  }


  h1{
    font-size: 35px;
  }

  
.footer{

  height: fit-content;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  color: #e6bf71;
  background-image:linear-gradient(#3a011f,#3a011f,#1f030f,#1f030f,#0f0107,#0f0107);
  padding-top: 2%;
  padding-bottom: 10px;
}

.left1{
  width: 25%;
}

.footer .footer_center1{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-left: 2%;
}

.right1{
  margin-left: 9%;
  margin-right: 6%;
  font-weight: bold;
  display: none;  
}

.right1 a{

  display: block;
  padding-top: 12%;
  padding-left: 10%;
  text-decoration: none;
  color:  #e6bf71;
}

.right1 a:hover{
  color:rgba(218, 150, 32, 0.617);
}

.footer_center1 p{
  padding-top: 0%;
  padding-bottom: 0%;
  font-size: 100%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer_center1 h3{
  font-size: 120%;
  /* font-family:cursive; */
  padding-top: 10%;
  padding-bottom: 20px;
  font-family: "Palatino Linotype";font-size: 130%; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px;
}

.footer_logo{
  height: 150px;
}

.footer_center1 span{
  font-size: larger;
}

.only_this{
  margin-bottom: 15px;
}

}