* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

/* body {
  background: #f4f4f4;
} */
:root {
    /* font families */
    --inter-font: "Inter", sans-serif;

    /* font size */
    --one-px: 0.06rem;
    --two-px: 0.13rem;
    --three-px: 0.19rem;
    --four-px: 0.3rem;
    --five-px: 0.3rem;
    --six-px: 0.4rem;
    --eight-px: 0.5rem;
    --ten-px: 0.6rem;
    /* 12 */
    --twelve-px: 0.8rem;
    /* 14 */
    --fourteen-px: 0.9rem;
    /* 15 */
    --fifteen-px: 0.9rem;
    /* 16 */
    --sixteen-px: 1rem;
    /* 18 */
    --eighteen-px: 1.1rem;
    /* 20 */
    --twenty-px: 1.3rem;
    /* 22 */
    --twenty-two-px: 1.375rem;
    /* 24 */
    --twenty-four-px: 1.5rem;
    /* 25 */
    --twenty-five-px: 1.6rem;
    /* 26 */
    --twenty-six-px: 1.625rem;
    /* 28 */
    --twenty-eight-px: 1.8rem;
    /* 30 */
    --thirty-px: 1.875rem;
    /* 32 */
    --thirty-two-px: 2rem;
    /* 36 */
    --thirty-six-px: 2rem;
    /* 40 */
    --forty-px: 3rem;
    /* 44 */
    --forty-four-px: 3rem;
    /* 48 */
    --forty-eight-px: 3rem;
    /* 50 */
    --fifty-px: 3rem;
    /* 54 */
    --fifty-four-px: 3.375rem;
    /* 56 */
    --fifty-six-px: 4rem;
    /* 60 */
    --sixty-px: 3.75rem;
    /* 64 */
    --sixty-four-px: 4rem;
    /* 70 */
    --seventy-px: 4.375rem;
    /* 72 */
    --seventy-two-px: 5rem;
    /* 75 */
    --sevety-five-px: 5rem;
    /* 80 */
    --eighty-px: 5rem;
    /* 90 */
    --ninty-px: 6rem;
    /* 100 */
    --hundred-px: 6rem;
    /* colors */
    --black: black;
    --white: white;
    --sea-blue: #05668D;
    /* font-weight */
    --extra-bold: 800;
    --bold: 700;
    --semi-bold: 600;
    --medium: 500;
    --normal: 400;
    --thin: 300;
}

@font-face {
    font-family: "Arial normal";
    src: url("../assets/fonts/ARIAL.TTF") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Arial medium";
    src: url("../assets/fonts/ArialMdm.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Arial bold";
    src: url("../assets/fonts/ARIALBD\ 1.TTF") format("opentype");
    font-weight: normal;
    font-style: normal;
}





.page-width {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.primary-heading {
    font-family: Arial normal, sans-serif;
    /* 60px */
    font-size: clamp(24px, 4vw, 60px);
    /* white */
    color: var(--white);
}

.secondary-heading {
    font-family: Arial bold, sans-serif;
    /* 40px */
    font-size: clamp(20px, 4vw, 40px);
    /* black */
    color: var(--black);
}

.tertiary-heading {
    font-family: Arial bold, sans-serif;
    /* 32px */
    font-size: clamp(20px, 3.5vw, 32px);
    /* white */
    color: var(--white);
}

.tertiary-heading2 {
    font-family: Arial bold, sans-serif;
    /* 32px */
    font-size: clamp(20px, 3.5vw, 32px);
    /* #05668D */
    color: var(--sea-blue);
}

.primary-para {
    font-family: Arial normal, sans-serif;
    /* 20px */
    font-size: var(--twenty-px);
    /* white */
    color: var(--white);
}

.secondary-para {
    font-family: Arial normal, sans-serif;
    /* 24px */
    font-size: var(--twenty-four-px);
    /* black */
    color: var(--black);
}

.secondary-para2 {
    font-family: Arial normal, sans-serif;
    /* 24px */
    font-size: var(--twenty-four-px);
    /* white */
    color: var(--white);
}

.tertiary-para {
    font-family: Arial normal, sans-serif;
    /* 18px */
    font-size: var(--eighteen-px);
    /* black */
    color: var(--black);
}
.tertiary-para2 {
    font-family: Arial normal, sans-serif;
    /* 18px */
    font-size: var(--eighteen-px);
    /* white */
    color: var(--white);
}

.quaternary-para {
    font-family: Arial normal, sans-serif;
    /* 16px */
    font-size: var(--sixteen-px);
    /* white */
    color: var(--white);
}

p {
    margin-bottom: 0rem !important;
}

a {
    text-decoration: none !important;
}

/* hero section start */
.hero-bg {
    background-image: url("../assets/images/hero-bg-2.png");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 130vh;
}

.hero-cols {
    width: 60%;
}

.hero-h1 {
    padding-top: clamp(60px, 9vw, 200px);
    padding-bottom: 1rem;
}

.hero-curve {
    margin-top: -222px;
    position: absolute;
    margin-left: 40%;
}

.hero-p {
    max-width: 600px;
}

.hero-img {
    display: none;
}

/* hero section end */
/* about section start */
.about-cols {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 1rem;
    align-items: center;
}

.about-conntainer {
    padding: 5rem 0rem;
}

/* about section end */
/* what thor section start */
.what-card {
    background: #05668D;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
}

.what-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
}

.what-card-2 {
    background: #EEF8FA;
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

/* what thor section end */
/* who we section start */
.who-cols {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
}

.who-container {
    background: #EEF8FA;
    padding: 5rem 0rem;
    margin-top: 6rem;
}

/* who we section start */
/* what thor health section start */
.thor-cols {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 2rem;
}

.thor-container {
    padding: 6rem 0rem;
}

/* what thor health section end */
/* start section start */
.start-container{
    padding: 1rem 0rem;
}
.Btn {
    border: none;
    background: #05668D;
    border-radius: 0.7rem;
    padding: 0.5rem 1rem;
}

.start-cols {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 2rem;
}
.start-p{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
/* start section end */
/* footer */
.top-footer{
    background: #05668D;
    padding: 2rem 0rem;
}
.footer{
    background: #D4E9F6;
    padding: 1rem 0rem;
}
.sea-blue-listing li::marker{
    color: #05668D;
}
#backToTop {
  min-width: unset;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #05668D;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
}
#backToTop:hover {
  background-color: #A8A8A8;
}
#backToTop img {
  width: 25px;
  height: 25px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6349%) hue-rotate(36deg) brightness(99%) contrast(111%);
}
@media all and (max-width:992px) {

    .primary-para,
    .secondary-para,
    .secondary-para2 {
        font-size: 1.2rem;
    }

    /* hero section mq start */
    .hero-bg {
        background-image: none;
        background: #05668D;
        height: unset;
    }

    .hero-cols {
        width: 100%;
    }

    .hero-p {
        max-width: unset;
    }

    .hero-img {
        display: block;
    }

    /* hero section mq end */
    /* about section mq start */
    .about-cols {
        display: grid;
        grid-template-columns: auto;
        gap: 2rem;
    }

    .about-conntainer {
        padding: 2rem 0rem;
    }

    /* about section mq end */
    /* what thor section mq start */
    .what-cols {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .what-card {
        background: #05668D;
        border-radius: 1.5rem;
        padding: 2rem 1rem;
    }

    /* what thor section mq end */
    /* who we section mq start */
    .who-cols {
        display: grid;
        grid-template-columns: auto;
        gap: 2rem;
    }

    .who-container {
        background: #EEF8FA;
        padding: 2rem 0rem;
        margin-top: 2rem;
    }

    /* who we section mq start */
    /* what thor health section mq start */
    .thor-cols {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        gap: 2rem;
    }

    .thor-container {
        padding: 2rem 0rem;
    }

    /* what thor health section mq end */
    /* start section mq start */
    .start-cols {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    gap: 2rem;
}
    /* start section mq end */
}