*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brandColor1: #126388;
    --brandColor2: #2C52FC;
    --secondColor: #4d2c95;
    --whatsappLight: #25D366;
    --whatsappDark: #128C7E;
    --footerBg: #252525;

    --facebook: #4169e1;
    --twitter: #00bfff;
    --youtube: #FF0000;
    --linkedin: #0077b5;
    --pintrest: #E60023;
    --instagram: #e95950;


    --searchBoxRadius: 2rem;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    color: black;
    /* stop user to select text */
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

/* display none to cache */
#bN015htcoyT__google-cache-hdr {
    display: none;
}

/* ================contnetHolder Section css ============================== */
.contentHolder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.5rem;
}

.contentHolder p,
.contentHolder ul,
.contentHolder li,
.contentHolder ol,
.contentHolder h1,
.contentHolder h2,
.contentHolder h3,
.contentHolder h4,
.contentHolder h5,
.contentHolder h6 {
    color: black;
    width: 100%;

}

.contentHolder h1,
.contentHolder h2,
.contentHolder h3,
.contentHolder h4,
.contentHolder h5,
.contentHolder h6 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.contentHolder h1 {
    font-size: 2rem; /* Adjust as needed */
  }
  
  .contentHolder h2 {
    font-size: 1.5rem; /* Adjust as needed */
  }
  
  .contentHolder h3 {
    font-size: 1.3rem; /* Adjust as needed */
  }
  
  .contentHolder h4 {
    font-size: 1.2rem; /* Adjust as needed */
  }

.contentHolder p {
    text-align: left;
}

.contentHolder li {
    list-style: disc !important;
}

.contentHolder ul {
    width: 100%;
    padding-left: 1rem;
}

.contentHolder p {
    text-align: initial;
}
.contentHolder p a {
    color: #2C52FC;
}

.contentHolder .Button {
    max-width: 25rem;
    padding-inline: 1rem;
    margin: 0.8rem 0;
    text-transform: capitalize;
}

/* ====================================================================header css */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--brandColor1);
    color: white;
    padding: 0.4rem min(5vw, 1rem);
    position: sticky;
    top: 0;
    z-index: 999;
    gap: 0.5rem;
}

nav .logoBox a {
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    display: flex;
    max-width: max(15vw, 100px);
}

nav .addBanner {
    max-width: max(30%, 200px);
    height: 100%;
}

nav .addBanner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

nav .menu li a {
    text-transform: capitalize;
    transition: 300ms;
}

nav .menu li a:hover {
    color: var(--brandColor2);
}

/* navtoggler css */
.navToggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
    background-color: white;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    gap: 8px;
    display: none;
    order: 3;
}

.navToggler span {
    width: 80%;
    height: 4px;
    background-color: var(--brandColor2);
    transform-origin: center;
    transition: 300ms;
}

.closeToggler span:nth-child(2) {
    display: none;
}

.closeToggler span:nth-child(1) {
    transform: rotate(45deg);
}

.closeToggler span:nth-child(3) {
    transform: rotate(-45deg);
}

.closeToggler span {
    position: absolute;
    width: 84% !important;
}

/* hero section css */
.heroSection {
    position: relative;
    min-height: 300px;
    background-color: var(--brandColor1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.heroSection .heroImgBox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.heroSection .heroImgBox img {
    object-fit: cover;
}

.heroSection .heroContentBox {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.heroSection .heroContentBox::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.637);
    z-index: -1;
}

.heroSection .heroContentBox h3 {
    font-size: max(5vw, 2rem);
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px black;
}

.heroSection .heroContentBox h3 span {
    color: var(--brandColor2);
}

.heroSection .heroContentBox p {
    font-size: max(2vw, 1rem);
    color: white;
    text-shadow: 3px 3px black;
    text-transform: capitalize;
}

.heroSection .heroContentBox .heroButtonBox {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.6rem 0;
    flex-wrap: wrap;
}

.heroSection .heroContentBox .heroButtonBox .Button {
    color: white;
}

/* exchange Section css */

.splide__arrow {
    background-color: var(--brandColor2);
    width: 50px;
    height: 50px;
}

.splide__arrow svg {
    fill: white;
    font-size: 2rem;
}

.splide__pagination__page {
    background-color: var(--brandColor1);
}

.splide__pagination__page.is-active {
    background-color: var(--brandColor2);
}

.exchangeSlide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.exchangeSlide .exchangeImageBox {
    overflow: hidden;
    border: 12px solid var(--brandColor2);
}

.exchangeSlide .exchangeContentBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exchangeSlide .exchangeContentBox h2 {
    text-transform: uppercase;
    text-align: center;
    margin: 0.8rem;
    transition: 300ms;
}

.exchangeSlide .exchangeContentBox h2:hover {
    transform: scaleX(1.1);
}

.exchangeSlide .exchangeContentBox .Button {
    width: 15rem;
}

/* banner section */
.bannerSection {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--brandColor2);
    padding: 1rem;
    flex-wrap: wrap-reverse;
    text-align: center;
    color: white;
}

.bannerSection h3 {
    text-transform: capitalize;
    font-size: max(5vw, 2rem);
    margin: 1rem 0.5rem;
}

.bannerSection span {

    width: 100%;
    padding: 0.3rem 0.6rem;
    text-align: center;
    font-size: max(3vw, 1.5rem);
    width: max(80%, 270px);
    text-transform: capitalize;
}

.bannerSection a:hover {
    color: var(--brandColor2);
}

.bannerSection .bannnerImageBox {
    max-width: 200px;
}

.bannerSection .bannnerImageBox img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: hue-rotate(269deg);
}



/* footer css */
footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: max(3vw, 2rem);
    background-color: var(--footerBg);
    color: white;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

footer .footerMenuContainer {
    border-radius: 1rem;
    padding: 1.4rem;
    min-width: 270px;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

footer .footerMenuContainer .footerMenu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

footer .footerMenuContainer .footerMenu li {
    padding: 0.5rem 0.5rem;
}

footer .footerMenuContainer .footerMenu li a {
    transition: 100ms;
    text-transform: uppercase;
}

footer .footerMenuContainer .footerMenu li a:hover {
    color: var(--brandColor2);
}

footer .footerMenuContainer .Button {
    margin: 1rem 0;
}

.footerBottom {
    background-color: black;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    text-transform: capitalize;
}

.footerBottom p a:hover {
    color: var(--brandColor2);
}

/* footer add banner and whatsapp Button */
.footerAddBanner {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.footerAddBanner img {
    width: min(500px, 100%);
    height: 100%;
    object-fit: contain;
}