 /* =====================   Utils  ================== */

 .center-justified {
  display: flex !important;
  justify-content: center !important;
  gap: 5px;
 }

 .center-aligned {
  display: flex !important;
  align-items: center !important;
  gap: 5px;
 }

 .centered-text {
  text-align: center;
 }

 .capitalize {
  text-transform: capitalize;
 }

 .auto-margin {
  margin: auto;
 }


 /* ======   colors  ======== */
 .bg-royalblue {
  background-color: royalblue !important;
 }

 .bg-red {
  background-color: red !important;
 }.bg-white{
  background-color:white!important;
 }

 .bg-black {
  background-color: black !important;
 }

 .c-white,
 .c-white * {
  color: white !important
 }

  .c-royalblue,
 .c-royalblue * {
  color: royalblue !important
 }

  .c-blue,
 .c-blue * {
  color: blue !important
 }


 /* ======   Elements    ======== */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
  text-transform: capitalize;
  font-weight: bolder;
  margin: 0;
 }

 h1 {
  font-size: 35px;
 }

 h2 {
  font-size: 30px;
 }

 h3 {
  font-size: 25px;
 }

 h4 {
  font-size: 20px;
 }

 h5 {
  font-size: 15px;
 }

 h6 {
  font-size: 10px;
 }

 .header-left {
  margin-left: 10px !important;
 }

 p {
  font-size: 18px;
  line-height: 30px;
 }

 a {
  text-decoration: none;
 }

 a.learn-more {
  width: fit-content;
  background-color: orangered;
  padding: 15px 20px;
  margin-top: 70px;
  color: white 
 }

 a.learn-more * {
  color: white;
 }

 a.learn-more:hover *[class *="ri-"] {
  transform: translateX(5px);
 }

 a.flex {
  display: flex;
  gap: 5px;
  align-items: center;
 }

 button{
  cursor:pointer;
 }

 .uppercase {
  text-transform: uppercase;
 }



 .wrap {
  flex-wrap: wrap;
 }


 marquee.banner {
  width: 100%;
  height: 100px;
  background-color: brown;
  color: white;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
  /* margin-top: -30px; */
  margin-bottom: 50px;
 }




 /* Icons */
 [class *="twitter"] {
  background: black;
  color: white;
 }

 [class *="facebook"],
 [class *="linkedin"] {
  background: royalblue;
  color: white;
 }

 /* Animations */
 .in-viewport-animate-y .viewport-item{
      transform: translateY(100px);
      opacity: 0;
      transition: transform 0.8s, opacity 2s ease-out;
    }.in-viewport-animate-y .viewport-item.active{
      transform: translateY(0px);
      opacity: 1;
    }



    .hidden, .no-display{
      display: none!important;
    }