/* UTILITIES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   body {
       /*animation */
       /* background: linear-gradient(-45deg, #F8F7FF, #FED766, #EB8258, #545454, #4DA1A9); */
       background-size: 400% 400%;
       /* animation: gradient 40s ease infinite; */
       
       
   }
   
   
   
   a {
    text-decoration: none;
   }
   li {
    list-style: none;
   }
   
   /* NAVBAR STYLING STARTS */
   .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    /* background-color: #FED766; */
    /* background-color: lightgray; */
    color: #fff;
    font-family: 'Cairo', sans-serif;
   }
   
   /* LOGO */
   .logo {
    font-size: 40px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 10px 10px 32px black;
   
   
   }
   /* NAVBAR MENU */
   .menu {

    display: flex;
    gap: 1em;
    font-size: 18px;
   }
   .menu li:hover {
    background-color: gray;
    border-radius: 5px;
    transition: 0.3s ease;
   }
   .menu li {
    padding: 5px 14px;
   }
   /* DROPDOWN MENU */
   .services {
    position: relative; 
   }
   
   .navBarLinks {
       color: white
   }
   
   
   
   
   
     html, body {
     width: 100%;
     height:100%;
   }
   
   /*animation keyframe */
   @keyframes gradient {
       
       0% {
           background-position: 0% 50%;
       }
       50% {
           background-position: 100% 50%;
       }
       100% {
           background-position: 0% 50%;
       }
   }
   
   p { 
       font-size:17px;
   }
   
   .mainDescription { 
       /* display:flex;
       width: 100vw;
       height: 30vh;
      line-height: 30px;
       align-items: center;
       flex-wrap: wrap;
       flex-direction:column;
       border: #545454;
       border-style: solid; */
   
       
       padding: 2rem 4rem;
       width: 100vw;
       line-height: 50px;
       height: 50vh;
       display: inline-block;
       border: 3px solid #333333;
       font-size: 1rem;
       text-align: center;
       border-radius: 2% 6% 5% 4% / 1% 1% 2% 4%;
       text-transform: uppercase;
       letter-spacing: 0.3ch;
       background: lightgray;
       position: relative;
   
   
       
       
   }
   

   /* SERVICES PAGE */
    .serv {
        display: flex;
        border: 3px solid #fff;
        padding: 20px;
        background-color: #4c9e9e;
        border-radius: 25px;
        font-family: 'Cairo', sans-serif;
        margin-bottom: 50px;
        /* box-shadow: 5px 10px; */
  }
  
  .page {
    /* background-color: #4c9e9e; */
    padding-top: 25px;
    /* opacity: 60%; */
    flex-direction: column;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    padding-bottom: 25px;


  }

  .page1 {
    /* background-color: #4c9e9e; */
 
    opacity: 80%;
    flex-direction: row;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    
  

  }

  .cont {
    align-items: center;
    display: flex;
    padding: 20px;
    font-family: 'Cairo', sans-serif;
    float: left;
  }

.flip {
    border-radius: 25px;
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin-right: 50px;
}

.flip-inner {
    border-radius: 25px;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.5s;
    transform-style: preserve-3d;    
}
.flip:hover .flip-inner {
    transform: rotateY(180deg);
  }

  .flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
     margin-bottom: 50px;
  }
  
  .flip-front {
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 50px;
    background-color: #bbb;
    color: black;
  }

  .flip-back {
    border-radius: 25px;
    width: 300px; 
    height: 300px; 
    background-color: #4c9e9e;
    color: white;
    transform: rotateY(180deg);
  }

  .img {
    
    width: 200px; 
    height: 200px; 
    border-radius: 25px;
  }
  .box {
    width: 300px; 
    height: 300px; 
    margin-bottom:50px;
    border-radius: 25px;
    background-color:#4c9e9e;

  }

  .pageT {
    font-size: 40px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 10px 10px 32px black;
  }
  .listed {
      padding-left: 20px;
      list-style-type: circle;
  }
  #background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.servicesTxt {
  color: white;
}


 

  