
*, ::after, ::before {
    box-sizing: border-box;
  }

* {
    margin: 0;
    padding: 0;
    border: 0;
}

.img-fluid
{
    max-width: 100%;
    height: auto;
}
body
{
    background-color: #1d1918;
    color:white;
    font-size: 16px;
}
h1
{
    color:#ff9315;
    font-weight: 700;
    font-size:2em;
    margin:20px 0;
}
h2{
    color:#ff9315;
    font-weight: 700;
    font-size: 1.7em;
}
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

p{
    margin-bottom:10px;
}
.body-content
{
    max-width: 1140px;
    margin: 0 auto;
}



header
{
    /* z-index: 50; */
    /* top:0; */
    width: 110px;
    margin:20px auto;
    
    /* background-image: linear-gradient(180deg,#1d1918 0,#2d2826 100%) !important; */
    /* background-color: #111; */
    /* height: 120px; */
    /* box-shadow: 0 4px 12px 0 rgba(1,27,42,.14); */
}


.header-content
{
    /* display: flex; */
    max-width: 1280px;
    --bs-gutter-x: 1.5rem;
    padding-top: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
.logo-img
{
    max-width: 100px;
    height:auto;
}


.box
{
    width:33%;
    height:100%;
}



.animated-button {
    display: inline-block;
    padding: 15px 30px;
    color: black;
    background-color: #f88703;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px  rgba(248, 135, 3, 0.7);
    animation: glowShrink 2s infinite;
}



@keyframes glowShrink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px  rgba(248, 135, 3, 0.7);
    }
    50% {
        transform: scale(0.9); /* Shrinks */
        box-shadow: 0 0 20px rgba(248, 135, 3, 1); /* Glow intensifies */
    }
    100% {
        transform: scale(1); /* Back to normal size */
        box-shadow: 0 0 10px rgba(248, 135, 3, 0.7); /* Glow resets */
    }
}


.header-space
{
    margin-top:120px;
}
.btm-margin
{
    margin-bottom: 30px;
}

.top-margin
{
    margin-top:50px;
}


.content-col
{
    width:100%;
    display: flex;
    flex-flow:column;
    justify-content:center;
    align-content:center;
    align-items:center;
    padding: 0 15px;
}
.item0-col
{
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row;
    border-radius: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 10px 0px rgba(220, 144, 64, 0.5);
    margin:20px 0;
    padding: 15px;
  max-width: 555px;

  
}


/*Footer*/
footer
{
    width:100%;
    background-color: #2d2826;
}

.footer-section
{
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;

    display: flex;
    flex-flow:column;
    justify-content:center;
    align-content:center;
    align-items:center;
    padding-top: 50px;
    
}

.footer-content
{
    text-align: center;
}

.footer-text
{
    text-align: left;
}

.footer-payment2
{
    margin: auto;
}
.footer-payment
{
    display: flex;
    flex-direction: column;
}

.footer-logo
{
    max-width: 180px;
    height: auto;
}

.payment-img
{
    width: 50px;
    height:50px;
    margin-right:2%;
}
/*footer END*/

/* @media (min-width: 700px) 
{
    .banner
    {
        grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
    }

    .mySwiper2
    {
        top: 22%;
    }

} */


@media only screen and (max-width: 555px) {
    .animated-button
    {
        padding: 10px 20px;
        font-size: 15px;
    }
}