@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');
@font-face {font-family: 'gothamregular';src: url('fonts/gotham_r.woff2') format('woff2'),url('fonts/gotham_r.woff') format('woff');font-weight: normal;font-style: normal;}
@font-face {font-family: 'gotham_boldregular';src: url('css/fonts/gotham-b.woff2') format('woff2'),url('fonts/gotham-b.woff') format('woff');font-weight: normal;font-style: normal;}
@font-face {font-family: 'gothammedium';src: url('fonts/gotham-m.woff2') format('woff2'),url('fonts/gotham-m.woff') format('woff');font-weight: normal;font-style: normal;}
@font-face {
font-family: 'vigallse';
src: url('fonts/VigallseRegular.woff2') format('woff2'),
  url('fonts/VigallseRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}


/*___________Scrollbar_____________*/
html{scrollbar-color: #000 #fff0;overflow: hidden;overflow-y: auto;}
html {--scrollbarBG: #fff0;--thumbBG: #000;}
body::-webkit-scrollbar {width: 5px;}
body {scrollbar-width: thin;scrollbar-color: var(--thumbBG) var(--scrollbarBG); overflow-x: heddint!important;} 
body::-webkit-scrollbar-track {background: var(--scrollbarBG);}
body::-webkit-scrollbar-thumb {background-color: var(--thumbBG) ;border-radius: 6px;border: 3px solid var(--scrollbarBG);}
*{scrollbar-color:  var(--thumbBG) var(--scrollbarBG);scrollbar-width: thin;box-sizing: border-box;}
/*___________Scrollbar END_____________*/


/*___________COMMON CSS___________*/
.container {max-width: 1440px; margin: auto; position: relative;}
body {background-repeat: repeat;background: url(../images/rgi-bg.jpg);margin: auto;font-family: 'gothammedium'; background-position: center bottom;background-repeat: no-repeat;background-size: cover;}
.pr{position: relative;}
.none{display: none;}


h1, h2, h3{font-family: 'vigallse';}

/*top*/
#go_top{ position: fixed; bottom:-10%; right:1%; transition:all 0.6s;font-size:30px; cursor:pointer;}
#go_top i{border-radius:100%;color:#38a4d2;}
#go_top.show{ bottom:7%; z-index:1;}
em {font-size:75%; line-height: 0;position: relative;vertical-align: baseline;top: -0.5em;}
section {padding: 135px 0 0;}
/*top*/

.heading_s1,.heading_min h2,.heading_s2{color:#fff; margin: 10px 0; font-size: 45px;}

.banner_frm .txt_bl {font-size: 25px;color: #126b6a;}
.txt_bl {font-weight: bold; font-size: 20px;margin: 0 0 10px;}
.txt_bl2 {font-family: "Ultra", serif; font-weight: normal;}
.txt_bl, .txt_bl2 {color:#126b6a;}
.txt_white {color:#fff; font-size: 30px;}
.heading_s1 {background: url(../images/textbg.jpg);background-clip: text;text-shadow: -4px 3px 3px rgba(255,255,255,0.5);color: transparent;}


  

/* icons */
.circle_min{position: absolute;width: 100px;height: 130px;}
.aboutIcon1{top: -40%;left: -10%;scale: 0.7;}
.aboutIcon2{bottom: -27%;right: -22%;rotate: 100deg;scale: 0.8;}
.sliderIcon1 {bottom: 7%; scale: 0.7;left: 5%;}
.sliderIcon2 {bottom: 0%; scale: 0.5;right:0%;}
.sliderIcon3 {top: 0%; scale: 0.7;right:5%;}
.sliderIcon4 {top: -15%; scale: 0.7;right:5%;}

.circle {position: absolute;}
.c1,.c2,.c3,.c4 {border-radius: 50%;}
.c1 {width: 30px; height: 30px; background-image: url(../images/bubble1.png);background-repeat: no-repeat; left:10%;bottom: 0; animation: scaleUpDown 3s infinite ease-in-out;}
.c2 {width: 10px; height: 10px; outline: 10px solid #95cefd; left:0%;bottom: 50%;animation: bounce 4s ease infinite alternate;}
.c3 {width: 40px; height: 40px; outline: 12px solid #95cefd;right: 0;bottom: 30%; animation: pulse 2s infinite ease-in-out;}
.c4 {width: 16px; height: 16px; border: 5px solid #3a6bca;right: 0;top: 0; box-shadow: 0 0 2px 0 #000;background: #fff; animation: moveDiagonally 5s infinite ease-in-out;}

/* Scaling up and down */
@keyframes scaleUpDown {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.5);
  }
}

@keyframes bounce {
  0% {
    transform:translateY(0px);
  }
  100% {
    transform:translateY(-20px);

  }
}

/* Pulsating effect */
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.3);
      opacity: 0.7;
  }
}

/* Moving diagonally */
@keyframes moveDiagonally {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(30px, 30px);
  }
  100% {
      transform: translate(0, 0);
  }
}

.waters-img img{position: relative;z-index: 2;scale: 1.3;}
.bnrIcon {background-image: url(../images/glass.png);background-repeat: no-repeat; width: 220px; height: 140px; position: absolute; top:38px; right:-68px; background-size: contain;}




.star {background-image: url(../images/article3-icon.png);background-repeat: no-repeat; height: 100px; width: 100px;position: absolute;}
.starIcon1 {left: 18%;top: -15%;scale: 0.7; animation: rotateStar 4s linear infinite;}
@keyframes rotateStar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.starIcon2 {scale: 0.5;top: -25%; }
@keyframes pulsateStar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.starIcon3 {top: -21%; left: 30%; scale: 0.5; animation: bounceStar 2s ease-in-out infinite;}
@keyframes bounceStar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.starIcon4 {right: 15%; top: -5%;animation: rotateStar 4s linear infinite;}
.starIcon5 {right: -4%; scale: 0.5; top: -24%; }
.starIcon6 {right: -10%; scale: 0.6; bottom: 22%; animation: bounceStar 2s ease-in-out infinite;}
.starIcon7 {bottom: -16%; scale: 0.5; right: 12%;animation: rotateStar 4s linear infinite;}
.starIcon8 {bottom: -34%; right: 32%; scale: 0.7; animation: pulsateStar 3s ease-in-out infinite;}
.starIcon9 {bottom: -40%; right: 20%; scale: 0.5;}
/* icons End */


/* Styling for bubble */
#background-wrap {position: relative;}
.bubble {position: absolute;bottom: 0px;pointer-events: none;animation: rise 15s infinite ease-in;opacity: 0;background-repeat: no-repeat; background-position: center;}
/* Styling for bubble */


/* Bubble size and position variations */
.bubble.x1 {width: 40px; height: 40px; left: 10%; animation-duration: 18s; animation-delay: 2s;}
.bubble.x2 {width: 60px; height: 60px; left: 20%; animation-duration: 20s; animation-delay: 4s;}
.bubble.x3 {width: 30px; height: 30px; left: 30%; animation-duration: 22s; animation-delay: 6s;}
.bubble.x4 {width: 50px; height: 50px; left: 40%; animation-duration: 24s; animation-delay: 8s;}
.bubble.x5 {width: 80px; height: 80px; left: 55%; animation-duration: 26s; animation-delay: 10s;}
.bubble.x6 {width: 70px; height: 70px; left: 70%; animation-duration: 28s; animation-delay: 12s;}
.bubble.x7 {width: 30px; height: 30px; left: 80%; animation-duration: 30s; animation-delay: 14s;}
.bubble.x8 {width: 20px; height: 20px; left: 90%; animation-duration: 32s; animation-delay: 16s;}
.bubble.x9 {width: 40px; height: 40px; left: 65%; animation-duration: 34s; animation-delay: 18s;}
.bubble.x10 {width: 90px; height: 90px; left: 50%; animation-duration: 36s; animation-delay: 20s;}

/* Bubble size and position variations */

/* Bubble rising and drifting animation */
@keyframes rise {
  0% {
      transform: translateY(0) translateX(0); 
      opacity: 0.6;
  }
  25% {
      transform: translateY(-400px) translateX(50px); 
  }
  50% {
      transform: translateY(-800px) translateX(-50px); 
      opacity: 0.8;
  }
  75% {
      transform: translateY(-1200px) translateX(30px); 
  }
  100% {
      transform: translateY(-1800px) translateX(-50px); 
      opacity: 0.5; 
  }
}





/* new icons image bubble start */

.imgbubbleIcon {background-image: url(../images/bubble1.png); background-repeat: no-repeat;width: 300px; height: 265px; scale: 0.5;position: absolute;  right: -6%; top: -13%; animation: float 6s ease-in-out infinite;  transform: translatey(0px);}


.imgbubbleIcon3{background-image: url(../images/bubble3.png); background-repeat: no-repeat;width: 300px; height: 200px; scale: 0.5;position: absolute; right: -12%; top: 45%; animation: float 6s ease-in-out infinite;  transform: translatey(0px);}


.imgbubbleIcon2{background-image: url(../images/bubble2.png); background-repeat: no-repeat;width: 300px; height: 200px; scale: 0.5;position: absolute; left: 60%; bottom: -38%; animation: float 6s ease-in-out infinite;  transform: translatey(0px);}



.imgbubbleIcon4{background-image: url(../images/bubble4.png); background-repeat: no-repeat;width: 300px; height: 200px; scale: 0.5;position: absolute; left: -40%; top: -25%; animation: float 10s ease-in-out infinite;  transform: translatey(0px);}
@keyframes float {
  0%{  transform: translatey(0px);}
  50%{   transform: translatey(30px);}
  100%{   transform: translatey(0px);}
}
/* new icons image bubble end  */

/*___________COMMON CSS___________*/



/* Header */
header{position: absolute;top: 30px;width: 100%;z-index: 999;}
.rgi-logo img {margin: 7px 0 0;}
.hdr-sec{display: flex;justify-content: space-between;}
.drp-sec .btn09 .drop-btn{background-color: #fff;padding: 10px 25px;border-radius: 50px;text-align: center;  box-shadow: 3px 3px 0px #000, 3px 2px 3px #516f93 inset;cursor: pointer;transition: .1s ease-out;font-size: 15px;font-weight: 600; border:none}
.drp-sec .btn09 .drop-btn:hover{box-shadow: 0 0 0;background-color: #38a4d2; color: #fff; border:1px solid #38a4d2}
.drp-sec .addition-drop-txt{background-color: #fff;border-radius: 4px;margin: 10px 0 0;text-decoration: none;display: none;transition: .3s ease-in-out;}
.drp-sec:hover .addition-drop-txt{display: block;}
.drp-sec .addition-drop-txt a{display: block;text-align: center;padding: 5px 0px;text-decoration: none;color: #000;transition: .3s ease-out;}
.drp-sec .addition-drop-txt a:hover{background-color: #38a4d2;border-radius: 5px;color: #fff;}
.btn09Aj{cursor: pointer;}
.btn09Aj{padding: 10px 20px;border: 1px solid #2f2a70;background-color: #5228da;color: #fff;font-weight: bold;font-size: 17px;border-radius: 50px;}
.btn09Icon{padding-left: 45px;position: relative;}
.btn09Icon::after{content: '';background-image: url(../images/arrow-br.png);background-size: cover;position: absolute;top: 0;left: -7px;width: 47px;height: 47px;margin: auto;bottom: 0;}

 /* .boxBnt .btn09Aj{ box-shadow: 3px 5px 0px #000;
transition: box-shadow .3s ease, transform 0.3s ease;}
 .boxBnt .btn09Aj:hover{box-shadow: 0 8px 12px #38a4d2; transform: translateY(5px);}
 .boxBnt .btn09Aj:active{ box-shadow: 0 2px 4px #000;
  transform: translateY(3px);} */

  
/* Header */











/* Banner */
.water-impact-min {display: flex; justify-content: end;padding: 20px 0;}
.waters-impact-left {position: absolute;left: 5%;top: 4%;z-index: 5;width: 450px;}
.waters-impact-right img {width:100%;}
/* .home-banner {background: url(../images/rgi-bg.jpg);background-repeat: no-repeat;background-size: 10%;position: relative;padding-top: 100px;} */
.waters-impact-row{width:70%;position: relative;}
.water-impact-min,.container{height: 100%;}
.waterIconA{overflow: hidden;}
.Heroimg {position: relative; z-index: 2; margin-left: 37%;}
.Heroimg img{width: 100%; animation: rotate 6s ease-in-out infinite;  transform: translatey(0px); }
@keyframes rotate {
  0%{  transform: rotate(0deg);}
  50%{   transform: rotate(2deg);}
  100%{   transform: rotate(0deg);}
}
/* .hero_video {position: absolute;
bottom: 12px;
left: -17px;
right: 0;
overflow: hidden;
width: 90%;
height: 77%;
margin: auto;} */
.hero_video img{width: 100%;height: 100%;object-fit: cover;}
.hero_video video{width: 100%;height: 100%;object-fit: cover;scale: 1.1;}
.waterIconB{position: absolute;right: -5%;top: -8%;}
.waterIconB{width:20%;}
.text_img img {width: 370px;}
.abttext-img img{width: 300px;}
/* form */
.form-group input, .form-group textarea {padding: 12px 15px;width: 70%; border-radius: 50px; font-weight: bold; box-shadow: 4px 4px 0px #042f63, 2px 2px 2px #5889bc inset; border:none}
.form-group textarea {width: 100%;}
.form-group {padding: 14px 0;position: relative;}
.g-recaptcha {scale: 0.8;}
.form_bnr {position: relative;}
/* btn */

.box {
position: absolute;
transform: translate(-0%, 0%);
padding: 10px 30px;
display: flex;
overflow: hidden;
cursor: pointer;
background-color: #5228da;
transition: all 0.4s;
border-radius:20px;
box-shadow: 3px 3px 2px #053063d4;
width: fit-content;}


.arrow-B{position: relative;
bottom: 0;
margin-top: -4px;}

.arrow-B img{width: 11%;
margin-left: -17px;}



.article_box1, .article_box2, .article_box3 {left: inherit;}
.article_box1 {bottom:-10%;}
.article_box2 {bottom:10%;}
.article_box3 {bottom:3%;}
.box:hover{box-shadow: none}
.form-main .box {right: 0; margin: auto; bottom: 0; width: fit-content;margin-top: 12px;}

.box i {
position: absolute;
z-index: -1;
left: 0;
top: 50%;
/* transform: translateY(-50%);
width: 100%; */
height: 200px;
background-color: inherit;
/* box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
transition: 
transform 0.4s linear, 
top 1s linear; */
overflow: hidden;
}

.box i:before,
.box i:after {
content: "";
position: absolute;
width: 200%;
height: 200%;
top: 0;
left: 50%;
transform: translate(-50%, -75%);
}
.box i:before {
border-radius: 46%;
background-color: rgba(20, 20, 20, 0.2);
animation: animate 5s linear infinite;
}
.box i:after {
border-radius: 40%;
background-color: rgba(20, 20, 20, 0.5);
animation: animate 10s linear infinite;
}

.box button, .box a {background:none; border:none; color:#fff; text-transform:uppercase;font-weight: bold;cursor: pointer;letter-spacing: 2px;}

@keyframes animate {
0% {
transform: 
translate(-50%, -75%) 
rotate(0deg);
}
100% {
transform: 
translate(-50%, -75%) 
rotate(360deg);
}
}


/* btn */
.form09 .txt_bl2 {font-size: 30px;font-family: ultra;}
/* form end */



/* Banner end */

/* about */
.about_min p {text-align: center;line-height: 30px;font-size: 18px;}
.text-wrapper {max-width: 800px;}
.about_min {display: flex;justify-content: center;align-items: center; text-align: center;padding: 70px 0;}
.heading_s2 {font-family: 'vigallse'; font-size: 70px; color: #fff; text-shadow: none; text-shadow: 1px 2px 0px #042f63;}
.text-wrapper p{color: #fff;}
/* about End */


/* Activity */
.activity_sec {background-image: url(../images/activity-bg.png);background-repeat: no-repeat;background-size:contain;height: 748px;width: 1200px;margin: auto;color:#fff;text-align: center;}
.activity_min {padding: 120px 0 0;margin: auto;}
.activity_min h4 {font-weight: normal; text-transform: uppercase; font-size: 20px;}
.activity_min p {width: 70%; margin: auto; line-height: 25px}
/* Activity */




/* actvity new */
.actvity_slider_min {padding: 40px 0 0;overflow: hidden;}
.actvity-min {display: flex; align-items: center;gap: 30px;}
.actvity-min .content {width:90%;}
.actvity-min .content p {line-height: 24px;}
.actvity-min .dwnload_btn {margin: 30px 0;}
/* .article-img{width: 100%;} */
/* .article-img img{width: 100%;} */

/* actvity new end */



/* Pulse Game */
.pulse_game_min {padding: 40px 0 0;overflow: hidden;}
.pulse-min {display: flex; align-items: center;gap: 30px;}
.pulse-min .content {width: 30%;
  position: absolute;
  top: 29%;
  bottom: 0;
  right: 35%;
  font-size: 13px;}
  .pulse-img{width: 100%;}
  .pulse-img img{margin-left: 24%;}

.pulse-min .dwnload_btn {margin: 30px 0;}

.pulse-min .content h2{font-size: 20px;color: #056a66; padding: 0px 66px;}
  .pulse-min .content h3{font-size: 16px;
    color: #2f2a70; text-align: center;margin: 19px; width: 70%;}
    .pulse-min .content p {text-align: center;margin: 19px;width: 70%;}
 .pulse_box1{position: absolute;
  padding: 8px 24px;
  margin: auto 80px;
  font-size: 11px;}
/* Pulse Game */



.arrow-P{position: relative;
  bottom: 0;
  margin-top: -1px;}

  .arrow-P img{width: 11%;
    margin-left: 60px;}



/* article slider */
.article_slider_min {padding: 140px 0 ;overflow: hidden;animation: animatex 5s linear infinite;}
.article-min {display: flex; align-items: center;gap: 30px;}
.article-min .content {width:90%;}
.article-min .content p {line-height: 24px;}
.article-min .dwnload_btn {margin: 30px 0;}
/* .article-img{width: 100%;} */
/* .article-img img{width: 100%;} */

.slick-disabled{opacity: 0.5;pointer-events: none;}
.arrows-min {position: absolute;margin: auto;bottom: 0;left: 0; background: none; border: none;font-weight: bold; cursor: pointer;width: fit-content;bottom:-0px;}
.arrows-min img{width: 40px;}
.slick-next {right: 0;z-index: 2;}
.slick-prev {right: 120px;z-index: 2;}

.article-slider .slick-list {overflow: inherit;color: #fff;}
.article-slider .slick-slide{position: relative;opacity: 0;transition: all 0.5s ease-in-out;}
.article-slider .slick-slide.slick-active{opacity: 1;}
.article-slider-min{width: 900px;margin: auto;position: relative;height: 600px;}
.article-slider{position: absolute;inset: 0;width: 100%;height: fit-content;margin: auto;overflow: hidden;padding:30px;}
.article-slider-min::after{content: '';position: absolute;inset: 0;margin: auto;width: 100%;height: 100%;background:url(../images/box.png);background-size:100% 100%;background-repeat: no-repeat;scale: 1.2;background-position: center;  mix-blend-mode: screen;pointer-events: none;animation: float 10s ease-in-out infinite; }




.articleWrap{display: flex;gap: 15px;}
.articleWrap-img{width: 300px;margin:auto;margin-bottom: 0;}
.articleWrap-img img{width: 100%;}

.articleWrap-img.articleWrap-img2{width: 250px;}
.articleWrap-img.articleWrap-img3{}

.articleWrap-text{width: 100%;padding-bottom: 100px;}
.article-slider  p{margin-bottom: 15px;}
.articleWrap-btn{padding-top:30px;}
.box, .article_box1{
  position: absolute;
  transform: translate(-0%, 0%);
  padding: 10px 40px;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  background-color: #5228da;
  transition: all 0.4s;
border-radius:20px;
box-shadow: 3px 3px 2px #053063d4;
width: fit-content;}


.arrow-A{position: relative;
  bottom: -34px;
  margin-top: -39px;}

  .arrow-A img{width: 6%;
    margin-left: -12px;}



    .articleWrap-img{width: 300px;margin:auto;margin-bottom: 0;}
    .articleWrap-img img{width: 100%;}
    .articleWrapcat-img{position: absolute; bottom: -3%; right: 9%;}



/* article slider end */


/* footer */
.footerTopBg{pointer-events: none;z-index: 9; position: relative;}
.footerTopBg img{display: block;width: 100%;}
.footerBottomBg{margin: -150px 0 0;position: relative;pointer-events: none;}
.footerBottomBg img{display: block;width: 100%;}
.footer09 {  padding: 80px 0 0 0;}
.footer09 .container{position: relative;z-index: 2;}
.ft_sec {padding: 150px 0px 70px 0px;}
.footer-min {display: flex; justify-content: space-around; align-items: center;flex-wrap: wrap;}
.ft_sos,.magazines-img {padding: 20px 0;}
.ft_sos ul {display: flex;align-items: center;justify-content: space-evenly; list-style: none; padding: 0;}
.ft_sos ul li {margin: 0 8px 0 0; color:#fff}
.ft_sos ul li img {border-radius: 50%;}
.ft_sos a img {transition: all 0.4s}
.ft_sos a:hover img {transform: scale(1.1);}
.magazines-img img {width: 100%;}
.ftr-sb-txt, .ftr-sb-txt a {color:#fff; text-decoration: none;padding: 0 20px;}
.ftr-sb-txt .ft-txt {font-size: 12px;padding: 0 20px;}
.btm-txt {padding: 20px 0;}
.btm-txt h4 {text-align: center;text-transform: uppercase;
margin: 0; font-weight: 400; font-size: 18px; letter-spacing: 1px;}
.btm-txt h4 a {color: #fff; text-decoration: none; }


/* feedback form */
.feedbackRow{padding: 60px 0 100px;border-radius: 80px 80px 0 0; text-align: center;}
.form-row {display: grid; grid-template-columns: repeat(3,1fr);position: relative; gap:20px; margin-bottom: 20px;}
.error {margin: -5px 20px; color: red; font-size: 10px; position: absolute;
left: 0; bottom: 0px;}
.form-main .error {position: inherit;text-align: left;}
.form-row input {width:100%; padding: 15px 20px; border: 1px solid #ccc;border-radius: 100px;}
textarea {width: 100%; height: 100px; padding: 10px; border: 1px solid #ccc; border-radius: 5px; resize: vertical;}
.g-recaptcha {transform: scale(0.6);margin: -14px -15px 0;height: 60px; border-radius: 20px;}
.form-group__captcha {display: grid; align-items: center; justify-content: center;}
.form_bnr .form-group__captcha {justify-content: flex-start}
.thank-you-message {text-align: center;margin-top: 20px; color: #185aa4; font-size: 18px; font-weight: 600;}  
/* footer End */






@media only screen and (max-width: 1440px) {
    .container{max-width: 85%;}
}
@media (max-width:967px){
  .article-slider-min{width: 100%;height:100%;}
  .article-slider{position: relative;padding: 10px;}
  .article-slider-min::after{background-size: cover;opacity: 0.5;scale: 1.3;}

}
@media (max-width:767px){

  section{padding: 20px 0 0;}


br {display: none;}
/* header */
.drp-sec .addition-drop-txt a{font-size: 12px;}
.rgi-logo img{width: 150px;}
.drp-sec .btn09 .drop-btn{font-size: 10px;} 
/* header */

.heading_s1 {font-size: 24px;}
.banner_frm .txt_bl {font-size: 18px;}
.form-group input {width: 100%;}
.txt_bl {font-size: 15px;}
.about_min p {line-height: 26px; font-size: 15px;}

/* banner */
.waters-impact-left {margin-left: 0;position: inherit;width: 100%;}
.water-impact-min {display: block; padding: 150px 0 0;}
.text_img img {width: 250px;}
.waters-impact-row {width: 100%;margin-top: 70px;}
.waters-impact-right img {width: 200px;}
/* banner */

/* activity */
.activity_sec {height: auto; width: fit-content;}
.activity_min {padding: 0px 0 0;}
.heading_s1, .heading_min h2, .heading_s2 {font-size: 26px;margin-top: 50px;}
.txt_white {font-size: 15px;}
.game39_scrrenA .game39_scrrenWrap{width: 47%;
  height: 49%;}
  .game39_scrrenWrapData{width: 29%;}
  .game39_scrrenWrapData h3{font-size: 38px;}
  .game39_scrrenWrapData h6{font-size: 12px;}
  .game39_scrrenWrapData p{font-size: 11px;}
  .game39_scrrenWrapBtn{margin: 18px 0;}
  .btn09Icon::after{top: 0px; left:-3px; width: 35px; height: 35px;}
  .game39_scrrenWrapBtn .btn09Aj {font-size: 10px;}
  .boxBnt {text-align: center;}
  .btn09Aj .btn09Icon{padding: 7px 11px;}
/* activity */

.abttext-img img {width: 150px;}
.article-min {display: block;margin: 10px}
.ftr-sb-txt, .ftr-sb-txt a, .ftr-sb-txt .ft-txt {padding: 0;}
.article-img img {width: 100%;}
.article-min .content {line-height: 24px;font-size: 15px; width: 100%;}
.footerBottomBg {margin: 0px 0 0;}
.form-row {grid-template-columns: repeat(1,1fr); gap:10px}
.form-row input {width: 100%; margin-bottom: 10px;}
.imgbubbleIcon{width: 200px;top:0;height: 182px;background-size: contain;}
.ft_sos ul li img {width: 30px;}
.slick-next {left: 20%}
.arrows-min {bottom: 0%; }
br {display: none;}
.article-min .dwnload_btn {margin: 0px 0 50px;}
.feedbackRow { padding: 0;}

/* icons */
.aboutIcon1 {top: -30%; left: 0%; scale: 0.6;}
.aboutIcon2 {bottom: -26%; right: -6%; scale: 0.6;}
.sliderIcon1 {top: 33%; scale: 0.5; left: 8%;}
.sliderIcon3 {top: -11%; scale: 0.5; right: 5%;}
.sunIcon {scale: 0.3; left: 30%; top: -17%;}
.sliderIcon2 {bottom: -12%;}
.starIcon4 {top: 30%; right: 30%;scale: 0.5;}
.sliderIcon4 {top: 0; scale: 0.5;left: -13%;}
.starIcon7 {left: 0;}
.starIcon2,.starIcon3,.starIcon5 {display: none}
.starIcon8 {bottom: -32%; right: 0;}
/* icons */

.Heroimg{margin-left: 0;}
.gameStep1 .game39_scrrenWrap{height: 400px;}
.article_slider_min{padding: 40px 0;}
.about_min{padding: 30px 0;}



/* Article  */
.articleWrap{display: block;}
.articleWrap-img{width: 189px;margin: auto;}
.articleWrap-img img{width: 100%;}
.articleWrap-text{width: 100%;padding: 20px;line-height: 20px;font-size: 15px;}
.articleWrap-text h2{margin: 20px 0;}
.article-slider-min::after{scale: 1.4;    background-size: contain;}
/* Article end */

/* pulse shell  */
.pulse-img img{width: 100%; margin: 0;}
.pulse-min .content{width: 47%;
  top: 21%; }
  .pulse-min .content h2{margin: 49px -16px; width: 0;}
  .pulse-min .content h3{width: 70%;
    margin: -40px 59px;}
  .pulse-min .content p{width: 70%;
    margin: 45px 62px;}
  .pulse_box1{top: -1%; height: 27px;
    padding: 20px;
    margin: auto; }
    .pulse_box1 .btn09{padding: -5px 19px;
      font-size: 14px;}
/* pulse shell end */


}




/* Game */
a{text-decoration: none;}
.gameContainerImageOver{position: absolute;bottom: 8%;width: 40%;left: 15%;  mix-blend-mode: luminosity;opacity: 0.8;  animation: float 10s ease-in-out infinite;}
.game39_wrap img{width: 100%;height: 100%;object-fit: cover;}
.game39_wrap{position: relative;width: 700px;margin: auto;}
.game39_scrren{margin: auto;width: 100%;}
.gameStep1 .game39_scrrenWrap{background-image: url(../images/pulse-game.png);width: 100%;height: 600px;background-size: contain;background-repeat: no-repeat;background-position: center;display: flex;align-items: center;align-content: center;}
.game39_scrrenWrapData{width:300px;height: fit-content;margin: auto;text-align: center;}
.game39_scrrenWrapData h3{font-size:25px;margin: auto;color: #126b6a;}
.game39_scrrenWrapData h6{margin: auto;font-size:11px;color: #2f2a70;}
.game39_scrrenWrapData p{color: #2f2a70;font-size: 11px;}
.game39_scrrenWrapBtn{margin: 26px 0 0}
.gameStep2::after, .gameStep2::before{content: '';background: url(../images/sheel.png);background-repeat: no-repeat;background-size: contain;display: block;height:150px;width: 100%;background-position: center;position: relative;z-index: -1;pointer-events: none;}
.gameStep2::before{margin: 0 0 -40px 0;}
.gameStep2::after{margin: -40px 0 0 0;rotate: 180deg;}
.game39_scrrenWrapBtn .btn09Aj{font-size: 14px;}
.gameWrapper {border: 7px solid #fff; position: relative;}
.gameContainerImage img {width: 100%; display: block;}
.gameContainerFindObjectMsg, .gameContainerFindObject {position: absolute; inset: 0; width: 100%; height: 100%;}
.gameContainerFindObject img{width: 100%;display: block}
.FindObject, .FindObjectMsg {position: absolute;}
.FindObject img {width: 100%; display: block; object-fit: contain;}
.FindObject {width: 20px; height: 20px;  border-radius: 100%; cursor: pointer;transition: all 0.5s ease-in-out;opacity: 0.9;}
.FindObject1 {left: 6%; top: 45%;width: 17px;rotate: -22deg;}
.FindObject2 {left: 84.5%; top: 7%;width: 24px;height: 26px;  rotate: -11deg;}
.FindObject3 {left: 67%; top: 68%;}
.FindObject4 {left: 73.3%; top: 38%;width: 6px;}
.FindObject5 {left: 83.5%; top: 58%;width: 13px;}
.FindObject::after{content: "";width: 45px;height: 45px;background: url(../images/object.png);background-size: contain;inset:0 0 0 -15px;margin: auto;position: absolute;display: block; animation: pulse 1s infinite alternate;scale: 0;transition: all 0.5s ease-in-out;}
.FindObject.itsHint{scale: 1.7;animation: pulse 1s infinite alternate;opacity: 1;}
.ObjectMsgBtnRow{padding: 10px 0;}
.FindObjectMsg {display: none; background: url(../images/qbg.jpg); color: #fff; padding: 10px; text-align: center; border-radius: 10px; position: relative;width: 300px;inset: 0;margin: auto;height: fit-content;position: absolute;font-size: 12px;}
.FinalObjectMsg{width: 100%;padding: 0;overflow: hidden;scale: 1.1;z-index: 22;background: #fff;}
.FinalObjectMsg a, .FinalObjectMsg button{padding: 6px 12px;border: 1px solid #2f2a70;background-color: #5228da;color: #fff;font-weight: bold;font-size: 12px;border-radius: 50px;cursor: pointer;}

.FindObjectMsg .close-btn {display: block;width: fit-content;padding: 7px 15px;font-size: 12px;color: #fff;border-radius: 50px; border: none;cursor: pointer;margin: 10px auto 0;  border: 1px solid #2f2a70; letter-spacing: 1px;font-weight: bold;background-color: #5228da;}
.FindObject.active {border: 2px solid red;}
.FindObject.clicked {border:2px solid green;pointer-events: none;}
.FindObjectMsg.active {display: block;}
.takeHint{position: absolute;right: 10px;top: 10px;z-index: 2;width: 20px;cursor: pointer;}

.resultBg{position: relative;}
.FinalObjectMsg  .resultBgBtn{all: unset; width: 100px;height: 57px;display: block;position: absolute;left: 17%;top:58%;cursor: pointer;background-image: url(../images/readmore.png);background-repeat: no-repeat;background-size: contain;font-size: 0;}
.ObjectMsgBtnRow{display: none;}

.FinalObjectMsg  .resultBgBtn2{all: unset; width: 300px;height: 28px;display: block;position: absolute;left: 0;bottom: 7%;cursor: pointer;background-image: url(../images/readmorebtn2.jpg);background-repeat: no-repeat;background-size: contain;font-size: 0;right: 0;margin: auto;border-radius: 100px;}
.resultBgAns button{position: absolute;right: 5px;top: 5px;font-size: 0;padding: 0;width: 20px;height: 20px;background-image: url('../images/close.jpg');background-repeat: no-repeat;background-size: cover;border: none;}
.FindObject.clicked.itsHint::after{display: none;}
.game39_scrren{display: none;}
.game39_scrren.active{display: block;}
.resultBgAns{position: absolute;inset: 0;z-index: 22;width: 100%;height: 100%;margin: auto;background: #fff;display: none;}
.FindObjectMsg.active.showAns .resultBgAns{display: block;}
.resultBgAns img{width: 100%;height: 100%;object-fit: contain}
.FindObjectMsg.active.showAns .resultBgAns{display: block;}
.resultBgAns img{width: 100%;height: 100%;object-fit: contain;display: block;}
/* .gameStep2{display: block;} */
@keyframes pulse {from {transform: scale(0.5);}to {transform: scale(1.2);}}
.FindObjectResultA,.FindObjectResultB,.FindObjectResultC{display: none;}
/* Game End */

@media screen and (max-width: 767px) {
.game39 .container{max-width: 100%;}
.game39_wrap{width: 500px;}
.game39_scrrenWrapData h3{font-size: 18px;}
.game39_scrrenWrapData{width: 250px;}
.game39_scrrenWrapData p{font-size: 9px;}
}

@media screen and (max-width: 567px) {
.game39_wrap{width:350px;}
.takeHint{width: 12px;}
.game39_scrrenWrapData{background-color: #ffffffb2;padding: 20px;border-radius: 20px;}
}

