

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    padding-top: 0.1px;
}

body{
	scroll-behavior: smooth;
  scroll-padding: 12rem;   
}

a{
	text-decoration: none;
}


/*************************NAV-HEADER******************************/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.23);
  padding: 4px 0;
  font-weight: 550;
}

.nav-container{
  max-width: 1280px;
  margin: auto;
  padding: 0 15px;
}

.header .nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img{
  vertical-align: middle;
  width: 150px;
}

.header .menu .head{
  display: none;
}

.header .menu ul{
  list-style: none;
}

.header .menu > ul > li{
  display: inline-block;
}

.header .menu > ul > li:not(:last-child){
  margin-right: 40px;
}

.header .menu .dropdown{
  position: relative;
}

.header .menu a{
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  color: black;
  line-height: 1.5;
  display: block;
}

.header .menu a:hover{
  color: #5767B0;
}

.header .menu > ul > li > a{
  padding: 18px 0;
}
.marginright{
  margin-right: 1rem;
}

.header .menu > ul > .dropdown > a{
  padding-right: 15px;
}

.header .menu i{
  font-size: 30px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: black;
  top: calc(50% - 15px);
}

.header .menu > ul > li > i{
  right: 0;
}

.header .menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 15px 0;
  border: 3px solid #5767B0;
  border-radius: 12px;
  background-color:white;
  /*box-shadow: 0 0 5px hsla(0,0%,0%,0.5);*/
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu li:hover > .sub-menu{
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.2s ease;
}

.header .menu .sub-menu a{
  padding: 6px 24px;
}

.header .menu .sub-menu span{
  background-image: linear-gradient(hsl(0, 0%, 5%), hsl(0, 0%, 5%));
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition:  background-size 0.5s ease;
}

.header .menu .sub-menu li:hover > a > span{
  background-size: 100% 1px;
}

.header-right{
  display: flex;
}

.header-right > *{
  margin-left: 11px;
}

.header-right .icon-btn{
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 2rem;
}

.header-right .icon-btn:hover{
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.ri-facebook-circle-fill {
  color: #1877f2;
}
.ri-instagram-fill {
  color: #c32aa3;
}
.ri-linkedin-box-fill {
  color: #0a66c2;
}
.ri-whatsapp-fill {
  color: #25d366;
}
.ri-phone-fill {
  color: #5767B0;
}

.header-right .open-menu-btn{
  display: none;
}

@media (max-width:991px) {
  .header{
    padding: 12px 0;
  }

  .header .logo img{
    width: 82px;
  }

  .header .menu{
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    border-radius: 20px;
    border: 2px solid #5767B0;
    background-color: #EEEEEE;
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(100%);
  }

  .header .menu.open{
    transform: none;
  }

  .header .menu .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .header .menu .close-menu-btn{
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: black;
  }

  .header .menu .close-menu-btn::before{
    transform: rotate(45deg);
  }

  .header .menu .close-menu-btn::after{
    transform: rotate(-45deg);
  }

  .header .menu > ul > li{
    display: block;
  }

  .header .menu > ul > li:not(:last-child){
    margin-right: 0;
  }

  .header .menu li{
    border-bottom: 1px solid gray;
  }

  .header .menu li:first-child{
    border-top: 1px solid gray;
  }

  .header .menu > ul > li > a{
    padding: 12px 0;
  }

  .header .menu > ul > .dropdown > a{
    padding-right: 34px;
  }

  .header .menu i{
    height: 34px;
    width: 34px;
    border: 1px solid grey;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    border-radius: 50px;
  }

  .header .menu .dropdown.active > i{
    background-color: gray;
    transform: rotate(180deg);
  }

  .header .menu .sub-menu{
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
    border: none;
  }

  .header .menu .dropdown.active > .sub-menu{
    display: block;
  }

  .header .menu .sub-menu li:last-child{
    border: none;
  }

  .header .menu .sub-menu a{
    padding:  12px 0 12px 15px;
  }

  .header .menu .sub-menu span{
    background-image: none;
  }

  
  .header-right .open-menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }

  .header-right .open-menu-btn .line{
    height: 2px;
    width: 30px;
    background-color: #000000;
    position: absolute;
  }

  .header-right .open-menu-btn .line-1{
    transform: translateY(-8px);
  }

  .header-right .open-menu-btn .line-3{
    transform: translateY(8px);
  }
}

/**********************************/
.privacy-content {
   width: min(1200px, 94%);
   padding: 1rem;
   margin: 8rem auto 2rem auto;
 }



.privacy-content h1{
  text-transform: uppercase;
    font-size: 1.6rem;
    padding: 2rem;
    line-height: 2.8rem;
   color: white ;
   text-align: center;
   border-radius: 20px;
   background-color: #5767B0;
   margin-bottom: 5rem;
}

.privacy-body-content{
    margin-top: 2rem;
}

.margin15{
    margin: 25px 0;
}

.margin5{
    margin: 15px 0;
}

.section-title {
    font-weight: bold;
    margin: 25px 0;
}
.subsection-title {
    font-weight: bold;
    margin: 25px 0 0 20px;
}
.text-content {
    margin: 25px 0 0 50px;
    text-transform: capitalize;
}

.privacy-body-content .content ul {
    margin-left: 40px;
}

.contact{
    padding: 2rem;
   text-align: center;
   border-radius: 20px;
   color: white;
  background-color: #5767B0;
}

.contact a{
  color: white;
  text-decoration: underline;
}

.termscontact{
  padding: 2rem;
 text-align: center;
 border-radius: 20px;
 color: white;
background-color: #5767B0;
}

.termscontact a{
  color: white;
  text-decoration: none;
}


.shake-lr {
	-webkit-animation: shake-lr 1.2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-lr 1.2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

 
 @-webkit-keyframes shake-lr {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes shake-lr {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}