@import url('https://fonts.googleapis.com/css2?family=Acme&family=Cuprum:wght@600&family=Montserrat:wght@300;600&family=Ubuntu+Mono:wght@700&family=Viga&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Viga', sans-serif;
}
:root {
    --main: #00abd6;
    --dark-main: #1a4e8a;
    --light-main: hsl(192, 100%, 42%, 0.07);
    --white: #ffffff;
    --black: #0000;
    --radius-image: 20px;
    --radius-input: 5px;
    --border-color: #efefef;
}
html {
    scroll-behavior: smooth;
}
body {
    padding: 0px;
    margin: 0px;
}
ul {
    list-style: none;
    padding: 0px;
}
a {
    text-decoration: none;
}
p,
h1 {
    font-weight: 500;
    margin: 5px 0px;
}
.w-100 {
    width: 100%;
}
/* img {
    border-radius: var(--radius-image);
} */
.container {
    width: 1200px;
    margin: auto;
}
.section {
    padding-top: 50px;
}
.grid3,
.grid9,
.grid3,
.grid3Custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
}
.grid3Custom {
    row-gap: 40px;
}
.grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
}
.grid21 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 100%;
    gap: 10px;
    align-items: center;
}
.grid12 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    width: 100%;
    gap: 10px;
    align-items: center;
}
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
}
.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 10px;
}
.ptb10 {
    padding: 10px 0px;
}
.btn {
    background-color: var(--main);
    padding: 10px 30px;
    border-radius: var(--radius-input);
    color: var(--white) !important;
    outline: none;
    border: 1px solid var(--main);
    cursor: pointer;
    transition: 0.5s;
    font-size: 16px;
}
.btnLight {
    background-color: var(--light-main);
    padding: 10px 30px;
    border-radius: var(--radius-input);
    color: var(--main);
    outline: none;
    border: 1px solid var(--main);
    cursor: pointer;
    transition: 0.5s;
}
.btn:hover {
    background-color: var(--white);
    color: var(--main) !important;
}
.column {
    display: flex;
    flex-direction: column;
}
input {
    padding: 10px;
    outline: none;
    border-radius: var(--radius-input);
    border: 1px solid var(--border-color);
}
select,
.PhoneInputCountryIcon--border {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.sectionWrapper {
    border-bottom: 1px solid var(--border-color);
}

.sectionWrapper p {
    padding: 20px 0px;
}

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.borderTop {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}
.errorMsg {
    background-color: indianred;
    color: var(--white);
    padding: 5px;
    border-radius: 5px;
    font-size: 15px;
}
.mainLoader div {
    margin: auto;
}
.mainLoader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}
.errorTxt {
    color: indianred;
    font-size: 13px;
    padding: 0px !important;
}
.w100 {
    width: 100% !important;
}
.w49 {
    width: 49%;
}
.inputWrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.inputWrapper label {
    font-size: 13px;
}
.swiper-wrapper {
    display: flex !important;
}
.cartIcon img {
    height: 30px;
    cursor: pointer;
}
.cartIcon {
    position: relative;
}
.cartIcon span {
    font-size: 12px;
    background-color: var(--main);
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: absolute;
    top: -8px;
    right: -10px;
    cursor: pointer;
    z-index: 999;
}
.startNow {
    position: fixed;
    bottom: 0;
    cursor: pointer;
    display: flex;
    z-index: 5;
    align-items: flex-start;
}
.cloud {
    position: relative;
    animation: fadeInOut 4s infinite;
}
.cloud img {
    height: 150px;
    width: 150px;
    position: absolute;
    top: -80px;
    left: -30px;
}

.text {
    font-family: Arial, sans-serif; /* font */
    font-size: 18px; /* font size */
    color: white;
    font-weight: bold;
    width: 100px;
    left: -10px;
    position: absolute;
    z-index: 1; /* place text above cloud extensions */
    animation: fadeInOut 4s infinite;
    text-align: center;
    bottom: -30px;
    text-transform: uppercase;
}

.cloud::after {
    content: '';

    height: 18px;
    width: 18px;
    position: absolute;
    background-color: var(--main); /* same as cloud background */

    border-radius: 50px; /* rounded corners */
    animation: fadeInOut 4s infinite;
}
.cloud::after {
    bottom: -55px; /* centered vertically */

    left: -40px;
}

.swiper-button-prev:after {
    background-color: hsl(192, 100%, 42%, 0.7) !important;
    color: white;
    font-size: 20px !important;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
.swiper-pagination-bullet-active {
    background: black !important;
}
.swiper-wrapper {
    margin-bottom: 20px !important;
}
.swiper-pagination {
    bottom: 0px !important;
}
.swiper-button-next:after {
    background-color: hsl(192, 100%, 42%, 0.7) !important;
    color: white;
    font-size: 20px !important;
    padding: 10px 15px;
    font-weight: bold;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);

    border-radius: 50%;
}

.swiper-button-next {
    right: 2% !important;
    top: 50% !important;
}

.swiper-button-prev {
    left: 2% !important;
    top: 50% !important;
}
.swiper-wrapper {
    align-items: center;
}
.radioOption input {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    z-index: 9;
    cursor: pointer;
}
.radioOption {
    position: relative;
}
.radioOption div {
    display: flex;
    align-items: center;
    gap: 5px;
}
.radioOption label {
    border: 1px solid #efefef;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}
input[type='radio']:checked + label {
    border: 1px solid #00abd6;
    color: #00abd6;
}

.radioOption img {
    width: 30px;
    height: 30px;
}
@keyframes fadeInOut {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@media (max-width: 1400px) {
    .container {
        width: 90%;
        padding: 0px 20px;
        box-sizing: border-box;
    }
    .section {
        padding-top: 50px;
    }
}
@media (max-width: 800px) {
    .container,
    .w49 {
        width: 100%;
    }
    .btn {
        padding: 10px 20px;
    }
    .grid2,
    .grid12,
    .grid3Custom {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    .grid4 {
        grid-template-columns: 1fr 1fr;
    }
    .lottie-container {
        width: 100px !important;
        height: 100px !important;
    }
    .cloud img {
        width: 80px;
        height: 80px;
        top: -50px;
    }
    .cloud::after {
        width: 10px;
        height: 10px;
        left: -30px;
        bottom: -30px;
    }
    .text {
        font-size: 12px;
        left: -22px;
        bottom: -10px;
        width: 60px;
        text-align: center;
    }
    .startNow {
        left: -10px;
    }
    .grid3Custom {
        row-gap: 20px;
    }
}
.swiper-container-horizontal > .swiper-scrollbar {
    display: none;
}
@media (max-width: 400px) {
    h1 {
        font-size: 25px;
        text-align: left;
    }
}
