*{
    margin: 0;
    padding: 0;
}

/* ================================= global design ======================================= */
body{
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    
    background-color:var(--secondary);
}

:root{
    --primary:#ff8400;
    --secondary:rgb(250, 250, 250);
    --text:#555;
    --border:#959595;
    --tertiary:#f3f3f38e;
}
.margin {
    margin:0 4%;
}
a{
    text-decoration: none;
}
.main-btn {
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    outline: none;
    /* border: none; */
    /* background-color: #ff9600;
    color: var(--secondary); */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.about-btn {
    outline: none;
    border: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.about-btn:hover{
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
}
.main-btn-1 {
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.main-btn-1:hover{
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--secondary);
    backdrop-filter: blur(2px);
}
.main-btn-2 {
    border: none;
    outline: none;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 15px;
    justify-self: center;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.main-btn-2:hover{
    border: 1px solid var(--secondary);
    background-color: transparent;
    color: var(--secondary);
}
.line {
    width: 100%;
    height: 1px;
    background-color: var(--border);
}
.line-1 {
    width: 1px;
    height: 70px;
    background: var(--border);
}
/* ================================= end of global design ======================================= */


/* ============================= navbar section ============================================== */
.mail {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mail label {
    font-size: 14px;
    color: var(--text);
}
.mail i {
    color: var(--primary);
}
.all-top {
    background-color:var(--secondary);
    padding: 15px 0 6px 0 ;
    /* padding: 10px 15px ; */
    border-radius: 0 0 8px 8px; 
}
.top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: space-between; */
}
.top-content h5{
    color: #555;
    letter-spacing: 1px;
    font-size: 15px;
}
.top-right span {
    color: var(--border);
}
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social i{
    padding: 6px;
    background: var(--primary);
    border-radius: 100%;
    font-size: 0.8rem;
    color: var(--secondary);
}
.nav-left img{
    width: 80px;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
}
.nav-center a {
    color: var(--secondary);
    font-size: 15px;
    font-weight: bold;
}
.nav-center a:hover{
    color: var(--primary);
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:16px 0;
}
.all-navbar{
    background-color:black;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#bars {
    cursor: pointer;
    display: none;
}
#bars span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 5px;
    transition: 1s ease;
}
#bars span:nth-child(2){
    width: 15px;
}
#bars.show span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#bars.show span:nth-child(2) {
    opacity: 0;
}
#bars.show span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================= end of navbar section ============================================== */

/* ====================== sidebar section ======================== */
#sidebar {
    position: fixed;
    top: 0;
    left: -1000px;
    height: 100vh;
    background-color:var(--secondary);
    width: 25%;
    /* border-right: 1px solid #ddd; */
    padding:10px 15px;
    color: var(--text);
    transition: left 1s ease;
    display: none;
    z-index: 10000;
}
#sidebar.show{
    left: 0;
}
.no-scroll {
    overflow: hidden;
}

.side-logo{
    justify-self: center;
    margin-bottom: 20px;
}
.side-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-item a{
    color: var(--main);
    font-size: 17px;
}
.side-logo img{
    padding-top: 25px;
}
.side-item i{
    color:var(--dash);
}
/* ====================== end of sidebar section ======================== */


/* ============================= hero section =================================== */
.all-hero {
    position: relative;
    overflow: hidden;
}
.all-hero video{
    width: 100%;
    height: 90vh;
    filter: brightness(40%);
    object-fit: cover;
    z-index: -1;
    
}
.hero-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 100px;
}
.welcome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome i, .welcome-4 i{
    color: var(--secondary);
}
.welcome label, .welcome-4 label{
    color: var(--secondary);
    font-size: 12px;
    font-weight: bold;
}
.welcome-1 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome-2{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome-4{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    
}
.welcome-1 i, .welcome-2 i{
    color: var(--primary);
}
.welcome-1 label, .welcome-2 label{
    color: var(--text);
    font-size: 12px;
    font-weight: bold;
}
.hero-left h1{
    font-weight: bold;
    font-size: 60px;
}
.hero-left p{
    font-weight: 100;
}
.hero-left {
    width: 55%;
    color: var(--secondary);
}


/* ============================= end of hero section =================================== */

/* ============================ about section =========================== */
.about-content {
    display: flex;
    align-items:center;
    gap: 40px;
}
.about-left{
    width: 50%;
    
}
.about-left img{
    width: 100%;
    border-radius: 10px;
    filter: brightness(90%);
    animation: 10s moveIg infinite;
}

@keyframes moveIg {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0px);
    }
    
}
.about-right {
    width: 50%;
}
.about-right h1 {
    font-size: 50px;
}
.all-about {
    padding: 60px 0;
}
.medic-title {
    color: var(--text);
}
.medic-title h5 span{
    display: block;
    line-height: 30px;
}
.medic-item i{
    background-color: var(--primary);
    color: var(--secondary);
    padding: 18px;
    font-size: 1.5rem;
    border-radius: 100%;
}
.medic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.medic-content {
    display: flex;
    gap: 25px;
}
.about-right p{
    color: var(--text);
    font-size: 14px;
    margin-bottom: 30px;
}
.about-right h1{
    color: var(--text);
}
.vtu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.vtu-items {
    text-align: center;
}
.vtu-items h2{
    color: var(--text);
    font-size: 45px;
}
/* ============================ end of about section =========================== */

/* ========================= partner section ==================================== */
.partner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.partner-left {
    width: 50%;
}
.partner-left p{
    color: var(--text);
    font-size: 15px;
    margin-bottom: 30px;
}
.partner-left ul li{
    color: var(--text);
    font-size: 16px;
    margin-bottom: 10px;
}
.partner-right {
    width: 50%;
}
.partner-right img {
    width: 100%;
    border-radius: 10px;
    filter: brightness(90%);
    animation: 10s moveIg infinite;
}
.all-partners {
    padding: 60px 0;
    background: var(--tertiary);
}

/* ========================= end of partner section ==================================== */

/* ========================= donate section ==================================== */
.donate-left {
    width: 50%;
}
.all-donate {
    padding: 60px 0;
}
.donate-left img {
    width: 100%;
    border-radius: 10px;
    filter: brightness(90%);
}
.donate-right {
    width: 50%;
}
.donate-ceo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #eee;
    border-radius: 15px;
}
.donate-ceo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.donate-ceo-title h5 {
    color: var(--text);
    font-size: 25px;
}
.donate-ceo-title label {
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
}
.donate-ceo-title {
    display: block;
}
.donate-right h1, .testimonial-header h1 {
    font-size: 50px;
}
/* ========================= end of donate section ==================================== */

/* ======================================== testimonial section ================================= */
.testimonial-header {
    text-align: center;
}
.testimonial-header p span{
    display: block;
    color: var(--text);
    font-size: 15px;
}
.testify {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.testify label{
    color: var(--primary);
}
.testimomial-items p {
    color: var(--text);
    /* font-style: italic; */
    font-size: 15px;
}
.testify img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dotted var(--primary);
}
.all-testimonial {
    padding: 60px 0;
    background: var(--tertiary);
}
.testimomial-items {
    background-color: #fff;
    text-align: center;
    flex: 0 0 auto;
    width: 350px;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.testimonial-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scrollTestimonials 40s linear infinite;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0%);
  }
  100% {
     transform: translateX(calc(-100% + 100vw));
  }
}

/* ======================================== end of testimonial section ================================= */

/* ======================================== footer section ========================================== */
.footer-center p {
    display: flex;
    align-items: center;
    gap: 5px;
    
}
.footer-center {
    text-align: left;
}
.footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}
.footer-left p span{
    display: block;
}
.all-footer {
    padding: 60px 0 20px 0;
    border-top: 1px solid #dddddd;
}
.footer-left p{
    color: var(--text);
    margin-top: 20px;
}
.footer-center h4{
    color: var(--text);
    font-weight: 300;
    margin-bottom: 16px;
}
.footer-center svg{
    color: var(--primary);
}
.footer-center p{
    color: var(--text);
}
.footer-center p:hover{
    color: var(--primary);
}
.footer-right h4{
    color: var(--text);
    font-weight: 300;
    margin-bottom: 16px;
}
.foot-date {
    padding: 25px 0 12px 0;
    background: var(--primary);
}
.foot-date h5{
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
    color: var(--secondary);
}
.foot-date a {
    color: var(--secondary);
}
/* ======================================== end of footer section ========================================== */

/* ========================================= volunteer section ================================= */
.volunteer-items{
    padding: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.019);
    text-align: center;
    background: var(--tertiary);   
}
.volunteer-items-1{
    padding: 70px 20px;
    border-radius: 15px;
    text-align: center;
    background: var(--primary);  
    color: var(--secondary); 
}
.volunteer-items-1 i{
    color: var(--primary);
    background-color: var(--secondary);
    padding: 17px;
    font-size: 1.8rem;
    border-radius: 50%;
    margin-bottom: 20px;
}
.volunteer-items-1 h3 {
    font-weight: bold;
    margin-bottom: 20px;
}
.volunteer-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.volunteer-items img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}
.volunteer-name h4{
    color: var(--text);
    font-size:25px;
    font-weight: bold;

}
.volunteer-name p{
    color: var(--text);
    font-size: 15px;
}
.all-volunteer {
    padding: 60px 0;
}
/* ========================================= end of volunteer section ================================= */


/* ========================================= about background section ====================================== */
.image-background {
   background: linear-gradient(rgba(0, 0, 0, 0.608), rgba(0, 0, 0, 0.608)), url(../image/hero.jpg) no-repeat center center/cover;
   padding: 100px 0;
   color: var(--secondary);
   display: flex;
   text-align: center;
   justify-content: center;
}
.image-background-content h2{
    font-size: 50px;
    font-weight: bold;
}
.welcome-4 a {
    color:var(--secondary);
}
/* ========================================= end of about background section ====================================== */


/* ==================================   text =========================================== */
.all-text{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
    background-color: var(--primary);
}
.move-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: var(--secondary);
    animation: moveText 15s linear infinite;
}
.move-text h1 {
    font-size: 50px;
}
@keyframes moveText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ================================== ed of move text =========================================== */

/* ============================================== contact section =============================== */
.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-right, .contact-left {
    width: 50%;
}
.contact-right img {
    width: 100%;
    border-radius: 10px;
}
.contact-form textarea{
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    padding: 15px;
    background-color: transparent;
    border-radius: 5px;
    height: 150px;
    resize: none;
    color: var(--text);
}
.contact-form ::placeholder {
    font-size: 14px;
}
.contact-head {
    text-align: center;
    color: var(--text);
    margin-bottom: 30px;
}
.contact-head h1 {
    font-weight: bold;
}
.map iframe {
    width: 100%;
}
.all-contact {
    padding: 60px 0;
}
/* ============================================== end of contact section =============================== */

/* ============================================= register section ======================================= */
.register-content {
    display: flex;
    /* align-items: center; */
}
.register-left{
    width: 50%;
    height: 100vh;
}
.register-left img {
    width: 100%;
}
.register-right{
    overflow-y:auto;
    width: 50%;
    height: 100vh;
    padding: 60px 40px;
    background-color: #f0f0f0;
}
.register-right::-webkit-scrollbar {
    width: 5px;
}
.register-right-content {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 15px;
}
.register-logo img{
    width: 80px;
}
.register-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.register-group input, .register-group select {
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
}
.pass-group input {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
}
.pass{
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
}
.register-group, .pass-group {
    position: relative;
    width: 100%;
    /* margin-bottom: 20px; */
}
.register-group label {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.pass-group label {
    position: absolute;
    top: -1px;
    left: -1px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.register-group input:focus + label,
.register-group input:not(:placeholder-shown) + label {
    top: -9px;
    font-size: 12px;
    background-color:var(--secondary);
    padding: 0 5px;
}
.register-group select:focus + label,
.register-group select:valid + label {
    top: -9px;
    font-size: 12px;
    background-color:var(--secondary);
    padding: 0 5px;
}
.pass-group input:focus + label,
.pass-group input:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 12px;
    background-color: var(--secondary);
    padding: 0 5px;
}
.all-input {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pass {
    display: flex;
    align-items: center;
}
.pass i{
    color: var(--text);
    cursor: pointer;
}
.terms {
    display: flex;
    align-items: center;
    gap: 6px;
}
.terms label{
    font-size: 14px;
    color: var(--text);
}
.terms input{
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}
.terms span, .terms a {
    color: var(--primary);
    font-weight: bold;
    transition: 0.10s ease;
    cursor: pointer;
    font-size: 14px;
}
.terms span:hover, .login-redirect a:hover, .terms a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary);
}
.login-redirect p{
    font-size: 15px;
    color: var(--text);
    text-align: center;
}
.login-redirect a {
    color: var(--primary);
    transition: 0.10s ease;
}
.register-head h4{
    font-weight: bold;
    color: var(--text);
}
.register-head p{
    color: var(--text);
    font-size: 15px;
}
/* ============================================= end of register section ======================================= */

/* ================================== preloader section ================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}
.loader{
    display: flex;
}
.loader span {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    animation: loader 1s infinite;
}
.loader span:nth-child(1) {
    animation-delay: 0s;
}
.loader span:nth-child(2) {
    animation-delay: 00.2s;
}
.loader span:nth-child(3) {
    animation-delay: 0.4s;
}
.loader span:nth-child(4) {
    animation-delay: 0.6s;
}
.loader span:nth-child(5) {
    animation-delay: 00.8s;
}
@keyframes loader {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
.main-content {
    display: none;
}
/* ================================== end of preloader section ================================= */

/* =================================== payment section ====================================== */
.payment-content {
    display: flex;
    align-items: flex-start;
}
.payment-left {
    width: 50%;
}
.payment-left img{
    width: 100%;
}
.payment-right {
    width: 50%;
    padding: 30px;
}
.payment-right h2 {
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    color: var(--text);
    margin-bottom: 25px;
}
.all-payment {
    padding: 60px 0;
    background-color: var(--tertiary);
}
.account-items {
    background-color: var(--secondary);
    /* border: 1px solid #ccc; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px var(--primary);
}
.account-items li{
    line-height: 45px;
    font-size: 20px;
    color: var(--text);
}
.account-items h4 {
    font-size: 30px;
    color: var(--primary);
    font-weight: bold;
}
.account-items b{
    font-weight: bold;
}
.payment-account {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
/* =================================== end of payment section ====================================== */