@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
}
a {
  text-decoration: none;
}

/* navbar start */
.navbar {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.575),
    rgba(0, 0, 0, 0.205)
  );
  box-shadow: 0px 45px 15px rgba(0, 0, 0, 0.205);
  width: 100%;
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-block: 2%;
  padding-inline: 2%;
  transition: all 0.3s ease;
  color: white;
}
.navbar:hover {
  background: #ffffff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.205);
  filter: brightness(100%);
  color: black;
}
.navbar:hover a {
  color: black;
}
.navbar .logo {
  width: clamp(250px, 12%, 13%);
  filter: invert(1) brightness(100);
}
.navbar:hover .logo {
  filter: invert(0);
}
.navbar .logo img {
  width: 100%;
}

/* more start (mid part)*/
.navbar .more {
  position: relative;
  width: 50%;
  display: flex;
  gap: 20px;
  margin-left: 2%;
}
.navbar .more .button {
  font-size: 0.8rem;
  background: none;
  border: none;
  color: #ffffff;
}
.button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgb(105, 105, 240);
}
.navbar:hover .button {
  cursor: pointer;
  color: black;
}
/* more end (mid part)*/

/* info start (right part) */
.info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  width: 40%;
}
.info .menu {
  display: none;
}
.info a {
  color: white;
  font-size: 0.8rem;
}
.info a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgb(105, 105, 240);
}
.darrow {
  font-size: 1rem;
  font-family: poppins;
}
.search-btn {
  background: none;
  border: none;
  color: white;
  width: clamp(60px, 1vw, 1vw);
  min-width: 30px;
}
.search-btn:hover {
  cursor: pointer;
}
.search-btn img {
  width: 100%;
  filter: invert(1) brightness(2);
}
.navbar:hover .search-btn img {
  filter: invert(0);
}
.donate {
  padding-block: 10px;
  padding-inline: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  border: none;
  background-color: #004677;
}
.donate:hover {
  cursor: pointer;
}
/* info end (right part)*/
/* navbar end */

/* about info start*/
.test {
  border: 1px solid #333;
  padding: 1%;
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
.a-about{
  margin: auto;
  color: rgb(0, 126, 126) !important;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.a-about:hover{
  letter-spacing: 3px;
}
.about:hover .test {
  display: flex;
  animation: dropdownAnimation 0.2s ease-out;
}
.ourwork:hover .test {
  display: flex;
  animation: dropdownAnimation 0.2s ease-out;
}
.story:hover .test {
  display: flex;
  animation: dropdownAnimation 0.2s ease-out;
}
.waysupport:hover .test {
  display: flex;
  animation: dropdownAnimation 0.2s ease-out;
}
.part{
  background: none;
  border: none;
  color: white;
}
.navbar:hover .part{
  color: black;
}
.part:hover{
  cursor: pointer;
}
.news{
  background: none;
  border: none;
  color: white;
}
.navbar:hover .news{
  color: black;
}
@keyframes dropdownAnimation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.smallmenu{
  display: none;
  flex-direction: column;
  padding: 10%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(235, 235, 235);
  transition: all 0.3s ease;
}
.show{
  display: flex;
  animation: Show 0.2s linear forwards;
}
@keyframes Show{
  from{transform: translateX(70%);}
  to{transform: translateX(0%);}
}
.close{
  width: clamp(70px,15%,10vw);
}
.close img{
  width: 100%;
  filter: invert(2);
}
.smallmenu .smalldiv{
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: start;
}
.smallmenu button{
  background: none;
  border: none;
  font-size: clamp(1.5rem,5vw,5vw);
}
.snews,
.spart{
  text-align: start;
}
.stest{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(235, 235, 235);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.me{
  text-align: center;
  font-size: clamp(1.5rem,5vw,5vw);
}
.me a{
  display: block;
}
.back{
  margin: 5%;
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}
.back img{
  width: 100%;
  filter: invert(2);
}

.show{
  display: flex !important;
  animation: Show 0.2s linear forwards;
}
@keyframes Show{
  from{transform: translateX(70%);}
  to{transform: translateX(0%);}
}
/* about info end*/

/* section 1 start */
.section-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section-1 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.us {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.76),
    rgba(0, 0, 0, 0.432)
  );
  box-shadow: -10px -80px 40px rgba(0, 0, 0, 0.432);
  position: absolute;
  z-index: 2;
  bottom: 5px;
  width: 100%;
  color: white;
  padding: 1%;
  display: flex;
  flex-direction: row;
  align-items: end;
}
.us .sec-1 {
  padding: 1%;
  width: 80%;
}
.us h1 {
  font-size: clamp(2.3rem, 6vw, 3rem);
  width: 100%;
}
.us h2 {
  font-size: clamp(2.3rem, 6vw, 3rem);
  width: 60%;
}
.us .sec-2 {
  margin: 1%;
  width: 20%;
}
.us button {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding-inline: 28px;
  padding-block: 22px;
  background-color: #ffffff;
  border: none;
  color: #1d4c6e;
  border: 2px solid white;
  transition: all 0.2s ease;
}
.us button:hover {
  cursor: pointer;
  color: white;
  border: 2px solid white;
  background-color: #1d4c6e00;
}
/* section 1 end */

/* section 2 start */
.section-2 {
  position: relative;
  width: 100%;
  height: 130vh;
}
.section-2 img {
  width: 100%;
}
.section-2 .bg-img {
  position: absolute;
  bottom: 0px;
  z-index: 1;
}
.section-2 .art-1 {
  background-image: linear-gradient(
    to bottom,
    #f9f9f9,
    #f9f9f9,
    #f9f9f9,
    rgba(255, 255, 255, 0.027)
  );
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  padding: 3%;
  padding-top: 10%;
  padding-bottom: 18.6%;
}
.section-2 .art-1 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-2 .art-1 div h1 {
  color: #333333;
  font-size: 6rem;
  font-weight: 400;
}
.section-2 .art-1 div h2 {
  color: #333333;
}
.section-2 .art-1 div p {
  color: #4e4e4e;
}
.section-2 .art-1 div h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: -2%;
  margin-bottom: 5%;
}
.section-2 .art-1 div p {
  font-size: 0.9rem;
}
.section-2 .art-1 .div-1 {
  width: 100%;
  margin-bottom: 3%;
}
.section-2 .art-1 .div-1 h1 {
  font-size: 3.5rem;
  width: 70%;
  font-weight: 400;
}
.section-2 .art-1 .div-1 p {
  width: 62%;
}
.section-2 .art-1 .div-2 {
  width: 48%;
}
.section-2 .art-1 .div-3 {
  width: 48%;
}
.section-2 .art-1 .div-4 {
  width: 100%;
}
.section-2 .art-1 .div-4 p {
  width: 50%;
}
/* section 2 end */

/* section 3 srart */
.section-3 {
  padding-top: 7%;
  width: 95%;
  margin: auto;
}
.section-3 .section-3-p {
  font-size: 1.3rem;
  font-weight: 500;
  width: 76%;
}
.section-3 .art-1 {
  position: relative;
}
.section-3 .art-1 .bg-img {
  display: block;
  width: 100%;
}
/* slider start */
.section-3 .art-1 .slider-tracker {
  background-image: linear-gradient(to bottom, #f9f9f9, rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5%;
  overflow: hidden;
}
.alls{
  display: flex;
}
.section-3 .art-1 .slider-tracker .slider {
  width: 600px;
  width: fit-content;
  padding: 3%;
  padding-left: 50%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slider::-webkit-scrollbar {
  display: none;
}
.btns {
  padding-left: 20%;
  display: flex;
  justify-content: start;
  gap: 10px;
  width: 80%;
}
.btns button {
  padding-inline: 3%;
  padding-block: 1%;
  color: white;
  font-size: 2rem;
  border: none;
  background: rgba(0, 0, 0, 0.274);
  transition: all 0.3s ease;
}
.btns button:hover {
  cursor: pointer;
  background: #0b6ca3;
}
.slide1 {
  width: 400px; /* Set your preferred width */
  height: 500px; /* Set your preferred height */
  margin: auto;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}
.slide1:hover {
  z-index: 2;
  cursor: grab;
  scale: 1.1;
  box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.384);
}
.slide-img img {
  width: 400px; /* Set your preferred width */
  height: 500px; /* Set your preferred height */
  object-fit: cover;
  display: block;
}
.slide-info {
  position: absolute;
  bottom: 0px;
  width: 100%;
  color: white;
  height: 35%;
  text-align: center;
  padding-top: 10%;
}
.slide-info p {
  display: none;
  letter-spacing: 3px;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-info:hover {
  cursor: pointer;
}
.slide-info:hover p {
  display: block;
  animation: show 0.3s ease;
}
/* slider end */
/* section 3 end */

.break {
  margin-block: 5%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.break p {
  margin: 1%;
  font-size: 1.2rem;
  font-weight: 500;
}
.break::before {
  content: "";
  width: 44%;
  height: 1px;
  background: #c4c4c4;
}
.break::after {
  content: "";
  width: 44%;
  height: 1px;
  background: #c4c4c4;
}

/* section 4 start  */
.section-4 {
  width: 90%;
  margin: auto;
}
.section-4 .art-1 {
  position: relative;
}
.section-4 .art-1 .art-1-img {
  width: 100%;
}
.section-4 .art-1 .art-1-img img {
  width: 100%;
  display: block;
}
.section-4 .art-1 .art-1-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.685),
    rgba(0, 0, 0, 0.37)
  );
  box-shadow: 0px -40px 20px rgba(0, 0, 0, 0.37);
  position: absolute;
  bottom: 0px;
  width: 100%;
  color: white;
  text-align: center;
  height: 30%;
  padding-bottom: 3%;
}
.section-4 .art-1 .art-1-info h1 {
  font-size: 4.3rem;
  font-weight: 500;
}
.section-4 .art-1 .art-1-info p {
  font-size: 1.2rem;
}
.section-4 .art-1 .art-1-info a {
  color: white;
  text-decoration: underline;
  font-size: 1.2rem;
  letter-spacing: 3px;
}
.section-4 .art-1 .art-1-info a:hover {
  text-decoration: none;
}
.section-4 .art-2 {
  margin-top: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-4 .art-2 .art2-div {
  border: 1px solid white;
  position: relative;
  width: 30%;
}
.section-4 .art-2 .art2-div .div1-img img {
  width: 100%;
}
.section-4 .art-2 .art2-div a {
  display: block;
}
.section-4 .art-2 .art2-div .main-link {
  display: flex;
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
}
.a-part {
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-top: 6%;
  margin-bottom: 3%;
  color: #4c4c4c;
}
.section-4 .art-2 .art2-div .a-story {
  position: relative;
  z-index: 2;
  color: #1c6da3;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-top: 6%;
  margin-bottom: 3%;
}
.section-4 .art-2 .art2-div:hover .a-story {
  color: #4c4c4c;
}
/* (.section-4 .art-2 .art2-div:hover .a-story) its should be before (.section-4 .art-2 .art2-div .a-story:hover)  */
.section-4 .art-2 .art2-div .a-story:hover {
  color: #337094;
  text-decoration: underline;
}
.section-4 .art-2 .art2-div .main-title {
  color: #4c4c4c;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3%;
}
.section-4 .art-2 .art2-div:hover .main-title {
  color: #2d6d91;
  text-decoration: underline;
}
.section-4 .art-2 .art2-div .main-dis {
  color: #595959;
  font-size: 1.1rem;
}
/* section 4 end  */

/* section 5 start  */
.section-5 {
  margin-block: 10%;
}
.section-5 .sec5-bg {
  background-image: url(/img/img8.avif);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.section-5 .sec5-bg .sec5-info {
  color: white;
  background-color: #003b65e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-block: 12%;
}
.section-5 .sec5-bg .sec5-info h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3%;
}
.section-5 .sec5-bg .sec5-info p {
  width: 60%;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3%;
}
.section-5 .sec5-bg .sec5-info button {
  width: 22%;
  font-size: 1.3rem;
  font-weight: 600;
  padding-inline: 28px;
  padding-block: 22px;
  background-color: #ffffff;
  border: none;
  color: #104264;
  border: 2px solid white;
  transition: all 0.2s ease;
}
.section-5 .sec5-bg .sec5-info button:hover {
  cursor: pointer;
  color: white;
  border: 2px solid white;
  background-color: #1d4c6e00;
}
/* section 5 end  */

.break2 {
  margin-block: 5%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.break2 p {
  margin: 1%;
  font-size: 1.2rem;
  font-weight: 500;
}
.break2::before {
  content: "";
  width: 33%;
  height: 1px;
  background: #c4c4c4;
}
.break2::after {
  content: "";
  width: 33%;
  height: 1px;
  background: #c4c4c4;
}

/* section 6 start  */
.section-6 {
  margin-bottom: 10%;
}
.section-6 .art-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
.section-6 .art-1 a {
  width: 13%;
}
.section-6 .art-1 a img {
  width: 100%;
  filter: grayscale(1);
  transition: all 0.2s ease;
}
.section-6 .art-1 a:hover img {
  filter: grayscale(0);
}
.section-6 .art-2 {
  text-align: center;
  width: 67%;
  margin: auto;
  margin-top: 3%;
}
.section-6 .art-2 p {
  line-height: 40px;
  font-size: 1.3rem;
  margin-bottom: 3%;
}
.section-6 .art-2 a {
  font-size: 1.5rem;
  color: #29a4eb;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.section-6 .art-2 a:hover {
  color: #1e77aa;
}
/* section 6 end  */

/* section 7 start  */
.section-7 {
  display: flex;
  flex-direction: row;
  background-color: #f2f2f2;
  padding-top: 5%;
  padding-bottom: 5%;
}
.section-7 .art-1 {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 1%;
  margin-right: 2%;
}
.section-7 .art-1 .art1-logo {
  display: block;
  width: 100%;
  margin-bottom: 5%;
}
.section-7 .art-1 .art1-logo img {
  width: 100%;
}
.section-7 .art-1 .art1-ps {
  padding-left: 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 10%;
}
.section-7 .art-1 .art1-medias {
  display: flex;
  justify-content: start;
  align-content: center;
  gap: 5%;
  padding: 2%;
}
.section-7 .art-1 .art1-medias a {
  width: 12%;
}
.section-7 .art-1 .art1-medias a img {
  width: 100%;
}
.section-7 .art-1 .art1-medias a svg {
  fill: #6e6e6e;
}
.section-7 .art-1 .art1-medias a svg:hover {
  fill: #0b6ca3;
}
.section-7 .art-1 .art1-medias a svg:hover .insta,
.section-7 .art-1 .art1-medias a svg:hover .youtube {
  fill: #0b6ca3;
}
.section-7 .art-2 {
  display: flex;
  flex-direction: column;
  gap: 0.7%;
  width: 25%;
  padding: 2%;
}
.section-7 .art-2 a {
  font-weight: 500;
  color: #1f6594;
  display: block;
}
.section-7 .art-2 a:hover {
  text-decoration: underline;
}
.section-7 .art-3 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 2%;
  width: 55%;
}
.section-7 .art-3 .last-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-7 .art-3 .last-form .input {
  width: 47%;
  border: 1px solid #517386;
  border-radius: 5px;
  font-size: 1.5rem;
  padding: 3%;
  margin-block: 3%;
}
.container {
  width: 50%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  margin-left: 3%;
  cursor: pointer;
  font-size: 22px;
}
.container p {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
}
.last-form{
  display: flex;
  align-items: center;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  background-color: white;
  border: 1px solid #333;
}
.container:hover input ~ .checkmark {
  background-color: #ccc;
}
.container input:checked ~ .checkmark {
  background-color: #2196f3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.signup-div .p1 {
  font-size: 1.1rem;
}
.signup-div .p2 {
  font-size: 1.1rem;
}
.signup-div .btn {
  color: white;
  border: none;
  background-color: #004677;
  font-size: 1.2rem;
  font-weight: 500;
  padding-inline: 3%;
  padding-block: 2%;
  transition: all 0.3s ease;
}
.signup-div .btn:hover {
  background-color: #0b6ca3;
}
.signup-div .p3 {
  width: 95%;
  margin-top: 5%;
  font-size: 1.2rem;
  font-weight: 400;
}
.signup-div .p3 span {
  color: #414141;
  font-weight: 700;
}
.signup-div .p3 a {
  color: #4c94bc;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.signup-div .p3 a:hover {
  color: #2b6381;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/* section 7 end  */

/* footer start */
footer {
  background-color: #f2f2f2;
  padding: 3%;
  height: 30vh;
  display: flex;
  width: 100%;
  position: relative;
}
footer .div1 {
  width: 50%;
}
footer .div1 p {
  font-size: 1.2rem;
}
footer .div1 p a {
  color: rgb(0, 165, 165);
  text-decoration: underline;
}
footer .div1 p a:hover {
  text-decoration: none;
}
footer .div2 {
  width: 50%;
  position: relative;
}
.div-img {
  position: absolute;
  right: 0;
  width: 100px;
  height: 70%;
}
footer .div2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* footer end */

@media (max-width: 1030px) {
  .info {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    width: clamp(300px, 40%, 40%);
  }
  .navbar .logo {
    width: clamp(250px, 12%, 13%);
    filter: invert(1) brightness(100);
  }
  .info a {
    display: none;
  }
  .info .menu {
    display: flex;
    background: none;
    border: none;
    width: clamp(50px, 14vw, 5vw);
  }
  .info .menu img {
    width: 100%;
  }
  .navbar:hover .menu img {
    filter: invert(2);
  }
  .navbar .more {
    width: 50%;
    display: none;
    gap: 20px;
    margin-left: 2%;
  }
  .part,.news{
    display: none;
  }
  .search-btn {
    background: none;
    border: none;
    color: white;
    width: clamp(40px, 1vw, 1vw);
  }
  .donate {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-block: 10px;
    padding-inline: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    border: none;
    background-color: #004677;
  }
  .us {
    padding: 0%;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    background-color: white;
    position: relative;
    width: 100%;
  }
  .us h1 {
    font-size: clamp(2.3rem, 6vw, 3rem);
    width: 100%;
  }
  .us h2 {
    font-size: clamp(1rem, 6vw, 3rem);
    width: 100%;
  }
  .us .sec-1 p {
    font-size: clamp(1.2rem, 3vw, 3rem);
    font-weight: 500;
    width: 100%;
  }
  .us .sec-2 {
    margin: 1%;
    width: 90%;
  }
  .us button {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    padding-inline: 28px;
    padding-block: 22px;
    background-color: #1d4c6e;
    border: none;
    color: #ffffff;
    border: 2px solid white;
    transition: all 0.2s ease;
  }
  .us button:hover {
    cursor: pointer;
    color: #1d4c6e;
    border: 2px solid #1d4c6e;
    background-color: #1d4c6e00;
  }

  /* section 2 start */
  .section-2 {
    position: relative;
    width: 100%;
    height: auto;
  }
  .section-2 img {
    width: 100%;
  }
  .section-2 .bg-img {
    position: absolute;
    bottom: 0px;
    z-index: 1;
  }
  .section-2 .art-1 {
    background-image: linear-gradient(
      to bottom,
      #f9f9f9,
      #f9f9f9,
      #f9f9f9,
      #f9f9f9,
      #f9f9f9,
      #f9f9f9,
      #f9f9f9,
      rgba(255, 255, 255, 0.027)
    );
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
    padding: 3%;
    padding-top: 10%;
    padding-bottom: 18.6%;
  }
  .section-2 .art-1 div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .section-2 .art-1 div h1 {
    color: #333333;
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 400;
  }
  .section-2 .art-1 div h2 {
    color: #333333;
  }
  .section-2 .art-1 div p {
    color: #4e4e4e;
  }
  .section-2 .art-1 div h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: -2%;
    margin-bottom: 5%;
  }
  .section-2 .art-1 div p {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
  .section-2 .art-1 .div-1 {
    width: 100%;
    margin-bottom: 3%;
  }
  .section-2 .art-1 .div-1 h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    width: 100%;
    font-weight: 400;
  }
  .section-2 .art-1 .div-1 p {
    width: 100%;
  }
  .section-2 .art-1 .div-2 {
    width: 100%;
  }
  .section-2 .art-1 .div-3 {
    width: 100%;
  }
  .section-2 .art-1 .div-4 {
    width: 100%;
  }
  .section-2 .art-1 .div-4 p {
    width: 100%;
  }
  /* section 2 end */

  /* section 3 srart */
  .section-3 {
    padding-top: 7%;
    width: 95%;
    margin: auto;
  }
  .section-3 .section-3-p {
    font-size: clamp(1.1rem, 3vw, 2rem);
    font-weight: 600;
    width: 100%;
  }
  .section-3 .art-1 {
    position: relative;
  }
  .section-3 .art-1 .bg-img {
    display: block;
    width: 100%;
  }
  /* section 3 end */

    /* slider start */
  .section-3 .art-1 .slider-tracker {
    background-image: linear-gradient(
      to bottom,
      #f9f9f9,
      rgba(255, 255, 255, 0)
    );
    position: absolute;
    bottom: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5%;
    overflow: hidden;
  }
  .alls{
    display: flex;
  }
  .section-3 .art-1 .slider-tracker .slider {
    width: 100%;
    padding: 3%;
    padding-bottom: 5%;
    padding-left: 50%;
    margin-bottom: -50px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s ease-in-out;
  }

  /* Hide scrollbar */
  .slider::-webkit-scrollbar {
    display: none;
  }
  /* Responsive Buttons */
  .btns {
    padding-left: 5%;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 90%;
  }
  .btns button {
    padding-inline: 3%;
    padding-block: 1%;
    color: white;
    font-size: 1.5rem;
    border: none;
    background: rgba(0, 0, 0, 0.274);
    transition: all 0.3s ease;
  }
  .btns button:hover {
    cursor: pointer;
    background: #0b6ca3;
  }
  /* Responsive Slide */
  .slide1 {
    width: 200px;
    height: 300px;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
    scroll-snap-align: center;
  }
  .slide1:hover {
    z-index: 2;
    cursor: grab;
    scale: 1.1;
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.384);
  }
  /* Responsive Image */
  .slide-img img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    display: block;
  }
  /* Slide Info */
  .slide-info {
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: white;
    height: clamp(30px,40%,45%);
    text-align: center;
    padding-top: 10%;
  }
  .slide-info h1{
    font-size: clamp(1rem,2vw, 2rem);
  }
  .slide-info p {
    font-size: clamp(.8rem,2vw, 2rem);
    display: none;
    letter-spacing: 1px;
  }
  .slide-info:hover p {
    display: block;
    animation: show 0.3s ease;
  }
  /* Media Queries */
  @media (max-width: 768px) {
    .section-3 .art-1 .slider-tracker .slider {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
    .btns {
      padding-left: 0;
      justify-content: center;
    }
    .btns button {
      font-size: 1.2rem;
    }
    .slide1 {
      width: 150px;
      height: 250px;
    }
    .slide-img img {
      width: 150px;
      height: 250px;
    }
  }
  @media (max-width: 480px) {
    .section-3 .art-1 .slider-tracker .slider {
      width: 100%;
      padding: 3%;
      padding-bottom: 20%;
      padding-left: 50%;
      margin-bottom: -60px;
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      transition: transform 0.5s ease-in-out;
    }
    .slide1 {
      width: 100px;
      height: 180px;
    }
    .slide-img img {
      width: 100px;
      height: 180px;
    }
    .btns button {
      font-size: 1rem;
    }
    .slide1 {
      width: 100%;
      max-width: 250px;
    }
  }
  /* slider end */

  .break {
    margin-block: 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .break p {
    margin: 1%;
    font-size: clamp(1rem,2vw,3vw);
    font-weight: 500;
  }
  .break::before {
    content: "";
    width: 35%;
    height: 1px;
    background: #c4c4c4;
  }
  .break::after {
    content: "";
    width: 35%;
    height: 1px;
    background: #c4c4c4;
  }

  .section-4 .art-1 .art-1-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
    background-image: none;
    box-shadow: none;
    position: relative;
    bottom: 0px;
    width: 100%;
    color: black;
    text-align: start;
    height: 50%;
    padding-bottom: 3%;
    margin-top: 5%;
  }
  .section-4 .art-1 .art-1-info h1 {
    font-size: clamp(2rem,4vw,4vw);
    font-weight: 500;
  }
  .section-4 .art-1 .art-1-info p {
    font-size: clamp(1.3rem,2vw,2vw);
    width: 99%;
  }
  .section-4 .art-1 .art-1-info a {
    color: black;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .section-4 .art-2 {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section-4 .art-2 .art2-div {
    border: 1px solid white;
    position: relative;
    width: 100%;
    margin-bottom: 5%;
  }
  .section-4 .art-2 .art2-div .div1-img img {
    width: 100%;
  }
  .section-4 .art-2 .art2-div a {
    display: block;
  }
  .section-4 .art-2 .art2-div .main-link {
    display: flex;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }
  .a-part {
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: clamp(1rem,1vw,2vw);
    margin-top: 6%;
    margin-bottom: 3%;
    color: #4c4c4c;
  }
  .section-4 .art-2 .art2-div .a-story {
    position: relative;
    z-index: 2;
    color: #1c6da3;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: clamp(1rem,1vw,2vw);
    margin-top: 6%;
    margin-bottom: 3%;
  }
  .section-4 .art-2 .art2-div:hover .a-story {
    color: #4c4c4c;
  }
  /* (.section-4 .art-2 .art2-div:hover .a-story) its should be before (.section-4 .art-2 .art2-div .a-story:hover)  */
  .section-4 .art-2 .art2-div .a-story:hover {
    color: #337094;
    text-decoration: underline;
  }
  .section-4 .art-2 .art2-div .main-title {
    color: #4c4c4c;
    font-size: clamp(1.7rem,1vw,2vw);
    font-weight: 500;
    margin-bottom: 3%;
  }
  .section-4 .art-2 .art2-div:hover .main-title {
    color: #2d6d91;
    text-decoration: underline;
  }
  .section-4 .art-2 .art2-div .main-dis {
    color: #595959;
    font-size: clamp(1.2rem,1vw,2vw);
  }

  .section-5 .sec5-bg .sec5-info {
    text-align: center;
  }
  .section-5 .sec5-bg .sec5-info h1 {
    font-size: clamp(2rem,2vw,3vw);
    font-weight: 500;
    margin-bottom: 3%;
  }
  .section-5 .sec5-bg .sec5-info p {
    width: 100%;
    text-align: center;
    font-size: clamp(1.1rem,2vw,3vw);
    margin-bottom: 3%;
  }
  .section-5 .sec5-bg .sec5-info button {
    width: 90%;
    font-size: clamp(1.3rem,2vw,3vw);
    font-weight: 600;
    padding-inline: 28px;
    padding-block: 22px;
    background-color: #ffffff;
    border: none;
    color: #104264;
    border: 2px solid white;
    transition: all 0.2s ease;
    margin-top: 5%;
  }

  .break2 {
    margin-block: 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .break2 p {
    margin: .5%;
    font-size: clamp(1rem, 1vw,1vw);
    font-weight: 500;
    text-align: center;
  }
  .break2::before {
    content: "";
    width: 33%;
    height: 1px;
    background: #c4c4c4;
  }
  .break2::after {
    content: "";
    width: 33%;
    height: 1px;
    background: #c4c4c4;
  }

  .section-6 .art-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
  }
  .section-6 .art-1 a {
    width: clamp(300px,13vw,15vw);
  }
  .section-6 .art-1 a img {
    width: 100%;
    filter: grayscale(1);
    transition: all 0.2s ease;
  }
  .section-6 .art-2 {
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: 3%;
  }
  .section-6 .art-2 p {
    line-height: 40px;
    font-size: clamp(1.1rem,1vw,1vw);
    margin-bottom: 3%;
  }
  .section-6 .art-2 a {
    font-size: clamp(1.2rem,1vw,1vw);
    color: #29a4eb;
    font-weight: 500;
    text-decoration: underline;
    transition: all 0.3s ease;
  }



  .section-7 {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .section-7 .art-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1%;
    margin-right: 2%;
  }
  .section-7 .art-1 .art1-logo {
    display: block;
    margin: auto;
    width: clamp(300px,12vw,12vw);
    margin-bottom: 5%;
  }
  .section-7 .art-1 .art1-logo img {
    width: 100%;
  }
  .section-7 .art-1 .art1-ps {
    padding-left: 3%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10%;
  }
  .section-7 .art-1 .art1-medias {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 5%;
    padding: 2%;
  }
  .section-7 .art-1 .art1-medias a {
    width: clamp(50px,6vw,6vw);
  }
  .section-7 .art-1 .art1-medias a img {
    width: 100%;
  }
  .section-7 .art-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1%;
    width: 100%;
    padding: 2%;
  }

  .section-7 .art-3 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 2%;
    width: 100%;
  }


  .last-form{
    display: flex;
    align-items: center;
  }
  .numb{
    height: 80%;
  }








}