/* Font Load */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

/* Basic Color Family */
:root {
    --primary: #726dd0;
    --primary-dark: #1c1878;
    --off-white: #ebf0f9;
    --stroke: #e5e5e5;
    --heading: 64px;
    --h1: 56px;
    --h2: 48px;
    --h3: 28px;
    --h4: 20px;
    --h5: 14px;
    --h6: 12px;
}

* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    background-color: var(--bg);
    font-family: "Roboto", sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(
        to right,
        var(--primary) 0,
        var(--primary-dark) 33%,
        var(--primary-dark) 66%,
        var(--primary) 100%
    );
}
body {
    background: transparent;
}
a {
    text-decoration: none;
    color: white;
}
header img {
    height: 200px;
    width: 200px;
    object-fit:cover;
    border-radius: 50%;
}
.section {
    padding: 96px 0;
}
.title {
    font-size: 32px;
    line-height: 150%;
}
.heading {
    font-size: 36px;
}
.ribbon {
    background: linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -webkit-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -moz-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
}
.ribbon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ribbon.jpg");
    background-size: contain;
    opacity: 0.1;
}
footer {
    position: relative;
}
footer .social {
    list-style: none;
    padding-inline-start: 0;
    text-align: center;
    margin: 10px 0;
    color: white;
}
footer .social li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}
.formBg {
    background-color: var(--primary-dark);
    color: white;
}
button[type="submit"]:hover,
button[type="submit"] {
    background: linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -webkit-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -moz-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    color: white;
}
.thankyou {
    filter: invert(1);
    height: 150px;
    margin-bottom: 1rem;
}

#imagePreview {
    height: 200px;
    width: 200px;
    object-fit: cover;
    margin: auto;
    display: flex;
    border-radius: 50%;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    background: linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -webkit-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    background: -moz-linear-gradient(47deg, #ef4559 0, #ee8219 100%);
    color: white;
}
.whatsapp-button {
    background-color: #25D366;
    border-radius: 5px;
    color: #ffffff !important;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 100%;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none !important;
}
#image {
    opacity: 0;
    visibility: hidden;
}
.btnPhoto {
    border-radius: 50%;
    position: absolute;
    bottom: 10%;
    right: 30%;
}
.enquiry p{
    font-size: 14px;
}
.copyright {
    font-size:10px;
}
@media (max-width: 767px) {
    .ribbon{
        text-wrap: balance;
    }
    .section {
        padding: 24px 0;
    }
    .title {
        font-size: 20px;
    }
    .heading {
        font-size: 22px;
    }
    header img {
        height: 150px !important;
        width: 150px !important;
        object-fit: scale-down;
    }
    .btnPhoto{
        right:20%;
    }
}
