/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

:root {
--clr-black: #000;
--clr-back333: #333;
--clr-back300: #4d4d4d;
--clr-white: #fff;
/* --clr-yellow: #FAAF1A; */
--clr-yellow: #FFE500;
--clr-blueNew: #2667ff;

/* rose rgb(225, 29, 72) */
/* indigo rgb(79, 70, 229) */

/* sizes */
--size-xxs: 0.5rem;
--size-xs: 0.75rem;
--size-sm: 0.875rem;
--size-base: 1rem;
--size-lg: 1.125rem;
--size-xl: 1.25rem;
--size-2xl: 1.5rem;
--size-3xl: 1.875rem;
--size-4xl: 2.25rem;
--size-5xl: 2.75rem;
--size-6xl: 3.75rem;
--size-7xl: 4.5rem;
--size-8xl: 6rem;
--size-9xl: 8rem;
--size-10xl: 10rem;

}

* {
margin: 0;
line-height: calc(1em + 0.5rem);
}

html {
scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--clr-white);
    color: var(--clr-black);
    /* margin-bottom: 500px; */
    top: 0px !important;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}

button {
  /* display: inline-block; */
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: var(--clr-blue);
  text-decoration: none;
}

.primary__button {
    background-color: var(--clr-yellow);
    color: var(--clr-white);
    color: var(--clr-black);
    font-weight: 500;
    font-size: var(--size-base);
    padding: 10px 28px 10px 28px;
    border-radius: 0.8rem;
    transition: all 0.3s;
    display: inline;

    box-shadow: 0px 2px 4px #00000025;
}

.primary__button:hover {
    /* opacity: 0.9; */
    background-color: #00BFFF;
    /* background-color: #ff5400; */
    /* background-color: #29bf12; */
    /* background-color: #ff7900; */
    color: var(--clr-white);
}

.view__more__button {
    display: flex;
    justify-content: center;
}

.section__main__heading {
    color: var(--clr-black);
    font-size: var(--size-5xl);
    font-weight: 600;
}

.section__description {
    color: var(--clr-black);
    font-size: var(--size-sm);
    width: 98%;
    /* background-color: red; */
}

.container {
  width: 100%;
  max-width: 1440%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* border: 1px solid red; */
}

.section {
  margin-top: 6rem;
}

.button__top__margin {
    margin-top: 2.5rem;
}

/* ------------------------------------ */
/* Top Banner Section Start */
/* ------------------------------------ */


.page__top__banner__section,
.page__top__banner__image,
.page__top__banner__overlay,
.page__top__banner__section__text__wrapper {
    width: 100%;
    height: 480px;
}

.page__top__banner__image {
    object-fit: cover;
    position: relative;
}

.page__top__banner__overlay {
    background-color: #00000050;
    position: absolute;
    top: 0;
    left: 0;
}

.page__top__banner__section__text__wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page__top__banner__section__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page__top__banner__section__heading {
    color: var(--clr-white);
    font-size: var(--size-4xl);
    font-weight: 500;
    /* width: 75%; */
    text-align: center;
}

.skiptranslate {
    display: none;
    /* background-color: red; */
    visibility: hidden;
    width: 50% !important;
}

.VIpgJd-ZVi9od-ORHb {
    display: none;
}

/* ------------------------------------ */
/* Top Banner Section End*/
/* ------------------------------------ */


/* xs */
@media (min-width: 475px) {
    .container {
        max-width: 475px;
    }
}

/* sm */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

/* md */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }

    .section__heading {
        font-size: var(--size-6xl);
        margin-bottom: 3rem;
    }

    .section__description {
        color: var(--clr-black);
        font-size: var(--size-base);
        width: 70%;
    }

    .page__top__banner__section__heading {
        color: var(--clr-white);
        font-size: var(--size-6xl);
        font-weight: 500;
        width: 75%;
        text-align: center;
    }
}

/* lg */
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .page__top__banner__section__heading {
        color: var(--clr-white);
        font-size: var(--size-7xl);
        font-weight: 500;
        width: 75%;
        text-align: center;
    }
}

/* xl */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* 2xl */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}