:root {
  --black: #000000;
  --white: #ffffff;
  --blue: #00b8ff;
  --gary: #606367;
  --white-gray: #b5b5b5;
  --yelow: #f59e30;
  --yelow-bg: #ffebd2;
  --blue-bg: #d2eaff;
  --dark-blue: #004C70;
  --sky-blue: #D1EAFF;
  --Oleo-script: "Oleo Script";
  --Roboto: "Roboto", sans-serif;
}

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

body {
  font-family: var(--Roboto);
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-margin-top: 120px;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--dark-blue);
}
body::-webkit-scrollbar-track {
  background: var(--white-gray);
}
body::-webkit-scrollbar {
  width: 10px;
}

html {
  scroll-behavior: smooth;
}

section,
div {
  scroll-margin-top: 80px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding: 0 15px;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-end {
  align-items: end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

h1,
.h1 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 300;
  color: var(--black);
}
h1 span,
.h1 span {
  font-size: 85px;
  font-weight: 600;
  color: var(--blue);
}
h1 span:nth-of-type(2),
.h1 span:nth-of-type(2) {
  color: var(--black);
}

.heading {
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 15px;
}
.heading span {
  font-size: 85px;
  line-height: 80px;
  color: var(--blue);
  font-weight: 600;
}

.inner-heading {
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 300;
}
.inner-heading span {
  font-size: 60px;
  color: var(--dark-blue);
  line-height: 60px;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0px !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.col-100 {
  width: 100%;
}

.col-50 {
  width: 49%;
}

.h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--black);
  line-height: 70px;
  margin-bottom: 15px;
}

.comman-inside-space {
  padding: 40px 0;
}

.owl-carousel.owl-theme .owl-nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
.owl-carousel.owl-theme .owl-nav .owl-prev,
.owl-carousel.owl-theme .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cccccc;
  color: var(--white);
}
.owl-carousel.owl-theme .owl-nav .owl-prev span,
.owl-carousel.owl-theme .owl-nav .owl-next span {
  font-size: 35px;
  margin-bottom: 7px;
}
.owl-carousel.owl-theme .owl-nav .owl-prev:hover, .owl-carousel.owl-theme .owl-nav .owl-prev:active,
.owl-carousel.owl-theme .owl-nav .owl-next:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:active {
  background-color: #004c70;
}
.owl-carousel.owl-theme .owl-nav .owl-prev.owl-next,
.owl-carousel.owl-theme .owl-nav .owl-next.owl-next {
  background-color: #004c70;
}

.main-header {
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.main-header .navbar {
  width: 100%;
}
.main-header .navbar .logo {
  max-width: 200px;
  height: auto;
}
.main-header .navbar .navigation ul {
  gap: 20px;
}
.main-header .navbar .navigation ul li {
  width: auto;
}
.main-header .navbar .navigation ul li a {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: 500;
  position: relative;
  display: block;
}
.main-header .navbar .navigation ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--blue);
  border-radius: 10px;
  bottom: -8px;
  transition: all linear 1s;
}
.main-header .navbar .navigation ul li:hover a {
  color: var(--blue);
}
.main-header .navbar .navigation ul li:hover a::before {
  width: 100%;
}
.main-header .navbar .navigation ul li:first-child a {
  color: var(--blue);
}
.main-header .navbar .navigation ul li:first-child a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  height: 3px;
  background-color: var(--blue);
  border-radius: 10px;
  bottom: -8px;
  transition: all linear 0.5s;
}
.main-header .navbar .right-nav ul {
  gap: 10px;
}
.main-header .navbar .right-nav ul li {
  width: auto;
}
.main-header .navbar .right-nav ul li a {
  display: block;
}
.main-header .navbar .right-nav ul li a img {
  max-width: 220PX;
  height: auto;
}
.main-header .navbar .resp-menu {
  display: none;
  border: 2px solid #004c70;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  padding: 7px 5px;
  cursor: pointer;
}
.main-header .navbar .resp-menu span {
  width: 100%;
  height: 2px;
  background-color: #004c70;
  display: block;
  transition: all linear 0.5s;
  border-radius: 4px;
}
.main-header .navbar .resp-menu span:nth-of-type(2) {
  margin: 6px 0;
}

.com-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.com-btn .comman-btn {
  width: auto;
  padding: 8px 35px 8px 15px;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--black);
  outline: none;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 5;
  transition: all linear 0.5s;
}
.com-btn .comman-btn::after {
  content: ">";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 8px;
  background-color: var(--white);
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  border-radius: 2px;
  transition: all linear 0.5s;
}
.com-btn .comman-btn:hover, .com-btn .comman-btn:active {
  background-color: var(--blue);
}
.com-btn .comman-btn:hover::after, .com-btn .comman-btn:active::after {
  background-color: var(--black);
  color: var(--white);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select,
option {
  font-family: var(--Roboto);
  width: 100%;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #404040;
  border: none;
  outline: none;
}

.inner-btn {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.inner-btn .reused-btn {
  border: 1px solid transparent;
  padding: 8px 70px 8px 10px;
  background: #004D70;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: all linear 0.5s;
}
.inner-btn .reused-btn::after {
  position: absolute;
  content: "";
  background: url("../images/right-arrow.svg") no-repeat;
  width: 30px;
  height: 15px;
  background-size: 100% 100% !important;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  transition: all linear 0.5s;
}
.inner-btn .reused-btn:hover {
  background: var(--yelow);
  color: var(--black);
}
.inner-btn .reused-btn:hover::after {
  background: url("../images/right-arrow-black.svg") no-repeat;
}

.home-banner {
  background-color: var(--white);
  margin-top: 90px;
}
.home-banner .container {
  display: flex;
  align-items: center;
  min-height: 500px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
.home-banner .container::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/banner-bg.png) no-repeat;
  width: 800px;
  height: 450px;
  background-size: 100% 100%;
  z-index: -1;
}
.home-banner .container .banner-content {
  max-width: 960px;
  margin: auto;
  text-align: center;
}
.home-banner .container .banner-content p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin: 10px 0 15px;
}

.aboutus-sec {
  padding: 40px 0 40px;
  background: #000;
  position: relative;
}
.aboutus-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: -85px;
  background: url(../images/about-ring-icon.png) no-repeat;
  width: 150px;
  height: 300px;
  background-size: 200px 260px;
  z-index: 1;
}
.aboutus-sec::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 98px;
  height: 100%;
  background-color: var(--white);
}
.aboutus-sec .row-wrap {
  display: flex;
  justify-content: end;
  align-items: end;
  position: relative;
}
.aboutus-sec .row-wrap .img-wrap {
  width: 40%;
  height: 480px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutus-sec .row-wrap .img-wrap img {
  height: 100%;
}
.aboutus-sec .row-wrap .content-wrap {
  width: 55%;
}
.aboutus-sec .row-wrap .content-wrap .heading {
  color: var(--white);
}
.aboutus-sec .row-wrap .content-wrap .heading span {
  color: var(--yelow);
}
.aboutus-sec .row-wrap .content-wrap p {
  color: var(--white);
  margin-bottom: 15px;
}

.program-impact-sec .row-wrap {
  align-items: center;
  justify-content: start;
  gap: 50px;
}
.program-impact-sec .row-wrap .content-wrap {
  width: 49%;
}
.program-impact-sec .row-wrap .content-wrap p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.program-impact-sec .row-wrap .img-wrap {
  width: 49%;
  max-width: 400px;
}
.program-impact-sec .program-option ul {
  display: flex;
  background-color: red;
}
.program-impact-sec .program-option ul li {
  width: 25%;
  background-color: #004c70;
  border-right: 1px solid var(--white);
  min-height: 220px;
  transition: all linear 0.5s;
}
.program-impact-sec .program-option ul li .des {
  position: relative;
  padding: 20px;
  height: 100%;
  overflow: hidden;
}
.program-impact-sec .program-option ul li .des::before {
  position: absolute;
  content: "";
  left: 20px;
  bottom: 30px;
  width: 40px;
  height: 3px;
  background-color: var(--yelow);
  border-radius: 10px;
}
.program-impact-sec .program-option ul li .des p {
  color: var(--white);
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 400;
}
.program-impact-sec .program-option ul li .des p span {
  font-size: 22px;
}
.program-impact-sec .program-option ul li .des .img-wrap {
  position: absolute;
  max-width: 76px;
  height: auto;
  right: -30px;
  bottom: 0;
  transition: all linear 0.2s;
}
.program-impact-sec .program-option ul li:nth-child(even) {
  background-color: #12719e;
}
.program-impact-sec .program-option ul li:hover {
  background-color: var(--yelow);
}
.program-impact-sec .program-option ul li:hover:nth-child(even) {
  background-color: var(--yelow);
}
.program-impact-sec .program-option ul li:hover .des::before {
  background-color: var(--white);
}
.program-impact-sec .program-option ul li:hover .des .img-wrap {
  right: 0;
}

.thingqbator-tracker-sec .content-row {
  margin-top: 60px;
  gap: 80px;
}
.thingqbator-tracker-sec .content-row .col-100 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--yelow-bg);
  position: relative;
  align-items: center;
}
.thingqbator-tracker-sec .content-row .col-100::before {
  content: "";
  position: absolute;
  right: 0;
  width: 60%;
  height: 200px;
  background: url("../images/tracker-text-bg.png") no-repeat;
  background-size: 100% 100%;
  bottom: 0;
}
.thingqbator-tracker-sec .content-row .col-100 .img-wrap {
  width: 40%;
  display: flex;
  justify-content: end;
  position: relative;
  top: -40px;
}
.thingqbator-tracker-sec .content-row .col-100 .img-wrap .img {
  position: relative;
  z-index: 2;
  max-width: 400px;
}
.thingqbator-tracker-sec .content-row .col-100 .img-wrap .img img {
  border-radius: 10px;
  border: 5px solid var(--white);
}
.thingqbator-tracker-sec .content-row .col-100 .img-wrap .img:before {
  content: "";
  position: absolute;
  right: -5px;
  background-color: #e5d3bd;
  bottom: -5px;
  width: 100%;
  z-index: -1;
  height: 100%;
  border-radius: 10px;
  opacity: 0.5;
}
.thingqbator-tracker-sec .content-row .col-100:nth-child(even) {
  background-color: var(--blue-bg);
}
.thingqbator-tracker-sec .content-row .col-100:nth-child(even) .img-wrap .img:before {
  background-color: #bdd2e5;
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap {
  width: 55%;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap img {
  margin-top: 10px;
  max-width: 70px;
  height: 70px;
  display: block;
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap .des p {
  font-size: 20px;
  line-height: 28px;
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap .des .com-btn {
  justify-content: start;
  margin-top: 20px;
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap .des .com-btn .comman-btn::after {
  background-color: var(--yelow);
  color: var(--white);
}
.thingqbator-tracker-sec .content-row .col-100 .content-wrap .des .com-btn .comman-btn:hover::after, .thingqbator-tracker-sec .content-row .col-100 .content-wrap .des .com-btn .comman-btn:active::after {
  background-color: var(--white);
  color: var(--yelow);
}

.witness-statements-sec {
  background-color: var(--black);
  margin-top: 70px;
}
.witness-statements-sec .container {
  position: relative;
}
.witness-statements-sec .heading {
  color: var(--white);
  text-align: right;
  position: absolute;
  width: 100%;
  top: -140px;
  right: 0;
  padding: 0 20px;
}
.witness-statements-sec .heading span {
  color: var(--yelow);
}
.witness-statements-sec .testimonal-slide {
  margin-top: 20px;
}
.witness-statements-sec .testimonal-slide .item .des {
  background-color: var(--white);
  border: 1px solid var(--black);
  padding: 50px 70px 100px;
  border-radius: 10px;
  margin-bottom: 50px;
  position: relative;
}
.witness-statements-sec .testimonal-slide .item .des::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  background: url("../images/testi-icon.png") no-repeat;
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
}
.witness-statements-sec .testimonal-slide .item .des .video-like {
  width: 100%;
  height: 250px;
  padding: 0 20px;
}
.witness-statements-sec .testimonal-slide .item .des .video-like iframe,
.witness-statements-sec .testimonal-slide .item .des .video-like video,
.witness-statements-sec .testimonal-slide .item .des .video-like img {
  width: 100%;
  height: 100%;
  display: block;
}
.witness-statements-sec .testimonal-slide .item .des .text .moretext {
  display: none;
}
.witness-statements-sec .testimonal-slide .item .des .text p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 5px;
  font-weight: 5px;
}
.witness-statements-sec .testimonal-slide .item .des .text p span {
  font-weight: 500;
}
.witness-statements-sec .testimonal-slide .item .des .moreless-button {
  color: var(--yelow);
  font-size: 14px;
  font-weight: 600;
}
.witness-statements-sec .testimonal-slide .item .des .people-details {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  position: absolute;
  bottom: -30px;
  width: 100%;
}
.witness-statements-sec .testimonal-slide .item .des .people-details .img {
  max-width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 1px solid var(--black);
  display: block;
  overflow: hidden;
}
.witness-statements-sec .testimonal-slide .item .des .people-details .img img {
  transform: scale(1);
  transition: all linear 0.5s;
}
.witness-statements-sec .testimonal-slide .item .des .people-details .user-info {
  width: calc(100% - 100px);
}
.witness-statements-sec .testimonal-slide .item .des:hover .people-details .img img {
  transform: scale(1.2);
  transition: all linear 0.5s;
}
.witness-statements-sec .testimonal-slide .owl-dots {
  display: none;
}
.witness-statements-sec .testimonal-slide .owl-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 0;
}
.witness-statements-sec .testimonal-slide .owl-nav .owl-prev,
.witness-statements-sec .testimonal-slide .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cccccc;
  color: var(--white);
}
.witness-statements-sec .testimonal-slide .owl-nav .owl-prev span,
.witness-statements-sec .testimonal-slide .owl-nav .owl-next span {
  font-size: 35px;
  margin-bottom: 4px;
}
.witness-statements-sec .testimonal-slide .owl-nav .owl-prev:hover, .witness-statements-sec .testimonal-slide .owl-nav .owl-prev:active,
.witness-statements-sec .testimonal-slide .owl-nav .owl-next:hover,
.witness-statements-sec .testimonal-slide .owl-nav .owl-next:active {
  background-color: #004c70;
}

.highlights-sec .heading {
  text-align: end;
}
.highlights-sec .content-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}
.highlights-sec .content-row .col-32 {
  width: 32%;
  min-height: 200px;
}
.highlights-sec .content-row .col-32 .img-wrap {
  width: 100%;
  margin-bottom: 8px;
  height: 250px;
}
.highlights-sec .content-row .col-32 .img-wrap img,
.highlights-sec .content-row .col-32 .img-wrap video,
.highlights-sec .content-row .col-32 .img-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.highlights-sec .content-row .col-32.event-data .row .col-50 .img {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 10px;
}
.highlights-sec .content-row .col-32.event-data .row .col-50 .img img {
  width: 100%;
  height: 100%;
}
.highlights-sec .content-row .col-32.event-data .row .col-50 .img .sticker {
  position: absolute;
  width: auto;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--blue);
  left: 2px;
  bottom: 8px;
}
.highlights-sec .content-row .col-32.event-data .row .col-50 .img .iframe-link-you {
  position: absolute;
  top: 0;
  max-width: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  margin: auto;
}
.highlights-sec .content-row .col-32.event-data .row .col-50 p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  min-height: 60px;
}
.highlights-sec .content-row .col-32.individual-statement-data .img-wrap {
  width: 100%;
  height: 230px;
}
.highlights-sec .content-row .col-32.individual-statement-data .img-wrap img {
  width: 100%;
  height: 100%;
}
.highlights-sec .content-row .col-32.individual-statement-data .h4 {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding: 10px 0;
  margin-bottom: 10px;
  color: var(--blue);
}
.highlights-sec .content-row .col-32.individual-statement-data p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
}
.highlights-sec .content-row .col-32.individual-statement-data p:nth-of-type(1) {
  font-size: 16px;
  font-weight: 600;
}
.highlights-sec .content-row .col-32.individual-statement-data .articla-des {
  max-height: 100px;
  overflow: auto;
}
.highlights-sec .content-row .col-32.individual-statement-data .articla-des p {
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 20px;
  margin-bottom: 8px;
}
.highlights-sec .content-row .col-32.live-social-data {
  max-height: 500px;
  overflow-x: scroll;
}
.highlights-sec .content-row .col-32.live-social-data .live-post {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.highlights-sec .content-row .col-32.live-social-data .live-post img {
  width: 100%;
  height: 100%;
}
.highlights-sec .content-row .col-32 .com-btn {
  justify-content: left;
}
.highlights-sec .content-row .col-32 .com-btn .comman-btn {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 14px;
  font-weight: 400;
  padding: 5px 30px 5px 8px;
}
.highlights-sec .content-row .col-32 .com-btn .comman-btn::after {
  background-color: transparent;
}
.highlights-sec .content-row .col-32 .com-btn .comman-btn:hover, .highlights-sec .content-row .col-32 .com-btn .comman-btn:active {
  color: var(--blue);
  border: 1px solid var(--blue);
}
.highlights-sec .content-row .col-32 .com-btn .comman-btn:hover::after, .highlights-sec .content-row .col-32 .com-btn .comman-btn:active::after {
  color: var(--blue);
}

.inspiring-success-stories {
  background-color: var(--black);
  padding-top: 0;
  margin-top: 90px;
}
.inspiring-success-stories .container {
  position: relative;
}
.inspiring-success-stories .container .heading {
  color: var(--white);
  text-align: end;
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
  top: -90px;
  line-height: 60px;
  padding: 0 20px;
}
.inspiring-success-stories .container .heading span {
  color: var(--yelow);
}
.inspiring-success-stories .content-row {
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  flex-wrap: wrap;
  padding-top: 70px;
}
.inspiring-success-stories .content-row li {
  width: 32%;
  background-color: var(--white);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
}
.inspiring-success-stories .content-row li .des {
  padding-top: 30px;
  position: relative;
  min-height: 480px;
}
.inspiring-success-stories .content-row li .des .head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}
.inspiring-success-stories .content-row li .des .head-row .sticker {
  width: auto;
  padding: 5px 60px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--yelow);
  text-align: left;
}
.inspiring-success-stories .content-row li .des .head-row .h4 {
  font-size: 14px;
  font-weight: 600;
  padding-right: 20px;
}
.inspiring-success-stories .content-row li .des .text-des {
  padding: 10px 30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 5;
}
.inspiring-success-stories .content-row li .des .text-des .addres-info,
.inspiring-success-stories .content-row li .des .text-des .company {
  font-size: 14px;
  font-weight: 600;
  color: var(--gary);
}
.inspiring-success-stories .content-row li .des .text-des .h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 28px;
  color: var(--black);
  margin: 10px 0;
  text-decoration: underline;
}
.inspiring-success-stories .content-row li .des .text-des .text {
  position: absolute;
  width: 100%;
  right: -500%;
  transition: all ease-in 1s;
  padding: 20px 30px;
}
.inspiring-success-stories .content-row li .des .text-des .text p {
  font-size: 14px;
  color: var(--white);
  line-height: 22px;
}
.inspiring-success-stories .content-row li .des .img-wrap {
  position: absolute;
  right: -1px;
  max-width: 240px;
  height: 240px;
  bottom: 0;
  transition: all linear 1s;
}
.inspiring-success-stories .content-row li .des .img-wrap img {
  width: 100%;
  height: 100%;
}
.inspiring-success-stories .content-row li .des .com-btn {
  position: absolute;
  right: 20px;
  bottom: -100px;
  transition: all ease-in-out 0.5s;
}
.inspiring-success-stories .content-row li .des .com-btn .comman-btn {
  border: none;
  background-color: transparent;
  color: var(--white);
  font-size: 14px;
  padding: 8px 28px 8px 15px;
}
.inspiring-success-stories .content-row li .des .com-btn .comman-btn::after {
  background-color: transparent;
  color: var(--yelow);
}
.inspiring-success-stories .content-row li:hover .des .img-wrap {
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all ease-in 0.1s;
  z-index: 1;
}
.inspiring-success-stories .content-row li:hover .des .img-wrap img {
  filter: blur(15px);
}
.inspiring-success-stories .content-row li:hover .des .img-wrap::before {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 2;
  opacity: 0.5;
}
.inspiring-success-stories .content-row li:hover .des .head-row .sticker {
  background-color: var(--white);
  color: var(--black);
}
.inspiring-success-stories .content-row li:hover .des .head-row .h4 {
  color: var(--white);
}
.inspiring-success-stories .content-row li:hover .des .text-des .addres-info,
.inspiring-success-stories .content-row li:hover .des .text-des .company {
  color: var(--white);
}
.inspiring-success-stories .content-row li:hover .des .text-des .h3 {
  color: var(--white);
}
.inspiring-success-stories .content-row li:hover .des .text-des .text {
  right: 0;
  transition: all ease-out 0.2s;
}
.inspiring-success-stories .content-row li:hover .des .text-des .text p {
  color: var(--white);
}
.inspiring-success-stories .content-row li:hover .des .com-btn {
  bottom: 20px;
}
.inspiring-success-stories .com-btn {
  justify-content: end;
  margin-top: 20px;
}
.inspiring-success-stories .com-btn .comman-btn {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}
.inspiring-success-stories .com-btn .comman-btn::after {
  background-color: var(--yelow);
  color: var(--white);
}
.inspiring-success-stories .com-btn .comman-btn:hover, .inspiring-success-stories .com-btn .comman-btn:active {
  border: 1px solid var(--yelow);
  color: var(--yelow);
}
.inspiring-success-stories .com-btn .comman-btn:hover::after, .inspiring-success-stories .com-btn .comman-btn:active::after {
  background-color: var(--white);
  color: var(--yelow);
}

.top-footer .footer-img-wrap {
  width: 100%;
  max-width: 450px;
  margin: auto;
}
.top-footer .footer-img-wrap img {
  width: 100%;
  display: block;
}

.page-footer {
  width: 100%;
  background-color: var(--black);
  padding: 40px 0 0px;
}
.page-footer .footer-row {
  align-items: end;
}
.page-footer .footer-row .footer-logo {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.page-footer .footer-row .footer-logo a {
  width: auto;
  display: block;
}
.page-footer .footer-row .footer-logo a img {
  width: 100%;
  height: 100%;
}
.page-footer .footer-row .footer-nav {
  padding: 10px 0;
}
.page-footer .footer-row .footer-nav ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.page-footer .footer-row .footer-nav ul li {
  width: auto;
}
.page-footer .footer-row .footer-nav ul li a {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  font-weight: 500;
  position: relative;
  display: block;
}
.page-footer .footer-row .footer-nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--white);
  border-radius: 10px;
  bottom: -8px;
  transition: all linear 0.5s;
}
.page-footer .footer-row .footer-nav ul li:hover a::before {
  width: 100%;
}
.page-footer .footer-row .footer-nav ul li:first-child a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  height: 3px;
  background-color: var(--white);
  border-radius: 10px;
  bottom: -8px;
  transition: all linear 0.5s;
}
.page-footer .footer-row .subsribe-form .input-items {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0px;
  border-bottom: 1px solid var(--gary);
}
.page-footer .footer-row .subsribe-form .input-items input[type=text] {
  width: 93%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--gary);
  font-weight: 500;
}
.page-footer .footer-row .subsribe-form .input-items .submit-btn {
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  outline: none;
  cursor: pointer;
  transition: all linear 1s;
}
.page-footer .footer-row .subsribe-form .input-items .submit-btn:hover {
  transform: rotate(45deg);
  transition: all linear 1s;
}
.page-footer .footer-row .social-info ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.page-footer .footer-row .social-info ul li {
  width: auto;
}
.page-footer .footer-row .social-info ul li a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-footer .footer-row .social-info ul li a img {
  width: auto;
  height: auto;
}
.page-footer .footer-row .info-details {
  text-align: right;
  padding: 10px 0 10px;
}
.page-footer .footer-row .info-details p {
  width: 100%;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.page-footer .footer-row .info-details p a {
  text-decoration: underline;
  color: var(--white);
}
.page-footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 30px;
  border-top: 1px solid var(--white-gray);
  margin-top: 30px;
}
.page-footer .bottom-footer p {
  color: var(--white-gray);
  font-size: 16px;
  font-weight: 500;
}
.page-footer .bottom-footer p a {
  text-decoration: underline;
  color: var(--white-gray);
}

.inners-banners {
  background: #004C70;
  margin-top: 80px;
  overflow: hidden;
}
.inners-banners .banner-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
}
.inners-banners .banner-box .baner-des {
  max-width: 594px;
}
.inners-banners .banner-box .baner-des .h1 {
  font-size: 40px;
  list-style: 45px;
  color: var(--white);
  font-weight: 500;
}
.inners-banners .banner-box .baner-des p {
  font-size: 20px;
  color: var(--white);
  line-height: 24px;
  font-weight: 400;
}
.inners-banners .banner-box .inner-img {
  position: absolute;
  right: -195px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  max-width: 765px;
  min-height: 520px;
}
.inners-banners .banner-box .inner-img img {
  width: 100%;
  height: 100%;
}

.inner-banners {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 520px;
  margin-top: 60px;
}
.inner-banners .container {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 520px;
}
.inner-banners .container .baner-des {
  max-width: 550px;
}
.inner-banners .container .baner-des .h1 {
  font-size: 40px;
  list-style: 45px;
  color: var(--white);
  font-weight: 500;
}
.inner-banners .container .baner-des p {
  font-size: 20px;
  color: var(--white);
  line-height: 24px;
  font-weight: 400;
}
.inner-banners .inner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.inner-banners .inner-img img {
  width: 100%;
  height: 100%;
}

.conatct-info-sec .heading-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.conatct-info-sec .heading-wrap .h1 {
  text-align: center;
}
.conatct-info-sec .contant .row-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.conatct-info-sec .contant .row-item .col-32 {
  width: 32%;
  background-color: var(--sky-blue);
  position: relative;
  padding: 30px;
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 60px;
}
.conatct-info-sec .contant .row-item .col-32 .item-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.conatct-info-sec .contant .row-item .col-32 .item-head .h3 {
  width: calc(100% - 55px);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #282828;
  margin-top: 20px;
}
.conatct-info-sec .contant .row-item .col-32 .item-head .img-wrap {
  width: 50px;
}
.conatct-info-sec .contant .row-item .col-32 .item-head .img-wrap img {
  width: 100%;
}
.conatct-info-sec .contant .row-item .col-32 .text {
  margin-top: 10px;
}
.conatct-info-sec .contant .row-item .col-32 .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #282828;
  margin-bottom: 10px;
}
.conatct-info-sec .contant .row-item .col-32 .text a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #282828;
  text-decoration: underline;
  word-wrap: break-word;
}
.conatct-info-sec .contant .row-item .col-32 .info-btn {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 15px 30px;
  background-color: var(--yelow);
  color: var(--white);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  transition: all linear 0.5s;
  display: none;
}
.conatct-info-sec .contant .row-item .col-32 .info-btn::after {
  position: absolute;
  content: "";
  background: url(../images/right-arrow.svg) no-repeat;
  background-size: 100% 100%;
  width: 30px;
  height: 15px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all linear 0.5s;
}
.conatct-info-sec .contant .row-item .col-32:hover .info-btn {
  display: block;
}

.contact-form-info-sec {
  background-color: #ededed;
}
.contact-form-info-sec .form-content .heading-wrap {
  max-width: 700px;
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
}
.contact-form-info-sec .form-content .heading-wrap p {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: var(--black);
}
.contact-form-info-sec .form-content .heading-wrap .h1 {
  font-size: 40px;
  color: var(--dark-blue);
}
.contact-form-info-sec .form-content .contact-form {
  max-width: 1060px;
  margin: auto;
}
.contact-form-info-sec .form-content .contact-form .row-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-form-info-sec .form-content .contact-form .row-item .input-item {
  width: 49%;
}
.contact-form-info-sec .form-content .contact-form .row-item .input-item.w-100 {
  width: 100%;
}
.contact-form-info-sec .form-content .contact-form .row-item .input-item .input-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.contact-form-info-sec .form-content .contact-form .row-item .input-item .input-row .readonly {
  width: 60px;
  padding: 0;
  text-align: center;
}

.our-stories-banner {
  margin-top: 80px;
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: linear-gradient(180deg, #E7E7E7 0%, #FFFFFF 100%);
  position: relative;
}
.our-stories-banner::before {
  content: "";
  position: absolute;
  right: 0;
  top: -70px;
  background: url(../images/stories-banner.svg) no-repeat;
  width: 860px;
  height: 375px;
  background-size: 100% 100%;
}
.our-stories-banner .our-stories-content {
  position: absolute;
  background-color: var(--black);
  width: 100%;
  bottom: 100px;
  left: 0;
}
.our-stories-banner .our-stories-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, #E7E7E7 23%, #FFFFFF 132%);
  width: 5%;
  height: 100%;
}
.our-stories-banner .our-stories-content p {
  color: var(--white);
}
.our-stories-banner .our-stories-content .box-item {
  position: relative;
}
.our-stories-banner .our-stories-content .box-item .stories-company-logo {
  position: absolute;
  left: 0;
  width: auto;
  height: auto;
  bottom: 135px;
}
.our-stories-banner .our-stories-content .box-item .stories-company-logo img {
  width: auto;
  height: auto;
}
.our-stories-banner .our-stories-content .box-item .short-des {
  max-width: 800px;
  padding: 20px 0;
}
.our-stories-banner .our-stories-content .box-item .short-des p {
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges {
  width: 25%;
  position: absolute;
  right: 0;
  bottom: -100px;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img {
  border-radius: 5px;
  padding: 15px;
  background-color: var(--yelow);
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img .img-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  max-height: 250px;
  height: 100%;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img .img-wrap img {
  width: 100%;
  height: 100%;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img .text {
  padding: 10px;
  max-width: 220px;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img .text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member .item .Storis-img .text p span {
  font-size: 18px;
  font-weight: 400;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member.owl-carousel.owl-theme .owl-nav {
  display: none;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member.owl-theme .owl-dots {
  margin-top: 5px;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member.owl-theme .owl-dots .owl-dot span {
  width: 40px;
  height: 8px;
  margin: 0 5px;
  background-color: #B3B3B3;
}
.our-stories-banner .our-stories-content .box-item .stories-imgges .multiple-stories-member.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--black);
}

.our-story-overview-sec .content .row-item {
  align-items: center;
}
.our-story-overview-sec .content .row-item .col-50 {
  width: 48%;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery li {
  width: 48%;
  border: 5px solid var(--dark-blue);
  border-radius: 10px;
  overflow: hidden;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery li:nth-child(odd) {
  margin-top: 20px;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery li .img-wrap {
  width: 100%;
  height: 100%;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery li .img-wrap img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all linear 1s;
}
.our-story-overview-sec .content .row-item .col-50 .stories-gallery li:hover .img-wrap img {
  transform: scale(1.1);
}
.our-story-overview-sec .content .row-item .col-50 .h1 {
  color: var(--dark-blue);
  text-align: left;
}
.our-story-overview-sec .content .row-item .col-50 p {
  font-size: 19px;
  line-height: 28px;
}
.our-story-overview-sec .content .row-item .col-50 .inner-btn {
  justify-content: flex-start;
  margin-top: 30px;
}
.our-story-overview-sec .content .row-item .col-50 .inner-btn .reused-btn::after {
  background: url(../images/map-icon.svg) no-repeat;
  right: 5px;
  height: 20px;
}

.program-statistics-sec .content ul {
  display: flex;
  justify-content: center;
}
.program-statistics-sec .content ul li {
  width: 25%;
  border: 1px solid var(--white);
  background-color: var(--dark-blue);
  padding: 40px;
  min-height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all linear 0.5s;
}
.program-statistics-sec .content ul li::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 40px;
  height: 4px;
  background-color: var(--yelow);
  transition: all linear 0.5s;
}
.program-statistics-sec .content ul li .des p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.program-statistics-sec .content ul li .des .h3 {
  font-size: 24px;
  line-height: 28px;
  color: var(--yelow);
  font-weight: 600;
  transition: all linear 0.5s;
  margin-bottom: 15px;
}
.program-statistics-sec .content ul li .des .h3 span {
  color: var(--white);
  font-size: 16px;
}
.program-statistics-sec .content ul li:hover {
  background-color: var(--yelow);
}
.program-statistics-sec .content ul li:hover::before {
  background-color: var(--dark-blue);
}
.program-statistics-sec .content ul li:hover .h3 {
  color: var(--dark-blue);
}

.full-w-img {
  width: 100%;
}
.full-w-img .img-wrap {
  width: 100%;
  height: 100%;
}
.full-w-img .img-wrap img {
  width: 100%;
  height: 100%;
}

.about-cograd-sec {
  background-color: #ededed;
}
.about-cograd-sec .contant {
  max-width: 1100px;
  margin: auto;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product {
  background-color: var(--dark-blue);
  padding: 10px 30px 30px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .head-part {
  align-items: center;
  margin-bottom: 10px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .head-part .h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .head-part .img-wrap {
  background-color: #002638;
  border-radius: 100px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .head-part .img-wrap img {
  width: 50px;
  height: 50px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item {
  width: 32%;
  border: 2px solid transparent;
  background-color: #E5233D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transition: all linear 0.5s;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item p {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item .img-wrap {
  width: 100px;
  height: auto;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item .img-wrap img {
  width: auto;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item.product-item:nth-of-type(2) {
  background-color: #C5192D;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item.product-item:nth-of-type(3) {
  background-color: #EF402C;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-product .roe-item .product-item:hover {
  border: 2px solid var(--white);
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category {
  margin-top: 10px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row {
  gap: 10px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item {
  width: 32.5%;
  background-color: var(--dark-blue);
  padding: 30px;
  min-height: 210px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item .text {
  width: calc(100% - 50px);
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item .text .h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item .text p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item .img-wrap {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 65px;
  height: 65px;
  border-radius: 100px;
  background-color: #002638;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-cograd-sec .contant .sdg-goals-content .sdg-goals-category .category-row .product-item .row-item .img-wrap img {
  width: 50px;
  height: 50px;
}

.people-say-sec {
  background-color: var(--white);
  border-bottom: 1px solid var(--white-gray);
}
.people-say-sec .contant {
  max-width: 1100px;
  margin: auto;
}
.people-say-sec .contant .people-say-testi .item .item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item {
  padding-left: 100px;
  position: relative;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item::before {
  position: absolute;
  content: "";
  background: url(../images/message-icon.svg) no-repeat;
  width: 50px;
  height: 50px;
  background-size: 100% 100%;
  left: 20px;
  top: -10px;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item .pepole-mess p {
  font-size: 22px;
  line-height: 32px;
  color: var(--black);
  font-weight: 300;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item .people-info {
  margin-top: 20px;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item .people-info p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 24px;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.text-item .people-info p span {
  font-weight: 700;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.img-item {
  max-width: 490px;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.img-item .img-wrap {
  width: 100%;
  height: 100%;
}
.people-say-sec .contant .people-say-testi .item .item-row .col-50.img-item .img-wrap img {
  width: 100%;
  height: 100%;
}

.journeys-of-Cograd-sec {
  padding: 0;
}
.journeys-of-Cograd-sec .contant {
  position: relative;
  z-index: 1;
}
.journeys-of-Cograd-sec .contant .head {
  max-width: 320px;
  margin: auto;
  padding: 20px 0 0;
}
.journeys-of-Cograd-sec .contant .head .h1 {
  font-family: var(--Oleo-script);
  font-size: 30px;
  color: var(--black);
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
.journeys-of-Cograd-sec .contant .head p {
  font-size: 24px;
  color: var(--black);
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}
.journeys-of-Cograd-sec .contant::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  max-width: 385px;
  height: 98%;
  background-color: var(--yelow);
  z-index: -1;
}
.journeys-of-Cograd-sec .contant .jquery-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 40px 0;
  z-index: 1;
}
.journeys-of-Cograd-sec .contant .jquery-item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  max-width: 320px;
  height: 100%;
  background: url(../images/one-frame.png) no-repeat;
  background-size: 100% 100%;
  margin: auto;
  top: 50%;
  z-index: -1;
}
.journeys-of-Cograd-sec .contant .jquery-item:first-child::after {
  position: absolute;
  content: "";
  left: 0;
  right: -170px;
  max-width: 100px;
  height: 100px;
  background: url(../images/bg-top-frame.png) no-repeat;
  background-size: 100% 100%;
  margin: auto;
  top: -20px;
  z-index: -1;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-des {
  width: 49%;
  background-color: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 30px 30px;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-des .h2 {
  color: var(--dark-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-des .h3 {
  font-size: 20px;
  font-weight: 400;
  color: #262626;
  margin-bottom: 10px;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-des p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 22px;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-des p span {
  font-weight: 700;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-img {
  width: 42%;
  display: flex;
  justify-content: flex-start;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-img .img-wrap {
  max-width: 280px;
  height: 280px;
  border-radius: 100%;
  overflow: hidden;
}
.journeys-of-Cograd-sec .contant .jquery-item .jquery-img .img-wrap img {
  width: 100%;
  height: 100%;
}
.journeys-of-Cograd-sec .contant .jquery-item .title {
  font-family: var(--Oleo-script);
  width: 200px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 20px;
  color: var(--black);
  position: absolute;
  left: 0;
  top: 70px;
  right: 0;
  margin: auto;
}
.journeys-of-Cograd-sec .contant .jquery-item:nth-child(even)::before {
  background: url(../images/single-stick.png) no-repeat;
  transform: rotate(90deg);
}
.journeys-of-Cograd-sec .contant .jquery-item:nth-child(even) .title {
  top: 100px;
}
.journeys-of-Cograd-sec .contant .jquery-item:nth-child(even) .jquery-img {
  order: -1;
  justify-content: flex-end;
}
.journeys-of-Cograd-sec .contant .jquery-item:last-child {
  margin-bottom: 0px;
}
.journeys-of-Cograd-sec .contant .jquery-item:last-child:nth-child(even) {
  justify-content: flex-end;
}
.journeys-of-Cograd-sec .contant .jquery-item:last-child:nth-child(even)::before {
  display: none;
}
.journeys-of-Cograd-sec .contant .jquery-item:last-child:nth-child(even) .jquery-img {
  display: none;
}
.journeys-of-Cograd-sec .contant .jquery-item:last-child:nth-child(odd)::before {
  background: url(../images/single-stick.png) no-repeat;
}

.highlight-sec {
  max-width: 960px;
  margin: auto;
}
.highlight-sec .contant .row-item .youtube-highlight {
  width: 100%;
}
.highlight-sec .contant .row-item .youtube-highlight .video-wrap {
  width: 100%;
  height: 532px;
  margin-bottom: 20px;
  border: 10px solid var(--dark-blue);
}
.highlight-sec .contant .row-item .youtube-highlight .video-wrap img,
.highlight-sec .contant .row-item .youtube-highlight .video-wrap video,
.highlight-sec .contant .row-item .youtube-highlight .video-wrap iframe {
  width: 100%;
  display: block;
  height: 100%;
  border: 0;
}
.highlight-sec .contant .row-item .youtube-highlight .video-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  line-height: 26px;
}
.highlight-sec .contant .row-item .live-twitter-highlight {
  width: 40%;
}
.highlight-sec .contant .row-item .live-twitter-highlight .live-post {
  width: 100%;
  overflow: auto;
  max-height: 450px;
}
.highlight-sec .contant .row-item .live-twitter-highlight .live-post img {
  width: 100%;
  height: 100%;
}
.highlight-sec .contant .row-item .live-twitter-highlight .live-post::-webkit-scrollbar-thumb {
  background-color: var(--dark-blue);
  border-radius: 6px;
}
.highlight-sec .contant .row-item .live-twitter-highlight .live-post::-webkit-scrollbar-track {
  background: #f4f9f2;
}
.highlight-sec .contant .row-item .live-twitter-highlight .live-post::-webkit-scrollbar {
  width: 3px;
}

.inner-banner-section {
  width: 100%;
  position: relative;
  margin-top: 80px;
  z-index: 1;
}
.inner-banner-section .img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.inner-banner-section .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.inner-banner-section .container {
  height: 100%;
  min-height: 465px;
  display: flex;
  align-items: center;
}
.inner-banner-section .container .inner-banner-des {
  text-align: center;
  width: 100%;
}
.inner-banner-section .container .inner-banner-des .h1 {
  color: var(--white);
}

.inner-about-sec .inner-heading {
  text-align: center;
}
.inner-about-sec .content {
  text-align: center;
}
.inner-about-sec .content p {
  font-size: 18px;
  line-height: 28px;
}

.about-ml-optional {
  margin-top: 100px;
}
.about-ml-optional .row-item {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
.about-ml-optional .row-item .ml-item-option {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 50px 50px 100px;
  background-color: var(--sky-blue);
}
.about-ml-optional .row-item .ml-item-option .ml-des {
  width: 58%;
}
.about-ml-optional .row-item .ml-item-option .ml-des .inner-heading {
  text-align: left;
}
.about-ml-optional .row-item .ml-item-option .ml-des p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}
.about-ml-optional .row-item .ml-item-option .img-wrap {
  position: absolute;
  right: 50px;
  top: -50px;
  width: 36%;
  height: 100%;
  border: 8px solid var(--white);
  overflow: hidden;
}
.about-ml-optional .row-item .ml-item-option .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: all linear 2s;
  transform: scale(1);
}
.about-ml-optional .row-item .ml-item-option .img-wrap:hover img {
  transform: scale(1.1);
}
.about-ml-optional .row-item .ml-item-option:nth-child(even) {
  justify-content: flex-end;
  background-color: var(--yelow-bg);
}
.about-ml-optional .row-item .ml-item-option:nth-child(even) .inner-heading span {
  color: #E69022;
}
.about-ml-optional .row-item .ml-item-option:nth-child(even) .img-wrap {
  left: 50px;
}

.about-what-we-do-sec .inner-heading {
  text-align: center;
}
.about-what-we-do-sec .content {
  padding-top: 20px;
}
.about-what-we-do-sec .content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.about-what-we-do-sec .content ul li {
  width: 32.5%;
  padding: 30px;
  background-color: var(--sky-blue);
}
.about-what-we-do-sec .content ul li .img-wrap {
  max-width: 80px;
  height: 80px;
  margin: 0 0 20px;
}
.about-what-we-do-sec .content ul li .img-wrap img {
  width: 100%;
  height: 100%;
}
.about-what-we-do-sec .content ul li p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.about-what-we-do-sec .content ul li p span {
  color: var(--dark-blue);
  font-size: 18px;
}
.about-what-we-do-sec .content ul li:nth-child(-n+4) {
  width: 24%;
}

.about-impact-section .imapct-item-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.about-impact-section .imapct-item-content .img-wrap {
  width: 49%;
  overflow: hidden;
}
.about-impact-section .imapct-item-content .img-wrap img {
  width: 100%;
  height: 100%;
  transform: rotate(1);
  transition: all linear 2s;
}
.about-impact-section .imapct-item-content .img-wrap:hover img {
  transform: scale(1.1);
}
.about-impact-section .imapct-item-content .impact-des {
  width: 49%;
}
.about-impact-section .imapct-item-content .impact-des .inner-heading span {
  color: var(--yelow);
}
.about-impact-section .imapct-item-content .impact-des p {
  font-size: 18px;
  line-height: 28px;
}
.about-impact-section .imapct-item-content:last-child {
  margin-bottom: 0px;
}
.about-impact-section .imapct-item-content:nth-child(even) .img-wrap {
  order: 2;
}

.inner-partner-sec {
  background-color: var(--black);
}
.inner-partner-sec .inner-heading span {
  color: var(--yelow);
  font-size: 28px;
  line-height: 36px;
}
.inner-partner-sec .content {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}
.inner-partner-sec .content .partner-slide {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-partner-sec .content .partner-slide .item {
  border: 1px solid var(--white-gray);
  border-radius: 10px;
  background-color: var(--white);
  width: 100%;
  max-width: 200px;
  overflow: hidden;
}
.inner-partner-sec .content .partner-slide .item .img-wrap {
  width: 100%;
  height: auto;
}
.inner-partner-sec .content .partner-slide .item .img-wrap img {
  width: 100%;
  height: 100%;
}

.our-stories-listing-sec {
  background-color: var(--black);
}
.our-stories-listing-sec .heading {
  color: var(--white);
}
.our-stories-listing-sec .content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 25px;
}
.our-stories-listing-sec .content ul li {
  width: 32%;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.our-stories-listing-sec .content ul li .des {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-bottom: 300px;
  min-height: 480px;
}
.our-stories-listing-sec .content ul li .des .head-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.our-stories-listing-sec .content ul li .des .head-row .sticker {
  width: auto;
  padding: 4px 20px;
  background-color: var(--yelow);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.our-stories-listing-sec .content ul li .des .head-row .h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-right: 20px;
  transition: all linear 2s;
}
.our-stories-listing-sec .content ul li .des .text-des {
  padding: 0 20px 0px;
}
.our-stories-listing-sec .content ul li .des .text-des .company {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-blue);
  transition: all linear 0.5s;
}
.our-stories-listing-sec .content ul li .des .text-des .h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  transition: all linear 0.5s;
}
.our-stories-listing-sec .content ul li .des .text-des .addres-info {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--gary);
  opacity: 0.8;
  margin-bottom: 15px;
  transition: all linear 0.5s;
}
.our-stories-listing-sec .content ul li .des .text-des .text {
  position: absolute;
  width: 100%;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 0 20px;
  right: -500%;
  height: auto;
  overflow: hidden;
  transition: all linear 0.4s;
  padding-bottom: 10px;
}
.our-stories-listing-sec .content ul li .des .text-des .text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  line-height: 24px;
  text-align: justify;
}
.our-stories-listing-sec .content ul li .des .com-btn {
  position: absolute;
  right: 20px;
  bottom: -100px;
  width: auto;
  justify-content: end;
  transition: all ease-in-out 0.5s;
}
.our-stories-listing-sec .content ul li .des .com-btn .comman-btn {
  background-color: transparent;
  padding: 8px 30px 8px 15px;
  text-decoration: underline;
  font-size: 14px;
}
.our-stories-listing-sec .content ul li .des .com-btn .comman-btn:after {
  background-color: transparent;
  color: var(--yelow);
}
.our-stories-listing-sec .content ul li .des .img-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 300px;
  transition: all ease-out 0.5s;
  z-index: -1;
}
.our-stories-listing-sec .content ul li .des .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.our-stories-listing-sec .content ul li:hover .des .head-row .h4, .our-stories-listing-sec .content ul li:active .des .head-row .h4 {
  color: var(--white);
}
.our-stories-listing-sec .content ul li:hover .des .text, .our-stories-listing-sec .content ul li:active .des .text {
  right: 0;
}
.our-stories-listing-sec .content ul li:hover .des .text-des .company, .our-stories-listing-sec .content ul li:active .des .text-des .company {
  color: var(--white);
}
.our-stories-listing-sec .content ul li:hover .des .text-des .h3, .our-stories-listing-sec .content ul li:active .des .text-des .h3 {
  color: var(--white);
}
.our-stories-listing-sec .content ul li:hover .des .text-des .addres-info, .our-stories-listing-sec .content ul li:active .des .text-des .addres-info {
  color: var(--white);
}
.our-stories-listing-sec .content ul li:hover .des .com-btn, .our-stories-listing-sec .content ul li:active .des .com-btn {
  bottom: 20px;
}
.our-stories-listing-sec .content ul li:hover .des .img-wrap, .our-stories-listing-sec .content ul li:active .des .img-wrap {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  right: 0;
  bottom: 0;
  float: initial;
  transition: all ease-in 0.1s;
}
.our-stories-listing-sec .content ul li:hover .des .img-wrap::before, .our-stories-listing-sec .content ul li:active .des .img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 2;
  opacity: 0.5;
}
.our-stories-listing-sec .content ul li:hover .des .img-wrap img, .our-stories-listing-sec .content ul li:active .des .img-wrap img {
  filter: blur(15px);
}

.thanku-new-section {
  padding: 100px 0 40px;
}
.thanku-new-section .thank-you-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  min-height: calc(100vh - 100px);
  text-align: center;
}
.thanku-new-section .thank-you-content .content {
  width: 100%;
}
.thanku-new-section .thank-you-content .content .content-text .img-wrap {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  width: 70px;
  margin: 10px auto 40px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
}
.thanku-new-section .thank-you-content .content .content-text .img-wrap img {
  width: 40px;
  height: 40px;
}
.thanku-new-section .thank-you-content .h2 {
  color: var(--yelow);
  font-weight: 600;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 20px;
}
.thanku-new-section .thank-you-content .text p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--black);
  max-width: 700px;
  margin: auto;
}
.thanku-new-section .thank-you-content .thanku-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.thanku-new-section .thank-you-content .thanku-item .item {
  width: 32%;
  padding: 20px;
  background: var(--dark-blue);
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 3px solid var(--yelow);
}
.thanku-new-section .thank-you-content .thanku-item .des {
  width: 100%;
}
.thanku-new-section .thank-you-content .thanku-item .des .h2 {
  font-size: 24px;
}
.thanku-new-section .thank-you-content .thanku-item .social-info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.thanku-new-section .thank-you-content .thanku-item .social-info ul li {
  width: 40px;
  height: 40px;
  border-radius: 0px;
}
.thanku-new-section .thank-you-content .thanku-item .social-info ul li img {
  width: auto !important;
  height: auto !important;
}
.thanku-new-section .thank-you-content .thanku-item .back-to-home a {
  padding: 15px 20px;
  display: block;
  width: auto !important;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  text-decoration: none;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all linear 0.5s;
}
.thanku-new-section .thank-you-content .thanku-item .back-to-home a:hover {
  background-color: transparent;
  border: 1px solid var(--yelow);
  color: var(--yelow);
}

@media screen and (max-width: 991px) {
  .thanku-new-section .thank-you-content .thanku-item .item {
    width: 48%;
  }
}
@media screen and (max-width: 599px) {
  .thanku-new-section .thank-you-content .content .content-text .img-wrap {
    margin: 10px auto 20px;
  }
  .thanku-new-section .thank-you-content .h2 {
    margin-bottom: 10px;
  }
  .thanku-new-section .thank-you-content .text p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  .thanku-new-section .thank-you-content .thanku-item {
    margin-top: 20px;
  }
  .thanku-new-section .thank-you-content .thanku-item .item {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */