/* UTILITIES */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
    /*animation */
    background: linear-gradient(-45deg, #F8F7FF, #FED766, #EB8258, #545454, #4DA1A9);
    background-size: 400% 400%;
    
    
    
    
}
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
}
.highlight {
background-color: gray;
border-radius: 5px;
}
  html, body {
  width: 100%;
  height:100%;
}
.mainBox {
    padding-top: 25px;
    opacity: 60%;
    flex-direction: column;
    position: relative;
    display: flex;
    /* align-items: center; */
    font-family: 'Cairo', sans-serif;
    padding-bottom: 25px;
}
.pictures {
    border-radius: 25px;
    width: 700px; 
    height: 300px; 
    background-color: transparent;
    color: white;
}
.slogan {
    text-align: left;
    font-size: 100px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 10px 10px 32px black;
    
}


.slogan {
    text-align: left;
    font-size: 100px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 10px 10px 32px black;

}
/*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;
   


    
    
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  opacity: 75%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.sloganText {

    color: white;

}

/* @keyframes logoAni {
       
       0% {
           transform: translateX(180px) rotate(45deg);
           height: 50px;
           weight: 53px
       }
       50% {
           transform: translateX(180px) rotate(45deg);
           height: 40px;
           weight: 43px
       }

       75% {
           transform: translateX(180px) rotate(45deg);
           height: 30px;
           weight: 43px
       }
       100% {
           transform: translateX(180px) rotate(45deg);
           height: 25px;
           weight: 28px
       }
   } */



 /* .logoAni { 

    animation: logoAni 5s infinite;
   } */


   .logoAni {
    
    width: 25px;
    height: 25px;
    
    /* -webkit-animation:spin 4s ease-in 3;
    -moz-animation:spin 4s ease-in 3; */
    animation:spin 4s ease-in 1;
}
/* @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } */
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }