@import url('https://fonts.googleapis.com/css2?family=PT+Serif&family=Poppins:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&family=Poppins:wght@500;600&family=Rampart+One&family=Readex+Pro:wght@500&display=swap');

:root{

    --theme: #111111b9;
  --theme_text: 'PT Serif', serif;
  --head_text: 'Rampart One', cursive;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Nunito";
}

body::-webkit-scrollbar {
  width: 0.5rem;
}

body::-webkit-scrollbar-track {
  background: rgb(15, 15, 15);
}

body::-webkit-scrollbar-thumb {
  background: rgb(19, 161, 102);
  border-radius: 5px;
  border: 2px solid black;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.heading{
    font-family: "Poppins";
    color: black;
}

/* .para{
  font-family: "Nunito";
} */


/* NEW NAVBBBBBAARRR*/

#primary-nav{
  list-style-type: none;
  position:fixed;
  align-items: center;
  justify-content: center;
  inset: 0 0 0 60%;
  background: var(--theme);
  height: 100vh;
  flex-direction: column;
  padding:15rem 1em;
  backdrop-filter: blur(1rem);
  z-index:1000;
  transform: translateX(100%);
  transition: transform 370ms ease-out;

}

#primary-nav[data-visible="true"]{
  transform: translateX(0%);
}




.burgir{
  list-style-type: none;
  background-color: rgb(255, 255, 255);
  width:40px;
  height:4px; 
  margin: 8px;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
}

.active{
  transform: translateX(0%);
}


#main-menu{
  
  position: fixed;
  aspect-ratio: 1;
  z-index:9999;
  width:3rem;
  top:0.5rem;
  right:1rem;
}

@media (max-width:500px){
  #main-menu{
    right:0.2rem;
  }

  .burgir{
    width:30px;
  }
}

@media (max-width:330px){
  #main-menu{
    right:0;
  }

  .burgir{
    width:25px;
  }
}


.nav-types{
  font-family: var(--theme_text);
  margin:auto;
  padding:auto;
  text-decoration:solid;
  letter-spacing: 3px;
  
  

}


.nav-types > a{
   text-shadow: 3px 3px black;
   transition: all 0.1s ease-in;
}

.nav-types > a:hover{
  text-shadow: 1px 1px 2px rgb(241, 175, 32), 0 0 1.3em rgb(255, 174, 0), 0 0 0.2em rgb(255, 72, 0);
}

@media (max-width: 35em){
  #primary-nav{
    inset: 0 0 0 0;
  }
}




/* XXXXXXXXX*/

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  
}



.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 70%;
  margin: 10px;
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
    margin: 0 auto;
  }

  .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;

  }
  

}



/* ?FOOTER */

#myfoot {
  background-image: linear-gradient(
    89.8deg,
    rgb(182, 26, 26) 4.7%,
    rgb(97, 8, 14)
  );
}

#fb:hover {
  background-color: rgb(77, 77, 206);
}

.instagi{
  transition: all 0.3s ease-in-out;
  color:rgb(46, 241, 199)
}

.instagi:hover{
  color: rgb(238, 32, 67);
  transform: scale(1.1)
}

#twitter:hover {
  background-color: rgb(37, 152, 247);
}
#insta:hover {
  background: radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
}
.list-items {
  font-size: large;
  font-weight: 400;
}

.list-items > .fas {
  width: 30px;
  padding: 5px;
  margin: 5px;
}

.footer-text {
  font-family: "Poppins", serif;
  font-weight: 700;
}

.footer-rows {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 460px) {
  .footer-rows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


.con{
  min-width:600px;
  margin:20px;
  padding:30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-div{
  transition: all 0.4s ease-in-out;
}


.topbtn{
    
    position: fixed;
    right: 0;
    bottom: 5rem;
    z-index:9999;
    border-radius:2px;
  border:3px solid rgb(75, 77, 235);
  outline:none;
  width:3rem;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(50px)rotate(90deg);
  background-color: rgb(27, 26, 26);
}
.active-topbtn{
  transform: translateX(0px);
}

#burgir-div{
  padding-left:6px;
  padding-right:10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100%;
  margin-right:-20px;
    backdrop-filter: blur(1rem);
  box-shadow: 0 0 30px 5px rgba(7, 7, 7, 0.733);

}

#loading-sec{
  height:700vh;
}

.loader {
  border: 4px solid #070606; /* Light grey */
  border-top: 5px solid #10c56a; /* Blue */
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 2s linear infinite;
}


#flexcont{
    display: none;
    opacity: 0;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 10px;
    padding:20px;
    margin:10px;
    margin-top:30px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px 5px black;
    transition: all 0.4s ease;

}

.cldiv{
    margin:8px;
    width:180px;
    padding: 2px;
    background-color: rgb(255, 255, 255);
    border-radius:3px;
    transition: all 0.4s ease;
}

.climg{
max-width: 100%;
  height: auto;
    

}

.cldiv:hover{
transform: scale(1.1);

}

@media (max-width: 800px){
    .cldiv{
        width:150px;
    }
}

@media (max-width: 600px){
    .cldiv{
        width:130px;
    }
}

@media (max-width: 500px){
    .cldiv{
        width:30%;
    }
}

@media (max-width: 310px){
    .cldiv{
        width:30%;
    }
}