
*, ::after, ::before {
    box-sizing: border-box;
  }

* {
    margin: 0;
    border: 0;
}

.img-fluid
{
    max-width: 100%;
    height: auto;
}
body
{
    background-color: #fff;
    color:black;
    font-size: 16px;
}
h1
{
    color:black;
    font-weight: 700;
    font-size:2em;
    margin:20px 0;
    font: 700 45px / 65px "Google Sans", sans-serif;
}
h2{
    color:black;
     font: 600 25px / 25px "Google Sans", sans-serif;
    font-weight: 700;
    font-size: 1.7em;
    margin:20px 0;
}
h3{
    font: 500 17px / 17px "Google Sans", sans-serif;
    font-weight: 600;
    color:black;
    margin:10px 0;
}
a {
     color:#1FC2F5;
}

p{
    margin-bottom:10px;
}
.body-content
{
    max-width: 1140px;
    margin: 0 auto;
}

.dlbtn
{
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 8px 15px;
    margin: 0;
    text-decoration: none;
    background: #207dd3c7;
    color: white;
    line-height: 28px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;

    margin-bottom: 20px;
}
.button
{
    display: flex;
    align-items: center;  /* Centers items vertically */
    height: 100%;
    text-decoration: none;
    color: inherit;
    gap: 15px; 
}

.logo-btn
{
   
    width: 60px;
    height: 60px;
    flex-shrink: 0;  /* Prevents image from shrinking */
    object-fit: contain;  /* Maintains aspect ratio */

}

.text-content {
    flex: 1;  /* Takes remaining space */
    text-align: left;  /* Left-aligns text */
}

.text-content p {
    margin: 0;
    padding: 2px 0;
}

header
{
    text-align: center;
    /* 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: 100%;
    height:auto;
}


.box
{
    text-align: left;
    height:100%;
}



.animated-button {
    display: inline-block;
    padding: 15px 30px;
    color: black;
    background-color: #1FC2F5;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px  rgba(31, 194, 245, 0.7);
    animation: glowShrink 2s infinite;
}



@keyframes glowShrink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px  rgba(31, 194, 245, 0.7);
    }
    50% {
        transform: scale(0.9); /* Shrinks */
        box-shadow: 0 0 20px rgba(31, 194, 245, 1); /* Glow intensifies */
    }
    100% {
        transform: scale(1); /* Back to normal size */
        box-shadow: 0 0 10px rgba(31, 194, 245, 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(64, 110, 220, 0.5); */
    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;
    }
}