﻿a{
  text-decoration:none !important;
}
         .boxes1{
             position:relative;
             align-content:center;
         }
            .boxes1::before {
                content: "";
                width: 130px;
                height: 130px;
                position: absolute;
                top: -70px;
                left: 35%;
               background-image: url('../images/Se.png');
               
                background-repeat: no-repeat;
                background-color: white;
                border-radius: 50%;
                background-position: center;

            }
                 .boxes2{
             position:relative;
             align-content:center;
         }
                    .boxes2::before {
                        content: "";
                        width:130px;
                        height: 130px;
                        position: absolute;
                        top: -70px;
                        left: 35%;
                       background-image: url('../images/22.png');
                    background-size:70%;
                        background-repeat: no-repeat;
                        background-color: white;
                        border-radius: 50%;
                        background-position: center;
                    }
                 .boxes3{
             position:relative;
             align-content:center;
         }
                    .boxes3::before {
                        content: "";
                        width: 130px;
                        height: 130px;
                        position: absolute;
                        top: -70px;
                        left: 35%;
                         background-image: url('../images/23.png');
                    background-size:70%;
                      
                        background-repeat: no-repeat;
                        background-color: white;
                        border-radius: 50%;
                        background-position: center;
                    }
                     .boxes4{
             position:relative;
             align-content:center;
         }
                    .boxes4::before {
                        content: "";
                        width: 130px;
                        height: 130px;
                        position: absolute;
                        top: -70px;
                        left: 35%;
                         background-image: url('../images/24.png');
                    background-size:70%;
                      
                        background-repeat: no-repeat;
                        background-color: white;
                        border-radius: 50%;
                        background-position: center;
                    }
                     .boxes5{
             position:relative;
             align-content:center;
         }
                    .boxes5::before {
                        content: "";
                        width: 130px;
                        height: 130px;
                        position: absolute;
                        top: -70px;
                        left: 35%;
                         background-image: url('../images/25.png');
                    background-size:70%;
                      
                        background-repeat: no-repeat;
                        background-color: white;
                        border-radius: 50%;
                        background-position: center;
                    }
         .bg-footer {
        background-color: #1e1e1e;
        color: white;
    }

        .bg-footer p {
            color: white;
        }

        .bg-footer li {
            list-style: none;
            color: white;
            margin-bottom: 15px;
            font-weight: 500;
        }

            .bg-footer li a {
                padding-left: 10px;
                color: white;
                text-decoration: none;
                font-weight:800;
            }

                .bg-footer li a:hover {
                    color: red;
                }

        .bg-footer ul {
            padding-left: 0px !important;
        }
        .ftr-img img{
            width:23px;
            margin-right:5px;
           
        }
         /* Header start */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
 .navlink-inner{
     padding:60px 0px ;
}

.navlink .navlink-inner {
    list-style: none;
    margin-left: 40px;
 
}

.navlink .navlink-inner  {
    font-size: 17px;
    font-weight: 450;
    color: #364f75;
    padding:8px 25px;
}
/* Base styles for the navlink */
.navlink .navlink-inner {
    position: relative;
    color: inherit;
    text-decoration: none; /* Remove default underline */
    padding-bottom: 5px; /* Space for the underline effect */
    transition: color 0.3s ease; /* Smooth color transition */
}
.navfrt{
    height: 120px;

  padding-top: 40px;
}
/* Underline effect using ::after */
.navlink .navlink-inner::after {
    content: "";
    position: absolute;
    left: 0;
bottom:0;
    width: 0%;
    height: 2px;
    background-color: #f49e61; /* Color of the underline */
    
    transition: width 0.4s ease; /* Animation for underline */
}

/* Hover effect to show the underline */
.navlink .navlink-inner:hover::after {
    width: 100%; /* Expands underline to full width */
}

/* Active state keeps the underline */
.navlink .navlink-inner.active::after {
    width: 100%; /* Full-width underline for active link */
}

/* Optional: Color change on hover and active */
.navlink .navlink-inner:hover,
.navlink .navlink-inner.active {
    color: #f49e61; /* Change text color to match underline on hover and active */
}

.navlink {
    position: relative;
}

.navlink-inner:hover .dropdown-inner {
    display: block;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    padding-left: 0px;
    border-radius: 4px;
}

.navlink .dropdown.active .dropdown-inner {
    display: block;
}

.dropdown-inner {
    display: none; /* Hidden by default */
    position:absolute;/* Position it relative to its parent */
    top: 100%; /* Position it directly below the parent */
    left: 0;
    background-color: white; /* Ensure background color */
    width: 285px; /* Set a fixed width or adjust as needed */
    z-index: 1000; /* Ensure it stays on top of other content */
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-top: 5px solid black;
}

.dropdown-inner li {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    padding: 10px 15px;
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
}
.dropdown-inner li a{
    color:black !important;
}
.dropdown-inner li:hover {
    background-color: #f0f0f0; /* Adds a hover effect */
}

.dropdown-inner img {
    width: 15px;
    margin-right: 10px; /* Add space between icon and text */
    transform: rotate(-90deg);
}

.hamberg {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamberg span {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 6px;
    background-color: black;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    display: none; /* Hidden initially */
}

.mbmenu {
    display: none;
}

.gry1 {
    height: 493px;
}

.gry2 {
    width: 250px;
    height: 165px;
}

.btn-heder {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    z-index: 1;
}

.btn-heder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Initial width is 0 */
    height: 100%;
    background-color: blue;
    transition: width 0.3s ease; /* Smooth transition for width */
    z-index: 0;
}

.btn-heder:hover::before {
    width: 100%; /* On hover, the width expands to 100% */
}

.btn-heder span {
    position: relative; /* Ensure text stays above the pseudo-element */
    z-index: 1;
}

.btn-heder:hover {
    background-color: #45a049; /* Button color on hover */
}

.btn-heder .cotnt-img {
    margin-left: 10px;
    display: inline-flex;
}

.btn-heder .cotnt-img img {
    width: 35px; /* Adjust size of the image */
    height: 35px;
    background-color: white; /* White background for the image */
    border-radius: 50%; /* Circular image */
    padding: 8px; /* Padding around the image */
    border: 1px solid #ccc; /* Border around the image */
    transition: transform 0.3s ease;
}

.btn-heder:hover .cotnt-img img {
    transform: rotate(180deg); /* Rotate the image on hover */
}

.inner-imgs {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.inner-imgs:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    header{
        height: 45px;
  align-content: center;
    }
    .main-header.sticky{
        height:50px;
          align-content: center;

    }
    .bg-topeer{
        display:none!important;
    }
    .navlink .navlink-inner:hover::after {
        width:0%;
    }
    .slide__heading{
        font-size:40px !important;
    }
    .slide__content{
        top:10%!important;
    }
    .navlink {
        position: fixed;
        width: 300px;
        height: 100vh;
        top: 0;
        right: -500px;
        background-color: #061738;
        transition: 0.5s;
    }
    .dropdown-inner{
        position :relative !important;
    top: 10%;
    left: 0;
  
    width: 100%;
    z-index: 1
    }
    .ab-wth{
        width:100px !important;
    }
    .ab-wth img{
        padding:3px;
    }
    .navlink.active {
        right: 0 !important;
        z-index: 999999999999999;
    }

    .navfrt {
        flex-direction: column;
        padding-left: 0px;
    }

    .bg-footer {
        background-color: #264653;
        color: white;
    }

    .bg-footer p {
        color: white;
    }

    .bg-footer li {
        list-style: none;
        color: white;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .bg-footer li a {
       
        color: white;
        text-decoration: none;
        font-weight:900;
    }

    .bg-footer li a:hover {
        color: red;
    }

    .bg-footer ul {
        padding-left: 0px !important;
    }

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .glly-mobile {
        flex-direction: column;
    }

    .gry1 {
        height: 200px;
    }

    .gry2 {
        width: 100% !important;
    }

    .send-column {
        display: none !important;
    }

    .hamberg {
        display: flex;
    }

    .navlink .navlink-inner {
        padding: 20px 0;
        border-bottom: 1px solid white;
    }

    .close-btn {
        display: block; /* Show the close button on mobile view */
    }

    .navlink-inner.destop {
        display: block !important;
    }

    .mobile {
        display: none;
    }

    .dropdown-inner {
       
        top: 21px;
        left: 0;
        width: 100%;
    }

    .mbmenu {
        border: none !important;
        display: block;
    }
}
.bg-topeer
{
overflow-x:hidden;
    background: linear-gradient(90deg, #264653 70%, rgba(255, 94, 20, 0.95) 50%);}
.stret{
    
   margin-bottom:7px !important;
   padding:10px 30px 0px;
}
.destop{
    display:none;
}
/* Header sticky*/
.main-header {
    width: 100%;

    background-color: white;  /* Initial background */
    color: white;
    text-align: center;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Sticky state */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ff6620;  /* Smaller padding for sticky state */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Shadow effect */
    z-index: 1000;
    color:white;
    padding:0px 70px;
}
/* Header end */    
        /* Ensure the swiper container has relative positioning */

          .tz-gallery .row > div {
            padding: 2px;
        }

        .tz-gallery .lightbox img {
            width: 100%;
            border-radius: 0;
      
        }

.tz-gallery .lightbox:before {
    position: absolute;
    top: 40%;
    left: 40%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    background: url('../img/right-1.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100px;
    height: 100px;
}

        .tz-gallery .lightbox:after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-color: rgba(46, 132, 206, 0.7);
            content: '';
            transition: 0.4s;
        }

        .tz-gallery .lightbox:hover:after,
        .tz-gallery .lightbox:hover:before {
            opacity: 1;
        }

       h1, h2, h3, .main-heading,h5,h6,h4 {
    font-family: 'Abril Fatface', cursive;

    font-weight: 400;
    line-height: 1.2;
  margin:0px;
}
       p, .paragraph,a {
    font-family: 'Lato', sans-serif;
   
  margin:0px;
    line-height: 1.6;

}
       button, .btn {
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Bolder for emphasis */
   
}
       h1{

             font-size: 48px !important; 
                line-height: 1.2;
       }
       h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 36px; /* Slightly smaller for secondary headings */
    

    line-height: 1.3;
   
}
h3 {
    font-family: 'Abril Fatface', cursive;
    font-size: 30px; /* Ideal for subsection titles */
   

    line-height: 1.4;
   
}
p, .paragraph {
    font-family: 'Lato', sans-serif !important;
   
    
    line-height: 1.6;
   padding-bottom:0px !important; 
    margin-bottom: 1em;
}
p{
     font-size: 16px; /* Standard size for readability */
}
button, .btn {
    font-family: 'Lato', sans-serif;
    font-size: 14px; /* Slightly smaller but bold for emphasis */

 
  

   
}
.forbg-four{
   background:rgba(13, 17, 23, 0.86);

   text-align:center;
}
        .bg-four {
      background-image: url('../img/backfour.jpeg');
      background-size:cover;
      width:100%;
      
      color:white;
        }
.padding{
    padding:30px;
    border:2px solid grey;
    border-radius:10px;
}

/* swiper 4*/

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
     

    }
     .mySwiper4 .swiper-slide img{
         width:100%;
         height:250px;
     }

    .swiper-pagination-bullet {
      width: 20px;
      height: 20px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #000;
      opacity: 1;
      background: rgba(0, 0, 0, 0.2);
    }

    .swiper-pagination-bullet-active {
      color: #fff;
      background: #007aff;
    }
    .text-lefts{
        text-align:left !important;
        background:rgba(139, 148, 158, 0.6);
        padding:30px 10px;
    }
    .bg-swiper{
        position:relative !important;
    }
    .swiper-pagination{
        position:absolute;
    }
    .mySwiper4 h3{
        color:white;
    }
     .mySwiper4 p{
        color:black !important;
    }
     .bg-volunter h4{
          font-family: 'Lato', sans-serif !important;
          font-size:25px;
          font-weight:800;
          padding-bottom:10px;
     }

     .efect{
       width: 300px; /* Set desired width */
    height: 200px;
    width: 50%; /* Set desired width */
    height: 250px; /* Set desired height */
    overflow: hidden; /* Hide the overflow of the inner image */
    /* Optional rounded corners */
    position: relative;
    
  
     }
        .efect img {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease; /* Smooth zoom effect */
           
        }
     .efect:hover img {
    transform: scale(1.1); /* Only scales the inner image */
  }
   .volunteer-section {
    display: flex;
    gap: 20px; /* Space between the two images */
    justify-content: center; /* Center the images */
    padding-top:20px;
  }
   .efect:hover .hover {
  visibility: visible;
  opacity: 1;
}
   .efect .hover {
  background: black;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,4));
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 70px 0 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
   .size{
       font-size:15px;
        color: rgba(255, 94, 20, 0.95); ;
       display:block;
   }
    .vluter{
       padding-left:20px !important;
    }
   .vluter li{
list-style:none;
position:relative;

padding-bottom:10px;

   }
        .vluter li::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -20px;
          width:100%;
          height:100%; 
            background-image: url('../img/right-arrow.png');
            background-size: 16px 16px; /* Set the width and height of the icon */
            background-repeat: no-repeat;
            background-position: left center;
            /;
        }
       .bg-volunter {
  position: relative;
  width: 100%;
}
.bg-call{
    background-color: #1E1E1E;

}
.bg-call h2,.bg-call p {
    color:white;
}
.bg-volunter::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  bottom:100px ;
  background: url('../img/bd-vloter.png') no-repeat right bottom;
  background-size: 40%;
  opacity: 0.6; /* Adjusts opacity of the background image */
  z-index: -1; /* Places the background behind the content */
}
.ctrtext{
    font-family: 'Lato', sans-serif !important;
      font-size: 16px; /* Standard size for readability */
      font-weight:800;
}
.img-about{
    height:350px;
    width:100%;
}
/*slider*/
/* Add these properties to the body and .slider container */


.slider {
  position: relative;
  height: 100vh;
  overflow:hidden;
}

.slider__slides {
  z-index: 1;
  position: relative;
  height: 100%;
}

.slider__control {
  /*z-index: 2;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-radius: 50%;
  background: rgba(255, 94, 20, 0.95);
  transition: background-color 0.3s;
  cursor: pointer;*/
}

.slider__control--right {
  left: 95%;
}

.slider__control:hover {
  background-color: #2da6ff;
}

.slider__control-line {
  /*position: absolute;
  left: 23px;
  top: 50%;
  width: 3px;
  height: 14px;
  transform-origin: 50% 0;
  transform: rotate(-45deg);*/
}

.slider__control-line:nth-child(2) {
  /*transform: translateY(1px) rotate(-135deg);*/
}

.slider__control--right .slider__control-line {
  left: 37px;
  transform-origin: 1px 0;
  transform: rotate(45deg);
}

.slider__control--right .slider__control-line:nth-child(2) {
  transform: translateY(1px) rotate(135deg);
}

.slider__control-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e2e2e2;
  transition: background-color 0.3s;
}

.slider__control:hover .slider__control-line:after {
  background-color: #fff;
}

.slider__control.a--rotation .slider__control-line:after {
  animation: arrowLineRotation 0.49s;
}

.slider__control.a--rotation .slider__control-line:nth-child(1):after {
  animation: arrowLineRotationRev 0.49s;
}

@keyframes arrowLineRotation {
  to {
    transform: rotate(180deg);
  }
}

@keyframes arrowLineRotationRev {
  to {
    transform: rotate(-180deg);
  }
}

.slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: clip-path 0s 0.91s;
  clip-path: circle(30px at 120vw 50%);
}

.slide.s--prev {
  clip-path: circle(30px at 30vw 50%);
}

.slide.s--active {
  z-index: 1;
  transition: clip-path 1.3s;
  clip-path: circle(120vmax at 120vw 50%);
}

.slide.s--active.s--active-prev {
  clip-path: circle(120vmax at 30vw 50%);
}

    .slide:nth-child(1) .slide__inner {
        background-image: url('../images/banner11.png');
    }

        .slide:nth-child(2) .slide__inner {
     
            background-image: url('../images/banner22.png');
        }

.slide:nth-child(3) .slide__inner {
  background-image: url('../onepgscr-5.jpg');
}

.slide:nth-child(4) .slide__inner {
  background-image: url('../img/onepgscr-6.jpg');
}

.slide:nth-child(5) .slide__inner {
  background-image: url('../img/welcome-one-img.jpg');
}

.slide__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
}

.slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.slide__content {
  position: absolute;
  left: 10%;
  top: 30%;
  margin-left: -30px;
  margin-top: 48px;
  max-width: 1120px;
  color: #fff;
}
.slider__control,
.slider_control {
  display: none; /* Removes the visibility of navigation arrows */
}

.slide__heading {
  margin-bottom: 20px;
  font-size: 60px;
}

.slide__text {
  font-size: 25px;
}

.slide__text a {
  color: inherit;
}
/* Box Height */
.boxes1, .boxes2, .boxes3, .boxes4, .boxes5 {
    height: 300px;
    color: #FFFFFF; /* Ensure text is visible on darker backgrounds */
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Smooth scaling transition */
    text-align:center;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);    
}

/* Box 1: Vibrant Orange Background */
.boxes1 {
    
    background-color:#4E97E8;
}
.boxes1:hover {
    transform: scale(1.05); /* Slight scale on hover */
}
.boxes2:hover {
    transform: scale(1.05);
    background-color:#4E97E8;
     /*background: rgba(255, 94, 20, 0.95);*/
     color:white;
}
.boxes3:hover {
    transform: scale(1.05);
     /*background: rgba(255, 94, 20, 0.95);*/
     background-color:#4E97E8;
     color:white;
}
.boxes4:hover {
    transform: scale(1.05);
     /*background: rgba(255, 94, 20, 0.95);*/
     background-color:#4E97E8;
     color:white;
}
.boxes5:hover {
    transform: scale(1.05);
     /*background: rgba(255, 94, 20, 0.95);*/
     background-color:#4E97E8;
     color:white;
}
/* Box 2: Semi-Transparent Gray */
.boxes2 {
    background: rgba(201, 209, 217, 0.32); 
    /*background-color:#4E97E8;*/
    color:#212529;/* Light gray with transparency */
}

/* Box 3: Same Semi-Transparent Gray */
.boxes3 {
    background: rgba(201, 209, 217, 0.32); /* Light gray with transparency */
      color:#212529;
}
/* Box 3: Same Semi-Transparent Gray */
.boxes4 {
    background: rgba(201, 209, 217, 0.32); /* Light gray with transparency */
      color:#212529;
}
/* Box 3: Same Semi-Transparent Gray */
.boxes5 {
    background: rgba(201, 209, 217, 0.32); /* Light gray with transparency */
      color:#212529;
}
element {
}
.main-slider .donate-box .theme-btn {
  padding: 12px 48px 12px 47px;
}
.themes-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
 
  padding: 8px 40px 8px 40px;
  background: #ff5e14;
  color: #ffffff;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 300ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  border:none ;
}
   .themes-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  border:none ;
  padding: 8px 40px 8px 40px;
  background: #ff5e14;
  color: #ffffff;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 300ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
} 
   .themes-btn:hover {
  background: #212121;
  color: #ffffff;
  border:2px solid white;
}
 
     .img-barder img{
        width: 32px;
  height: 32px;
  background-color:white;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid white;
  transition: transform 0.3s ease;
 

     }
     .donate-box-btn.themes-btn{
         font-size:18px;
     }
     .bg-service{
         position:relative;
     }
     .bg-service::before{
         background-color: #f8b864;
  content: '';
  height: 700px;
  width: 700px;
  position: absolute;
  top: -400px;
  left: -450px;
  border-radius: 100%;
  opacity: 0.2;
  z-index: -1;
     }
        .bg-about{
         position:relative;
         overflow:hidden;
     }
     .bg-about::before{
   background-color: #f8b864;
  content: '';
  width: 50%;
  height: 680px;
  position: absolute;
  top: 330px;
  right: -150px;
  border-radius: 100%;
  -webkit-transform: skew(3deg,30deg);
  -ms-transform: skew(3deg,30deg);
  transform: skew(5deg,10deg);
  opacity: 0.3;
  z-index: -1;
     }
     section{
         overflow-x:hidden;
     }

.bg-call {
    background-image: url('../images/Donate.jpg');
    /*background-image: url('../images/dont.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.385555); /* Black overlay with 50% opacity */
  z-index: 1;
}
.left::before{
    content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgba(135, 206, 250, 0.9);
  transform: skewX(-20deg);
  transform-origin: top left;

}
.content {
 position: relative;
  z-index: 2;
  color: white; /* Text color to stand out */
  text-align: left;
 
  

}
 .rowers{
        background:#E0E0E0;
        padding:90px 30px;
        border-radius:10px;
    }
   .contect{
       font-weight:700;
   }

    @media screen and (max-width: 768px) {
     .rowers{
        background:#E0E0E0;
        padding:30px 10px;
        border-radius:10px;
    }
    }