@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');



/*---------------------------------------------------- Color------------------------- ------------*/
:root {

    --bg_color: #fff;
    --black_one: #262626;
    --primary_blue: #0C6CA7;
    --primary_blue_light: #00A0E3;
    --yellow: #FFB700;
    --black_secondary: #717171;


}

/*---------------------------------------------------- Text Selection------------------------- ------------*/
::-moz-selection {
    /* Code for Firefox */
    background-color: var(--primary_blue);
    color: var(--bg_color);
}

::selection {
    background-color: var(--primary_blue);
    color: var(--bg_color);
}

/*---------------------------------------------------- Universal selector ------------------------- ------------*/
html {
    scroll-behavior: smooth;
}

body {


    background-color: var(--bg_color);
}

* {
    padding: 0;
    margin: 0;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    color: var(--black_one);
}



a {

    text-decoration: none !important;

    font-family: "Inter", sans-serif;

}

button {
    cursor: pointer;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Inter", sans-serif;
    background-color: transparent;
    color: var(--bg_color);
    background-color: var(--primary_blue);
    border: none;
    padding: 16px 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    column-gap: 4px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: var(--primary_blue_light);
}




.conSection {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 1300px;
}

.scrollToReveal,
.scrollToRevealRight,
.scrollToRevealLeft,
.scrollToRevealTop {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
    will-change: transform, opacity;
}

/* Specific directions */
.scrollToRevealRight {
    transform: translateX(30px);
}

.scrollToRevealLeft {
    transform: translateX(-30px);
}

.scrollToRevealTop {
    transform: translateY(-30px);
}

/* Reveal active state */
.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}


/*---------------------------------------------------- Loading section ------------------------- ------------*/
.loadingSec {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.777);
    /* semi-transparent */
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* for Safari support */
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loadingSec.hide {
    opacity: 0;
    pointer-events: none;
}

.loadingCon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loadingSec .logo img {
    height: 10rem;
    object-fit: contain;
    margin-bottom: 0;
}

/* From Uiverse.io by kerolos23 */
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: auto;
    margin-left: 30px;
}

.loader div {
    position: absolute;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary_blue);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loader div:nth-child(1) {
    left: 8px;
    animation: flip1 0.6s infinite;
}

.loader div:nth-child(2) {
    left: 8px;
    animation: flip2 0.6s infinite;
}

.loader div:nth-child(3) {
    left: 32px;
    animation: flip2 0.6s infinite;
}

.loader div:nth-child(4) {
    left: 56px;
    animation: flip3 0.6s infinite;
}

@keyframes flip1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes flip3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes flip2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}




@media (max-width: 750px) {
    .loginCard {
        height: 100vh;
        border-radius: 0;
    }

    .loginCard .card-body {

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wrapper-page {
        margin: 0;
    }

    .auth-body-bg {
        height: 100vh;
    }

    .loadingSec .logo img {
        height: 5rem;
    }

}


/* header */

header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

.header {
    display: grid;
    grid-template-columns: 2fr 8fr 2fr;
    align-items: center;
    gap: 40px;
    height: 80px;

    position: relative;
}


.header .logo img {
    height: 100px;
    position: absolute;
    left: 0;
    top: 10px;
}

.header .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
}

.header .navbar a {
    cursor: pointer;
    font-size: 15px;
    color: var(--black_one);
}

.header .navbar a:hover {
    color: var(--primary_blue_light);
}

.header .headRight {
    display: flex;
    justify-content: end;
}



.header .headRight a button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .headRight a button img {
    height: 20px;
    margin-bottom: -5px;
}

/* hero */

.heroSection {
    padding-top: 148px;
}

.heroCon {
    width: calc(100% - 96px);
    border-radius: 36px;
    background-color: var(--primary_blue);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 84px 48px 64px;
    position: relative;
}

.heroCon .heroLeft {
    position: relative;
    z-index: 5;
}

.heroCon .heroLeft h2 {
    font-size: 48px;
    line-height: 45px;
    color: var(--bg_color);
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.heroCon .heroLeft h2 span {
    color: var(--yellow);
    font-family: "Raleway", sans-serif;
}

.heroCon .heroLeft p {
    font-size: 18px;
    line-height: 23px;
    color: var(--bg_color);
    margin: 36px 0 32px;
}

.heroCon .heroLeft button {
    border-radius: 100px;
    background-color: var(--bg_color);
    color: var(--primary_blue);
}

.heroCon .heroRight {
    display: flex;
    justify-content: end;
    height: 300px;
    position: relative;
    z-index: 5;
}

.heroCon .heroRight img {
    height: 500px;
    position: absolute;
    right: 0;
    top: -142px;

}


.heroCon .cercleBorder {
    width: 25%;
    height: 100%;
    border-left: 25px solid var(--bg_color);
    background-color: var(--yellow);
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-right-radius: 36px;
    border-top-right-radius: 36px;

}



.heroCon .cercleBorder .heroPattern2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.heroCon .heropettarn1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
}

/* step */
.stepSec {
    padding-top: 100px;
}

.stepGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.stepGrid .stepLeft h2 {
    font-size: 48px;
    color: var(--primary_blue_light);
    line-height: 45px;
    margin-bottom: 30px;
    font-family: "Raleway", sans-serif;
}

.stepGrid .stepLeft h2 span {
    display: block;
    color: var(--yellow);
    font-family: "Raleway", sans-serif;
}

.stepGrid .stepLeft p {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.stepGrid .stepLeft p img {
    height: 48px;
}

.stepGrid .stepRight {
    display: flex;
    justify-content: end;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background-color: var(--yellow);
}


.stepGrid .stepRight img {
    height: 500px;
    position: relative;
    z-index: 2;
}

.stepGrid .stepRight img.stapPattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* offer */
.offerSec {
    padding-top: 100px;
}

.offerSec h2 {
    font-size: 48px;
    color: var(--primary_blue_light);
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.offerSec h2 span {

    color: var(--yellow);
    font-family: "Raleway", sans-serif;
}

.offerCon {
    width: 100%;
}

.offerCon img {
    width: 100%;
    object-fit: contain;
}


/* media */
.medeaSec {
    padding-top: 100px;

}

.medeaSec h2 {
    font-size: 48px;
    color: var(--primary_blue_light);
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.medeaSec h2 span {
    color: var(--yellow);
    font-family: "Raleway", sans-serif;
}

.videoGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.videoGrid div {
    width: 100%;
}


.videoGrid div iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}


/* contact */

.contactSec {
    padding-top: 100px;
}

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contactInfo h5 {
    color: var(--primary_blue_light);
    text-transform: uppercase;
}

.contactInfo h2 {
    font-size: 48px;
    color: var(--yellow);
    line-height: 45px;
    margin: 14px 0 28px;
    font-family: "Raleway", sans-serif;
}

.contactInfo h2 span {
    color: var(--primary_blue_light);
    font-family: "Raleway", sans-serif;
}

.contactInfo p {
    margin-bottom: 36px;
}

.contactInfoItem {
    display: flex;
    align-items: start;
    gap: 30px;
}

.contactInfoItem .iconBox {
    background-color: var(--yellow);
    border-radius: 10px;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactInfoItem .iconBox img {
    height: 20px;
}

.contactInfoItem h3 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}

.contactInfoItem p {
    font-size: 14px;
}

/* download */
.downloadSec {
    padding-top: 148px;
}

.downloadGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.downloadLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--primary_blue_light);
    height: calc(100vh - 148px);
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.downloadLeft h4 {
    color: var(--bg_color);
    margin-bottom: 20px;
    font-size: 22px;
}

.downloadLeft #qrImage {
    width: 280px;
    background-color: var(--bg_color);
    padding: 16px;
    border-radius: 10px;
}

.downloadLeft span {
    display: block;
    cursor: pointer;
    margin-top: 20px;
    color: var(--bg_color);
    font-weight: 600;
}

.downloadLeft span img {
    height: 20px;
    margin-left: 5px;
    margin-bottom: -5px;
}

.downloadGrid .downloadRight h3 {
    font-size: 32px;
    font-family: "Raleway", sans-serif;
}

.downloadGrid .downloadRight h5 {
    margin: 16px 0;
    font-size: 16px;
    font-weight: 500;
}

.downloadRight .downloadCheckGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.downloadRight .downloadCheckGrid p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.downloadRight .downloadCheckGrid p img {
    height: 36px;
}

.downloadRight button {
    margin-top: 54px;
    background-color: var(--yellow);
}

.downloadRight button img {
    height: 25px;
    margin-right: 5px;
}

.contactForm {
    width: calc(100% - 80px);
    background-color: var(--bg_color);
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inputCon {
    margin-bottom: 16px;
}

.inputCon label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.inputCon input {
    border: 1px solid #ddd;
    background-color: #ededed;
    border-radius: 5px;
    padding: 10px 16px;
    width: calc(100% - 32px);
}

.inputCon textarea {
    border: 1px solid #ddd;
    background-color: #ededed;
    border-radius: 5px;
    padding: 10px 16px;
    width: calc(100% - 32px);
}

.inputCon input:focus,
.inputCon textarea:focus {
    outline: none;
    border-color: var(--primary_blue_light);
    background-color: var(--bg_color);
}

.contactForm button {
    width: 100%;
    display: block;
    align-items: center;
}

footer {
    background-color: var(--black_one);
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    margin-top: 150px;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

footer p {

    color: var(--bg_color);
}

footer p span {
    color: var(--bg_color);
}
footer a {
    color: var(--yellow);
    font-weight: 600;
}