html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.mb-1 {
   background-color: #36000A;
   position: relative;
   font-family: "Ubuntu", sans-serif;
   font-weight: 300;
   font-style: normal;
}

.m-h {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    height: 61px;
    width: 100%;
    background: linear-gradient(88.91deg, #c10626 17.99%, #e04f29 99.06%);
    padding: 0 50px; 
    box-sizing: border-box;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-bottom: 20px;
    max-width: 90%;
}

.banner-img {
    width: 100%; 
    height: 30vw; 
    display: block;
    max-width: 100vw; 
    object-fit: cover;
}

.img-1 {
    position: relative;
    bottom: 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    object-fit: contain;
}

.b-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    margin-left: auto;
  }
  
.burger-icon .line {
    background-color: #ffffff;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
.burger-icon.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
.burger-icon.active .line:nth-child(2) {
    opacity: 0;
  }
  
.burger-icon.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

.b-c-1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    font-size: 16px;
    line-height: 18px;
    max-height: 32px;
    height: 32px;
    color: #f5f5f5;
    padding-bottom: 20px;
  }

.d-b {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    cursor: pointer;
    box-sizing: border-box;
    background-origin: border-box;
    line-height: 1.2;
    padding: 8px 32px;
    transition: .1s;
    border-radius: 8px;
    color: #df0129;
    border: 1px solid #c9ccd1;
    background: linear-gradient(88.91deg, #e1e4e9 17.99%, #e1e4e9 99.06%);
    text-decoration: none;
    font-weight: bold;
  }

.r-b {
    display: flex; 
    align-items: center;
    justify-content: center;
    text-shadow: none;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 1.2;
    padding: 8px 32px;
    transition: .1s;
    border-radius: 8px;
    border: 1px solid #f5f5f54d;
    background: linear-gradient(88.91deg, #c10626 17.99%, #e04f29 99.06%);
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
}

.m-c {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1100px;
    margin-top: 20px;
    color: #f5f5f5;
    padding-left: 5px;
}

.m-c section p:last-child {
    padding-bottom: 20px;
}

.m-c section img {
    margin: 0 auto;
    width: 100%;
    height: 90%;
    margin-top: 20px;
    color: #f5f5f5;
    padding-left: 5px;
    margin-bottom: 20px;
}

.m-c section h2 {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .m-c {
        max-width: 900px; 
        margin-top: 15px; 
        padding: 15px; 
    }
}


@media (max-width: 768px) {
    .m-c {
        max-width: 100%; 
        margin-top: 10px; 
        padding: 15px;
    }
}


@media (max-width: 480px) {
    .m-c {
        max-width: 100%; 
        margin-top: 5px; 
        padding: 15px; 
        font-size: 14px; 
    }
}

@media (max-width: 320px) {
    .m-c {
        font-size: 12px; 
        padding: 15px; 
    }
}

@media (max-width: 768px) {

    .m-h {
        justify-content: center;
        align-items: center;
        height: 88px;
        padding: 10px 15px;
    }

    .burger-icon {
        margin: 0 auto;
        margin-right: 20px;
    }

    .img-1 {
        padding-right: 11px; 
    }

    .b-c-1 {
        flex-direction: row; 
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .d-b, .r-b {
        padding: 8px 16px; 
    }
}

.nav-links-mobile {
    display: none; 
    flex-direction: column; 
    gap: 10px;
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background-color: #c10626; 
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.nav-links-mobile li {
    list-style: none; 
}

.nav-links-mobile.open {
    display: flex; 
}

.nav-links-mobile a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-links-mobile a:last-child {
    border-bottom: none; 
}

@media (max-width: 768px) {
    .nav-links-mobile {
        top: 87px; 
    }
}

.f-c {
    display: flex;
    flex-direction: column;
    height: 160px;
    background: linear-gradient(88.91deg, #c10626 17.99%, #e04f29 99.06%);
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.back-to-top:hover {
    color: #F5CB61; 
    border-radius: 5px; 
}

.copyrigths {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
}


