@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



/* LOADER 1 */

.loader_bg {
  position: fixed;
  background-color: black;
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  height: 50px;
}

.circle {
  display: inline-block;
  background-color: #F5ECB1;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: scale(0);
  animation: grow 1.5s linear infinite;
  margin: -10px;
  height: 50px;
}

.circle:nth-child(2) {
  background-color: #CB9833;
  animation-delay: 0.75s;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes grow {
  50% {
    transform: scale(1);
  }
}



*{
  font-family: 'Poppins', sans-serif;
  margin:0; 
  padding:0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #fafafa;
}


body{
  font: 15px/1.5 Lato, sans-serif;
    padding:0;
    margin:0;
    background-color:#f4f4f4;
    width: 100%;
}

.heading{
  text-align: center;
  padding:2.5rem 0;

}

.heading span{
  font-size: 3.5rem;
  background:rgba(255, 165, 0,.2);
  color:var(--orange);
  border-radius: .5rem;
  padding:.2rem 1rem;
}

.heading span.space{
  background:none;
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  background:#CB9833;
  color:#fff;
  padding:.8rem 3rem;
  border:none;
  cursor: pointer;
  font-size: 1.7rem;
  width: 100%;
  border-radius: 0rem;
}

.btn:hover{
  background-color:#1a1a1a;
  color: #fff;
  border-radius: 25px;
}


/*Home Styling*/

.home{
  overflow: hidden;
  padding: 3rem 9%;
  background-color: #1a1a1a;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}


.home .home-slider .swiper-wrapper .box {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .home .home-slider{
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.home .home-slider .swiper-wrapper .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.swiper-button-next,
.swiper-button-prev{
  top: 50%;
  
}



.home .home-slider .swiper-wrapper .box .content{
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  background: rgba(50, 53, 55, 0.3);
  color: #fff;
  overflow: hidden;
  position: absolute;
  z-index: 10000;
  padding: 15rem 8rem;
  margin: auto;
  text-align: center;

}


.home .home-slider .swiper-wrapper .box .content h3{
  font-size: 4rem;
  color:#fff;
  text-transform: uppercase;
  padding: 7px;
}


.home .home-slider .swiper-wrapper .box .content p{
  font-size: 2.5rem;
  color:#fff;
  padding:5px;
  line-height: 1rem;
  }


  .btn5{
  display: inline-block;
  margin-top: 1rem;
  background: none;
  color:#fff;
  padding:.8rem 3rem;
  margin: 20px;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 5rem;
  border: 1px solid #fff;
  transition: color 0.4s Linear;
  position: relative;
}


.btn5:hover{
  border: 1px solid #fff;
  border-radius: 5rem;
}


.btn5::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff9933;
  border-radius: 5rem;
  z-index: -1;
  transition: transform 0.5s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
}


.btn5::before{
  transform: scaleX(0);
}


.btn5:hover::before{
   transform: scaleX(1);
}


.btn6{
  display: inline-block;
  background-color:#1da0b0;
  color:#fff;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 30px;
}


.btn6:hover{
  background-color: #f9a824;
  color: #fff;
}


.home .box img{
   height: 70vh;
   width: 100%;
   object-fit: cover;
}


.swiper-button-prev{
   left: 0%;
}

.swiper-button-next{
   right: 0;
}

.swiper-button-next,
.swiper-button-prev{
   padding: 3rem 2rem;
   /*background-color: #fff;*/
   top: 40%;
   opacity: .6;
}

.swiper-button-next::after,
.swiper-button-prev::after{
   color: #fff;
   font-size: 2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
   opacity: 1;
}


/*About Styling*/

#main{
 background-color: #fafbff;
  padding: 5rem 9%;
}

.about-container2{
  width: 100%;
  margin: auto;
  overflow: hidden;
 
}

.dark{
  padding: 15px;
 background-color: #fafbff;
  color: #808080;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 6px solid #c7c8ca;
  border-radius: 10px;
  line-height: 27px;
}

.dark p{
   font-size: 15px;
}


.dark img{
  width: 100%;
  height: 100%;
}




#sidebar{
  float: right;
  width: 30%;
  margin-top: 10px;
}

#main-col{
  float: left;
  width: 65%;

}

#main .about-container2 #main-col hr{
  background-color:#f98a24 ;
  border: 3px solid #f98a24;
  width: 90px;
  margin: 15px 0;
}

#main{
 background-color: #fafbff;
}

.main-col-text{
  text-align: left;
}

.dark-text{
  text-align: left;
}

.about_text{
  color: #808080;
  margin-top:10px;
  font-size: 15px;
}


.page-title{
  font-size:35px;
  color: #1da0b0;
  font-weight: 700;
}

.sidebar-title{
  font-size: 20px;
  color: #1da0b0;
}





/*Services Styling*/

.services{
  background-color: #fafbff;
   padding: 5rem 9%;
}

.services .boxx-container{
  background-color: #fafbff;
   display: grid;
   grid-template-columns: repeat(auto-fit, 25rem);
   gap: 1rem;
   justify-content: center;
   align-items: flex-start;
}

.services .boxx-container .box{
   background-color: var(--white);
   padding: 1rem;
   text-align: center;
}

.box_border{
  border: 0.5px solid #f98a24;
  border-radius: 1rem;
}

.services_heading{
  background-color:#fff;
  border: 3px solid #fff;
  width: 10%;
  margin: auto;
  margin-bottom: 40px;
}

.services .boxx-container .box img{
   margin: 1rem 0;
   height: 8rem;
}

.services .boxx-container .box h3{
   font-size: 5rem;
   color: #1da0b0;
   text-transform: capitalize;
}

.services .boxx-container .box p{
   font-size: 2rem;
   font-weight: 600;
   color: #1a1a1a;
   padding-bottom: 1.5rem;
}

.heading{
   text-align: center;
   padding-bottom: 2.5rem;
   font-size: 3rem;
   color: var(--black);
   text-transform: capitalize;
}

/*gallery Styling*/

.gallery{
  background-color: #fafbff;
  padding: 2rem 9%;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}

.gallery .heading{
  color: #F5ECB1;
}


.gallery .box-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .box-container .box{
  margin: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #F5ECB1;
  background-color: #1a1a1a;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0);
  padding: 0.5rem 0.5rem;
  text-align: center;
  flex: 1 1 25rem;
}

.gallery .box-container .box >img{
  object-fit: cover;
  height: 100%;
  width: 100%;
  padding: 1rem;
}

.gallery .box-container .box >h3{
  font-size: 1.5rem;
  color: #1da0b0;
  font-weight: 600;
}


.gallery .box-container .box >p{
  font-size: 1.5rem;
  color:#333;
  padding: 1rem 0;
}


.btn7{
  display: inline-block;
  
  color:#f9a824;
  padding:.6rem 2rem;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 5rem;
}


.btn7:hover{
  background-color: #fff;
  color: #1da0b0;
}

.gallery .box-container .box:hover{
  color: #DA2C32;
}






/*Contact Styling*/

.contact{
   padding: 5rem 9%;
  background-color: #fafbff;
}

.contact .row{
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: center;
}

.contact .row .image{
   flex: 1 1 30rem;
}

.contact .row .image img{
   width: 100%;
}

.contact .row form{
   flex: 1 1 30rem;
   background-color: #fafbff;
   box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
   padding: 2rem;
}

.contact .row form ::placeholder{

color: #333;

font-size: 15px;

}

.contact .row form h3{
   padding-bottom: 1rem;
   font-size: 2.5rem;
   color: #CB9833;
   text-align: center;
   text-transform: capitalize;
}

.contact .row form .box{
  width: 100%;
  border: 0.1rem solid #666;
  padding: 1.4rem;
  color: #666;
  font-size: 1.8rem;
  margin: 1rem 0;
  border-radius: 3rem;
}

.contact .row form textarea{
   height: 15rem;
   resize: none;
   border-radius: 3rem;
}


/*Our Team Styling*/

#founder {
  padding: 2rem 7%;
  background-color: #fafbff;  
}

.founder-box-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 3rem;
}

.founder-box{
 text-align: center;
}


.founder-box-container .founder-box .founder-img{
  background-color: #1da0b0;
  height: 600px;
  width: 350px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.founder-box-container .founder-box .founder-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.founder-title h4{
  font-size: 20px;
  color: #1da0b0;
  padding-top: 15px;
  text-align: center;
}


.founder-title p{
  font-size: 14px;
  color: #808080;
  padding-bottom: 15px;
}


.founder-text{
  width: 600px;
  font-size: 13px;
  color: #808080;
  line-height: 20px;
}






#grad-team{
  background-image: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}


/*Footer Styling*/

.footer{
  padding: 2rem 9%;
  position: relative;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;

}


.footer .flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}


.footer .flex .box{
   flex: 1 1 30rem;
   margin-top: 4rem;
}

.footer .flex .box h3{
  font-size: 2rem;
  color: #fff;
 }


.footer .flex .box a{
   display: block;
   padding: 1rem 0;
   font-size: 1.8rem;
}

.footer .flex .box a span{
   color: #F5ECB1;
   padding-left: 1rem;
}

.footer .flex .box a:hover span{
   color:#fff;
   font-weight: 600;
}

.footer .flex .box a i{
   color: #fff;
}

.footer .flex .box:last-child{
   text-align: left;
}


.footer .flex .box:first-child a i{
  /* margin-right: 1.5rem;*/
}


.footer .flex .box:nth-child(2){
   text-align: left;
}

.footer .flex #box1{
 background: rgba(49, 55, 59, 0.5);
} 


.footer .flex .box h1{
  color: #fff;
  font-size: 3rem;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}



.footer .flex .box form {
  margin:auto;
  width: 50%;
}

.footer .flex .box .form-p{
  margin-bottom: 25px;
}


.footer .flex .box .button1{
 background-color: #DA2C32;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 8px 0px;
  padding: 10px 20px;
  border:none;
  cursor: pointer;
  border-radius: 1rem;
}


.footer .flex .box .button1:hover{
  background-color: #1a1a1a;
  border-radius: 5rem;
}

.footer .flex .box .button1:focus{
  outline: none;
}


.footer .flex .box input[type=email]:focus{
  outline: none;
  color: #1a1a1a;
}


.footer .flex .box input[type=email]::placeholder{
  color: #1a1a1a;
}


.footer .flex .box input[type="email"]{
  width:100%;
  margin: 8px 0px;
  padding: 12px 20px;
  border: 1px solid #c7c8ca;
  color: #1a1a1a;
  border-radius: 3rem;
}





.footer .credit{
   padding: 3rem 2rem;
   text-align: center;
   border-top: #fff;
   font-size: 2rem;
   color: #fff;
   margin-top: 2rem;
   /* padding-bottom: 10rem; */
   overflow: hidden;
}


.footer .credit span{
   color: #F5ECB1;
}




/* Gold Lecture Section */

#hgold{
  padding: 2rem 20%;
  background-color: #fafbff; 
  overflow: hidden;
  position: relative;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}


#hgold .gold-img{
  height: 200px;
  width: 200px;
  margin: auto;
}

#hgold .gold-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gold-heading{
  text-align: center;
  font-size: 25px;
  font-weight:600;
  margin: 10px;
}

.gold-heading h4{
  margin: 30px;
  color: #fafafa;
  font-weight: 400;
}


#gold{
  padding: 2rem 20%;
  background-color: #fafbff; 
  overflow: hidden;
  position: relative;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}

#gold .gold-entire-container .gold-container .gold-subtitle{
  text-align: left;
  color: #CBA041;
}

#gold .gold-entire-container .gold-container .gold-subtitle .gold-title h2{
  font-size: 30px;
  color: #F5ECB1;
  padding:20px 0px;
  text-align: left;
}


.dignitry{

  color: #F5ECB1;

  }

#gold .gold-entire-container .gold-container .gold-subtitle p{
  font-size: 13px;
  width: 100%;
  color: #fff;
}


#gold .gold-entire-container .gold-container .theme{
  padding: 20px 0;
  line-height: 35px;
  margin-bottom: -30px;
}


#gold .gold-entire-container .gold-container .theme h3{
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  }


  #gold .gold-entire-container .gold-container .theme h3 span{
    font-weight: 400;
    color: #F5ECB1;
  }


.gold-container .theme{
  text-align: left;
}



#gold .gold-entire-container .lecture-img{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#gold .gold-entire-container .lecture-img .R1-box{
  width: 350px;
  height:200px ;
  margin: 1rem;
  object-fit: cover;
  border-radius:15px;
}

#gold .gold-entire-container .lecture-img .R1-box img{
  width: 100%;
  height:100%;
  border-radius: 10px;
  border: 4px solid #F5ECB1;
}


#grad_gold{
  background-image: linear-gradient(to right, #CB9833, #F5ECB1, #CDA344);
}


.gold-btn{
  display: inline-block;
  margin-top: 1rem;
  background:#CB9833;
  color:#fff;
  padding:.8rem 3rem;
  border:none;
  cursor: pointer;
  font-size: 1.7rem;
  width: 100%;
  border-radius: 0rem;
}

.gold-btn:hover{
  background-color:#1a1a1a;
  color: #fff;
  border-radius: 25px;
}


.gold-touch{
  color: #CB9833;
}











/*Review Styling*/

.reviews{
  padding: 2rem 9%;
  width: 100%;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}


.heading_rev{
   text-align: center;
   padding-bottom: 2.5rem;
   padding-top: 2rem;
   font-size: 4rem;
   color: #F5ECB1;
   text-transform: capitalize;
}


.review_heading{
  background-color:#fff;
  border: 3px solid #fff;
  width: 10%;
  margin: auto;
  margin-bottom: 40px;
}


.reviews .box{
  width: 450px;
  height:300px ;
  border-radius: 10px;
  border: 4px solid #F5ECB1;
  object-fit: cover;
  margin: auto;
  margin-bottom: 45px;
}


.reviews .box img{
  width: 100%;
  height:100%;
  margin: auto;
  border-radius: 10px;
  object-fit: cover;
}

.reviews .box h3{
   margin: 1.5rem 0;
   font-size: 2rem;
   color: #fff;
}

.reviews .box p{
   line-height: 2;
   font-size: 1.5rem;
   color: #fff;
   text-align: left;
}

.reviews .box i{
   line-height: 2;
   font-size: 1.5rem;
   color: #F89c1d;
   text-align: left;
   padding: 3px;
}



































/*Header Stylings*/


i{
  font-size: 20px;
  color: white;
  padding: 5px;
}

i:hover{
  color: #24C6DA;
  transition: 0.3s ease;  
}



/*Header-control*/


.aeo-box{
  height: 80px;
  width: 140px;
  margin: 15px 0px 15px 0px;
}

header .aeo-box img{
  height: 100%;
  width: 100%;
}


header{
  position: sticky;
  top: 0;
  left: 0;
  background: #000;
  padding: 0px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  width: 100%;
  height: 90px;
}

header .logo{
  font-weight: bolder;
  font-size: 25px;
  color: #333;
}

header .navbar ul{
  list-style: none;
}

header .navbar ul li{
  position: relative;
  float: left;
}

header .navbar ul li a{
  font-size: 20px;
  padding: 20px ;
  color: #F5ECB1;
  display:block ;
}



header .navbar ul .active a{
  color:#24C6DA;
    font-weight:bold;
}



header .navbar ul li a:hover{
  color: #ccc;
  font-weight:500;
}


header .navbar ul li ul{
  position: absolute;
  left: 0;
  width: 200px;
  background: #1a1a1a;
  display: none;
}

header .navbar ul li ul li{
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}


header .navbar ul li ul li a:hover{
  background-color: #333;
  color: #fff;
  font-weight: 200;
}


header .navbar ul li ul li ul{
  left: 200px;
  top: 0;
}


header .navbar ul li:focus-within >ul, header .navbar ul li:hover >ul{
  display: initial;
}



#menu-bar{
  display: none;

}

header label{
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}


header label i{
  font-size:35px;
  color: #F5ECB1;
}


header label i:hover{
  color: #CB9833;
}


header .icons i{
  font-size: 2.5rem;
  color:#1F2F62;
  cursor: pointer;
  margin-right: 2rem;
}

header .icons i:hover{
  color:#24C6DA;
}

header .search-bar-container{
  position: absolute;
  top:100%;
  left: 0;
  right:0;
  padding:1.5rem 2rem;
  background:#1F2F62;
  border-top: .1rem solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{

  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

}

header .search-bar-container #search-bar{
  width:100%;
  padding:1rem;
  text-transform: none;
  color:#333;
  font-size: 1.7rem;
  border-radius: .5rem;
}

header .search-bar-container label{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover{
  color:#24C6DA;
}


header .search-bar-container input::placeholder{
  color: #1a1a1a;
  font-size: 15px;
}











/*admin-form-container*/


#admin1{
  width: 100%;
  padding: 5rem 0%;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}


.admin-form-container{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:1rem;
  overflow: hidden;
  padding: 0rem 0rem;
}


.container{
  position: relative;
  max-width: 100%;
  width: 700px;
  background:#1a1a1a;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0,0.1);
  overflow: hidden;
  margin: 0px 10px;
  
}

.container .forms{
  width: 200%;
  transition: height 0.2s ease;
}

.container .form{
  width: 50%;
  padding: 20px;
  background-color: #000;
}


.title{
  font-size: 25px;
  text-align: center;
  text-transform: capitalize;
  color: #F5ECB1;
  margin-top: -10px;
  margin-bottom: -3px;

}


.form .input-field{
  position: relative;
  height: 60px;
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;

}

.form p{
  font-size: 13px;
  margin-top: 10px;
  }



.input-field input{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 18px 45px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fafafa;
  border-radius: 10rem;
  transition: all 0.2s ease;
}

.input-field select{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 18px 45px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fafafa;
  border-radius: 10rem;
  transition: all 0.2s ease;
}


.input-fieldinput:focus{
  border-bottom-color: #fff;
}



.input-field i{
  position: absolute;
  top: 50%;
  margin-left: 13px;
  transform: translateY(-50%);
  color:#F5ECB1;
  font-size: 18px;
  transition: all 0.2s ease;
}


.input-field input:focus ~ i{
  color: #fff;
}


.input-field i .icon{
  left: 0;
}

.form3 .button{
  margin-top: 20px;
}


.input-field button{
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 15px 45px;
  font-weight: 600;
  width: 70%;
  margin: auto;
  letter-spacing: 1px;
 border-bottom: 10px solid #A16E0F;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
}


 .input-field button:hover{
  background:#1A1A1A;
  color:#fff;
  border-radius: 50px;
  border: 1px solid #F5ECB1;
}

input::placeholder{
  color: #fff;
  font-size: 13px;
}


#addicon{
  margin-left: 40%;
  color: #fff;
}


#grad{
  background-image: linear-gradient(to right, #DA2C32, #fbb11d, #DA2C32);
}


#grad01{
  background-image: linear-gradient(to right, #CB9833, #A16E0F, #CB9833);
}




/*Update Table*/


#admin{
padding: 5rem 4%;
overflow: hidden;

}

#admin .values{
margin: auto;
width: 100%;
border-radius: 5px;
border: 2rem solid #1a1a1a;
}

#admin .values .heading h3{
  font-size: 25px;
  text-align: center;
  color: #;
}


#admin .values table{
display:block;
overflow-x: scroll;
white-space: nowrap;
width: 100%;
}


.btn11{
  width: 110px;
  background-color: #1a1a1a;
  color: #fff;
  margin: 10px 0px;
  padding: 10px 8px;
  border:none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  }


  .btn11:hover{
    color: #fff;
    background-color: #fff;
    border-radius: 20px;
  }

  .btn12{
  width: 110px;
  color: #fff;
  background-color: #DA2C32;
  margin: 10px 0px;
  padding: 10px 8px;
  border:none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  }


  .btn12:hover{
    background-color: #fff;
    color: #fff;
     border-radius: 20px;
  }


  .btncase{
  margin: 10px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.6rem;

  }


 #admin .values table, th, td{
    border: 1px solid #fff;
    border-collapse: collapse;
  }

  #admin .values table {
    display:block;
    overflow-x: auto;
    white-space: nowrap;
  }

 #admin .values table td{
    background-color: #ebebeb;
    font-size: 14px;
    font-weight: 300;
    padding: 5px;
  }


  #admin .values table th{
    color: #fff;
    background-color:#003466 ;
    font-size: 14px;
    font-weight: 400;
    padding: 9px;
  }




#grad1{
  background-image: linear-gradient(to right, #CE9A9C, #ADD7E5);
}

#grad3{
  background-image: linear-gradient(to right, #0f2f5e, #e20309);
}

#grad4{
  background-image: linear-gradient(to right, #1a1a1a, #1a1a1a);
}

#grad6{
  background-image: linear-gradient(to right, #003a6a, #00e6ec);
}

#grad5{
  background-image: linear-gradient(to right, #00303c, #0003e6);
}




/*Update Pop Up*/


.popup{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0px 0px;
  color: #333;
  margin-top: 4%;
  overflow-y: auto;
}


.popupmain{
  position: fixed;
  z-index: 100000000;
  width: 100%;
  top: 0rem;
  bottom: 0rem;
  right: 0rem;
  left: 0rem;
  background-color: rgba(255,255,255,0.9);
  overflow-y: auto;
}


.pop-form-container{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
}


.pop-container{
  position: relative;
  max-width: 100%;
  width: 600px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0,0.1);
  overflow: hidden;
  margin: 40px 10px;
  
}

.pop-container .pop-forms{
  width: 200%;
  transition: height 0.2s ease;
}

.pop-container .pop-form{
  width: 50%;
  margin-bottom: 5rem;
  padding: 20px;
}


.pop-title{
  font-size: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #808080;
  margin-top: -10px;
  margin-bottom: -3px;

}


.pop-form .pop-input-field{
  position: relative;
  height: 50px;
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;

}

.pop-form p{
  font-size: 13px;
  margin-bottom: -11px;
  text-align: left;
  }



.pop-input-field input{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 18px 45px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fafafa;
  border-radius: 10rem;
  transition: all 0.2s ease;
}

.pop-input-field select{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 18px 45px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fafafa;
  border-radius: 10rem;
  transition: all 0.2s ease;
}


.pop-input-fieldinput:focus{
  border-bottom-color: #fff;
}



.pop-input-field i{
  position: absolute;
  top: 50%;
  margin-left: 13px;
  transform: translateY(-50%);
  color:#DA2C32;
  font-size: 18px;
  transition: all 0.2s ease;
}


.pop-input-field input:focus ~ i{
  color: #fff;
}


.pop-input-field i .icon{
  left: 0;
}


.pop-form .button #button2{
   margin-top: 70px;
}


.pop-form .button{
  margin-top: 70px;
  display: flex;
  align-content:space-between;
  justify-content: flex-start;
  gap: 4rem;
}



.pop-input-field button{
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 45px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: #DA2C32;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  box-shadow: 0px 8px 6px -5px #1a1a1a;
}


 .pop-input-field button:hover{
  background:#1A1A1A;
  color:#fff;
  border-radius: 100px;
}



/*Delete Pop Up*/

.del-container{
  position: relative;
  max-width: 60%;
  width: 60%;
  background-color: rgba(0,0,0,0.75);
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  margin: 300px auto;
}



.del-input-field button{
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 45px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: #DA2C32;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  box-shadow: 0px 8px 6px -5px #1a1a1a;
  margin-top: 10px;
}


.del_p{
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}



.del-input-field button:hover{
  background:#1a1a1a;
  color:#fff;
  border-radius: 25px;
}



/*Tracking heading Styling*/

#admin_track{
background-color: #00264b;
}

#admin_track .brand-container-tracking{
text-align: center;
color: #fff;
padding: 5rem;
}


#admin_track .brand-container-tracking .brand-img{
margin-bottom: 2rem;
}

#admin_track .brand-container-tracking h3{
  font-size: 20px;
  font-weight: 400;
  color: #5E82F4;
}





/*Tracking Values Styling*/
#print-admin{
padding: 5rem 4%;
overflow: hidden;
background-color: #003466;
}


#print-admin .print-values{
width: 100%;
border-radius: 5px;
border: 1.7rem solid #00264b;
margin-top: -30px;

}

#print-admin .print-values .heading h3{
  font-size: 25px;
  text-align: center;
  color: #1a1a1a;
}


.consignment-heading{
  background-color: #003466;
  border-bottom: 1px solid #00264b;
  color: #fff;
  padding: 1.5rem 5%;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.consignment-heading h4 span{
    color: #5E82F4;
    font-weight: 500;
  }


.print-btn{
  width: 70px;
  background-color: #da2c32;
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 6px;
  font-size: 1.5rem;
  cursor: pointer;
  }


 .print-btn:hover{
    background-color: #fff;
    color: #9e2025;

  }



  .casing_btn{
  margin: 5px 5px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wraps;
  gap: 7px;
  }


#print-admin .print-values .print-container-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5rem 3%;
  margin-top: -25px;

}


.print-box{
  width: 350px;
  border: .1px solid #fff;
  border-radius: 6px;
  padding: 16px 4px;
  margin: 7px 7px;
}



.print-box h3{
  color: #e6e6e6;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 500;
}


.print-box h3 span {
  color: #e3e3e3;
}



#print-admin .print-values .print-container-box-2{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 3%;
  margin-top: -4rem;
  background-color: #00264b;

}


.print-box-2{
  width: 350px;
  background-color: #fff;
  border: 1px solid #5E82F4;
  border-radius: 6px;
  color: #1A1A1A;
  padding: 20px 4px;
  margin: 7px 7px;
}

#gif{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  background-color: #fdfefe;

}

.print-box-2 img{

  }


.print-box-2 h3{
  color: #00264b;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 500;
}

.print-box-2 h3 .TStatus{
  color: #5e82f4;
}


.print-box-2 h3 span {
  color: #5e82f4;
}



#print-admin .print-values .table-container{
  width: 100%;
  padding: 1rem 5%;
}


  #print-admin .print-values .table-container table{
    display:block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    border-radius: 9px;
    text-align: center;
  }

#print-admin .print-values .table-container td{
    background-color: #fff;
    font-size: 14px;
    padding: 13px;
    color: #00264b;
    text-align: center;
  }

  .date{
    color: #da2c32;
  }

  #print-admin .print-values .table-container th{
    color: #fff;
    background-color:#003466;
    font-size: 14px;
    padding: 13px;
    font-weight: 500;
  }



  /*Tracking Login Styling*/


.log_sec{
  width: 100%;
  min-height: 100vh;
  padding: 10rem 0;
  position: relative;
  background-image: url(images/bg_review.jpg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  background-attachment: fixed;
}



.login-track-container{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.tc-container{
  position: relative;
  max-width: 100%;
  width: 550px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0,0.1);
  overflow: hidden;
  border: 3px solid #1a1a1a;
  margin: 40px 10px;
  
}

.tc-container .tc-forms{
  width: 200%;
  transition: height 0.2s ease;
}

.tc-container .tc-form{
  width: 50%;
  padding: 30px;
  background-color: #000;
}


.tc-form .tc-input-field{
  position: relative;
  height: 60px;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;

}

.tc-form p{
  font-size: 13px;
  margin-bottom: -12px;
  }



.tc-input-field input{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 18px 45px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fafafa;
  border-radius: 10rem;
  transition: all 0.2s ease;
}


.input-fieldinput:focus{
  border-bottom-color: #fff;
}


.tc-input-field i{
  position: absolute;
  top: 50%;
  margin-left: 13px;
  transform: translateY(-50%);
  color:#CBA041;
  font-size: 18px;
  transition: all 0.2s ease;
}


.tc-input-field input:focus ~ i{
  color: #fff;
}


.tc-form .button{
  margin-top: 10px;
}


.tc-input-field button{
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 15px 45px;
  font-weight: 600;
  width: 60%;
  margin: auto;
  letter-spacing: 1px;
  box-shadow: 0px 8px 6px -5px #1a1a1a;
  border-bottom: 7px solid #A16E0F;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
}


 .tc-input-field button:hover{
  background:#1A1A1A;
  color:#fff;
  border-radius: 50px;
}


input::placeholder{
  color: #fff;
  font-size: 13px;
}


.tc-container .tc-form .title{
  position: relative;
  font-size: 25px;
  font-weight: 500;
  color: #CBA041;
}



.tc-form .title::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 45px;
  background-color: #CBA041;
  border-radius: 25px;
}






/*Alert Styling*/

#alert_sec{

}


.alert-popup{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0px 0px;
  color: #333;
  margin-top: 30%;
}


.alert-popupmain{
  position: fixed;
  z-index: 100000000;
  width: 100%;
  top: 0rem;
  bottom: 0rem;
  right: 0rem;
  left: 0rem;
}


.alert-pop-form-container{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
}


.alert-pop-container{
  position: relative;
  max-width: 100%;
  width: 200px;
  background: #da2c32;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0,0.1);
  overflow: hidden;
  
}

.add-pop-container{
  position: relative;
  max-width: 100%;
  width: 200px;
  background: #003466;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0,0.1);
  overflow: hidden;
  
}


.ok-btn{
  width: 50px;
  background-color: #00923F;
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 4px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 5px;
  }


 .ok-btn:hover{
    background-color: #fff;
    color: #1a1a1a;

  }

  .alert-box{
    background-color: #00923F;
  }

   .alert-box p{
    font-size: 17px;
  }





/*Receipt Styling*/

#receipt-admin{
  padding: 5rem 24%;
  width: auto;
  margin: auto;
}

.receipt-admin-values{
  margin: auto;
  width: 100%;
  border-radius: 5px;
  border: 2rem solid #00264b !important;
  position: relative;
  background-image: url(images/receipt-bg.jpg);
  background-size: contain;
  background-position: center;
  overflow:hidden;

}


.receipt-header{
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  background-color: #003466 !important;
  color: #fff !important;
}

.logo-container{
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0px;
}


.company-address{
  margin-right: 0px;
}

.receipt-header h3{
  margin-bottom: 0;
}

.receipt-header P{
  margin-top: 10px;
}

.logo-container img{
  height: 60px;
}


.customer-container{
   padding: 7rem 4%;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   margin-top: -44px;
   line-height: 3rem;

}


.customer-container h2{
  margin-bottom: 10px;
  color: #DA2C32;
  font-size: 20px;
}

.customer-container h4{
  margin-bottom: 10px;
  margin-top: 0;
  color: #808080;
}

.customer-container p{
 margin: 0;
 color: #808080;
}

.customer-container h4 span{
 margin: 0;
 color: #003466;
}

.customer-container h3 span{
 margin: 0;
 color: #003466;
}

.customer-container p span{
  color: #333;
}

.in-details{
  margin-top: auto;
  margin-bottom: auto;
}

/*

.product-container{
  padding: 5rem 4%;
  margin-top: -85px;
  width: auto;

}


.product-container .item-table{
  display:block;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  text-align: left;
}


.product-container .item-table td, th{
  padding: 20px 30px;
  }


.product-container .item-table th{
  background-color: #003466;
  color: #fff;
  font-weight: 500;
}

*/


.ap-product-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
   padding: 5rem 4%;
  margin-top: -10rem;

}


.ap-product{
  width: 300px;
  border: 1px solid #808080;
  padding: 20px 4px;
  margin: 0px 0px;
}

.ap-product h3{
  color: #333;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 500;
}


.ap-product h3 span {
  color: #003466;
}


.ap-product h3 .paid{
  color:#5e82f4;
}



.invoice{
  color: #003466;
  font-size: 25px;
  font-weight: 600;
}


.invoice-footer{
  padding: 3rem 4%;
  display: flex;
  justify-content: space-between;

margin-top: -50px;

}


.invoice-footer h2{
  margin-bottom: 10px;
}

.note{
  width: 50%;
}

.note h2{
  font-size: 25px;
  margin-bottom: 10px;
  color: #003466;
  font-weight: 500;
}

.note p{
  font-size: 14px;
  color: #808080;
}


.stamp{
  width: 165px;
  height: 165px;
}

.stamp img{
  width: 100%;
  height: 100%;
}



.print-btn-2{
  width: 70px;
  background-color: #fafafa;
  color: #333;
  border: 1px solid #fff;
  padding: 5px 8px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #333;
  }


 .print-btn-2:hover{
    background-color: #808080;
    color: #fff;

  }



.print-btn-3{
  width: 70px;
  background-color: #fafafa;
  color: #333;
  border: 1px solid #fff;
  padding: 5px 8px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #333;

  }


 .print-btn-3:hover{
    background-color: #808080;
    color: #fff;

  }


  .print-download{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin:13px auto;
    gap: 3px;


  }



  .loader-container{
    position: fixed;
    top:0; left:0;
    height:100%; 
    width:100%;
    z-index: 10000;
    background:#000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-container img{
    width:35rem;
}

.loader-container.fade-out{
    top:-110%;
    opacity:0;
}







/*Admin-side-Printing*/

.ap-popup{
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0px 0px 0px;
  color: #333;
  margin-top: 4%;
  overflow-y: auto;
}


.ap-popupmain{
  position: fixed;
  z-index: 100000000;
  width: 100%;
  height: 100%;
  top: 0rem;
  bottom: 0rem;
  right: 0rem;
  left: 0rem;
  background-color: rgba(255,255,255,0.9);
  overflow-y: auto;
}


/*Scroll Top*/
.arrow-btn{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
}

.arrow-btn a{
  height: 39px;
  width: 37px;
  text-align: center;
  background-color: #CB9833;
  display: block;
  border-radius: 3px;
  cursor: pointer;
}

.arrow-btn a span{
  color:white;
  line-height: 39px;
  font-size: 25px;
}













































/* media queries  */

@media (max-width:1200px){

  html{
    font-size: 55%;
  }


  .home .home-slider{
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.home .home-slider .swiper-wrapper .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev{
  top: 50%;
  
}



.home .home-slider .swiper-wrapper .box .content{
  width: 100%;
  padding: 4rem 2rem;
  margin: auto;
}

.home .home-slider .swiper-wrapper .box .content h3{
  font-size: 2rem;
  padding: 5px;
}

.home .home-slider .swiper-wrapper .box .content p{
  font-size: 1.5rem;
  padding: 5px
}


.btn5{
  margin-top: 1rem;
  padding:.5rem 3rem;
  font-size: 1.7rem;
  font-weight: 500;
}


}










@media (max-width:991px){


  section{
    padding:2rem;
  }

 .home{ 
  padding: 0rem 0%;
  overflow: hidden;
  background-color: #1a1a1a;

 }

  .home .home-slider{
  width: 100%;
  height: 100%;

}

.home .home-slider .swiper-wrapper .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev{
  top: 50%;
  
}



.home .home-slider .swiper-wrapper .box .content{
  width: 100%;
  padding: 4rem 2rem;
  margin: auto;
}

.home .home-slider .swiper-wrapper .box .content h3{
  font-size: 2rem;
  padding: 5px;
}

.home .home-slider .swiper-wrapper .box .content p{
  font-size: 1.5rem;
  padding: 5px
}


.btn5{
  margin-top: 1rem;
  padding:.5rem 3rem;
  font-size: 1.7rem;
  font-weight: 500;
}



.page-title{
  font-size:25px;
  
}


/* Header Control*/

header{
    padding: 20px;
  }


 header label{
  display: initial;
}

header .navbar{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
}

header .navbar ul li{
  width: 100%;
}

header .navbar ul li ul{
  position: relative;
  width: 100%;

}


header .navbar ul li ul li{
  background: #1a1a1a;
}

header .navbar ul li ul li ul{
  width: 100%;
  left: 0;
}

#menu-bar:checked ~ .navbar{
  display: initial;
}


}










@media screen and (max-width: 820px){



.home .home-slider{
  width: 100%;
  height: 100%;

}

.home .home-slider .swiper-wrapper .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev{
  top: 50%;
  
}



.home .home-slider .swiper-wrapper .box .content{
  width: 100%;
  padding: 4rem 2rem;
  margin: auto;
}

.home .home-slider .swiper-wrapper .box .content h3{
  font-size: 2rem;
  padding: 5px;
}

.home .home-slider .swiper-wrapper .box .content p{
  font-size: 1rem;
  padding: 5px
}


.btn5{
  margin-top: 1rem;
  padding:.5rem 3rem;
  font-size: 1.7rem;
  font-weight: 500;
}




.footer .flex .box h1{
  font-size: 2.5rem;
  }


.footer .flex .box{
   padding: 0rem 9% ;
}

.footer .flex .box form {
  width: 100%;
}


.founder-box-container .founder-box .founder-img{
  background-color: #1da0b0;
  height: 600px;
  width: 350px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.founder-box-container .founder-box .founder-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.founder-title h4{
  font-size: 20px;
  color: #1da0b0;
  padding-top: 15px;
}


.founder-title p{
  font-size: 14px;
  color: #808080;
}

.heading{
   padding-bottom: 2.0rem;
   font-size: 3rem;
   color: #1da0b0;
   
}

#gold{
  padding: 2rem 5%;
}


#hgold .gold-img{
  height: 130px;
  width: 130px;
}


.gold-heading h4{
  margin: 15px;
  color: #fafafa;
  font-weight: 400;
  font-size: 20px;
}


#gold .gold-entire-container .gold-container .gold-subtitle .gold-title h2{
  font-size: 25px;
}


.reviews{
  padding: 2rem 4%;
}

#admin1{
  height: 100vh;
}



}



@media screen and (max-width: 640px){

 #addicon{
  margin-left: 27%;
}


.title{
  font-size: 23px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;

}




#admin .values{
border: 0.5rem solid #1a1a1a;

}


.btn11{
  width: 80px;
  }


.btn12{
  width: 80px;
  }


#admin{
padding: 2rem 1.5%;

}


.pop-container .pop-form{
  padding: 5px;
}


.pop-title{
  font-size: 25px;
  color: #DA2C32;
  margin-top: 0px;
  margin-bottom: -3px;

}



.pop-container .pop-form{
  margin-bottom: 7rem;
}


.pop-form .button{
  flex-wrap: nowrap;
  gap: 0.5rem;
   margin-top: 70px;
}


.pop-form #button2{
   margin-top: 20px;
}



.pop-input-field button{
  font-size: 20px;
  padding: 8px 20px;
  font-weight: 400;

}


.del-container{
  max-width: 90%;
  width: 90%;
  border-radius: 10px;
  padding: 25px;
  margin: 15rem auto;
}


.del-input-field button:hover{
  border-radius: 30px;
}



.del_p{
  font-style: italic;
}


.print-box-2 h3{
  color: #333;
  padding-left: 10px;
  font-size: 14px;
}


.print-box h3{
  padding-left: 10px;
  font-size: 14px;
}


#admin_track .brand{
text-align: center;
font-size: 20px;
margin-bottom: -75px;
color: #5e82f4;
}


#receipt-admin{
  padding: 5rem 3%;
}


.invoice{
  font-size: 23px;
  font-weight: 600;
}



.logo-container{
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 0px;
}



.receipt-admin-values{
  border: 1rem solid #00264b;
}


.stamp{
  width: 150px;
  height: 150px;
}


article#main-col,
  aside#sidebar{
    float:none;
    text-align:left;
    width:100%;
  }


#main{
  padding:0rem 5%;
}



  }





