/*common css*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", serif;
  background: #F6F6F6;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.pb-40 {
  padding-bottom: 40px;
}

header .headerinner {
  background-color: #EBEBEB;
  padding: 14px 12px;
}
header .headerinnerwthod {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerlogo img {
  width: 250px;
}
header .headerhb {
  width: 26px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .headerhb span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #503B62;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .headerhb span:nth-child(even) {
  left: 50%;
  border-radius: 0 15px 15px 0;
}
header .headerhb span:nth-child(odd) {
  left: 0px;
  border-radius: 15px 0 0 15px;
}
header .headerhb span:nth-child(1),
header .headerhb span:nth-child(2) {
  top: 0px;
}
header .headerhb span:nth-child(3),
header .headerhb span:nth-child(4) {
  top: 9px;
}
header .headerhb span:nth-child(5),
header .headerhb span:nth-child(6) {
  top: 18px;
}
header .headerhb.open span:nth-child(1),
header .headerhb.open span:nth-child(6) {
  transform: rotate(45deg);
}
header .headerhb.open span:nth-child(2),
header .headerhb.open span:nth-child(5) {
  transform: rotate(-45deg);
}
header .headerhb.open span:nth-child(1) {
  left: 0px;
  top: 7px;
}
header .headerhb.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
header .headerhb.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
header .headerhb.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
header .headerhb.open span:nth-child(5) {
  left: 0px;
  top: 15px;
}
header .headerhb.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 15px;
}
header .headerhb.open span {
  height: 3px;
}
header .headerlang {
  position: relative;
}
header .headerlangmain {
  width: 140px;
  border-radius: 4px;
  border: 1px solid #503B62;
  background: #FDF9EC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #000000;
  position: absolute;
  right: 0;
  top: -10px;
  z-index: 99;
  box-shadow: 0px 3px 0px 0px #503B62;
}
header .headerlangmain i {
  font-size: 24px;
  transition: ease-in-out 0.5s;
}
header .headerlangmain span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
header .headerlangdd {
  background: #FDF9EC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #150523;
  width: 100%;
  border-top: 1px solid #ffffff;
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  max-height: 338px;
  overflow-x: hidden;
}
header .langchild {
  padding: 7px 8px;
  display: block;
  color: #000000;
}
header .langchild:hover {
  background: #C99EEE;
  color: #000000;
  border: 1px solid #150523;
  border-radius: 5px;
}
header .activelang .headerlangmain i {
  transform: rotate(180deg);
}
header .activelang .headerlangdd {
  display: block;
}
header .headerddmenu {
  overflow: hidden;
  transition: height 0.2s ease-out;
}
header .headerddmenu .headerddmenuinner {
  padding: 10px 0;
}
header .headerddmenu .headerddchild {
  text-align: center;
}
header .headerddmenu .headerddchild a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #503B62;
  width: 218px;
  padding: 10px;
  text-decoration: none;
  display: inline-block;
}
header .headerddmenu .headerddchild a:hover {
  border-radius: 6px;
  background: #C99EEE;
  border: 1px solid #503B62;
  box-shadow: 0px 4px 0px 0px #535075;
  color: #ffffff;
}

/*smart scrrol for lang droepdown */
.smart-scrool::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ffffff;
  border-radius: 8px;
  background-color: #ffffff;
}

.smart-scrool::-webkit-scrollbar {
  width: 8px;
  background-color: #ffffff;
}

.smart-scrool::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px #000000;
  background-color: #000000;
}

@media (min-width: 768px) {
  header .mobileheaderlang {
    display: none;
  }
}
@media (max-width: 767px) {
  header .headerlangmain {
    display: none;
  }
  header .mobileheaderlang img {
    width: 28px;
  }
  header .activelang .headerlangmain {
    display: block;
    top: 30px;
  }
}
.bottom-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
}

.left-grass {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.right-grass {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
}

.mainsection {
  padding-top: 40px;
  padding-bottom: 40px;
}

.maincontainer {
  max-width: 746px;
  margin: 0 auto;
}

.maincontent {
  border-radius: 12px;
  text-align: center;
  min-height: 300px;
}

@media (max-width: 767px) {
  .maincontainer {
    margin: 0 12px;
  }
}
.adv-ads-txt {
  font-size: 10px !important;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center !important;
  opacity: 0.7;
  width: 100%;
}

.static_ads {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 320px;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.static_ads .adv-ads-txt {
  position: absolute;
  top: 0;
}

.custom_ad {
  margin-top: 40px;
}

.top_ad {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.ads_sec {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer {
  background: #503B62;
  padding-top: 24px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
footer .footer-content li {
  padding: 0 10px;
}
footer .footer-content li img {
  width: 24px;
}
footer .footercms li {
  padding: 0 15px;
  position: relative;
}
footer .footercms li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
footer .footercms li::after {
  width: 7px;
  height: 7px;
  background: #ffffff;
  content: "";
  position: absolute;
  right: 0;
  border-radius: 50%;
  top: 10px;
  right: -5px;
}
footer .footercms li:last-child::after {
  content: none;
}
footer .footercopyright {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

/**nudge effect **/
.nudge-effect-quiz {
  animation: animate-shake 2s ease-in-out infinite;
}

@keyframes nudge-effect-quiz {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate-shake {
  0%, 10%, 65%, 100% {
    transform: rotate(0deg) scale(1);
  }
  30%, 40% {
    transform: rotate(-1deg) scale(1.05);
  }
  35%, 45% {
    transform: rotate(1deg) scale(1.05);
  }
}/*# sourceMappingURL=statik.css.map */