@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

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

.pd-50 {
    padding: 50px 0px;
}

.pt-50 {
    padding-top: 50px;
}
.pb-50{
    padding-bottom:50px;
}
.banner-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
}

.cardcategory {
    width: 100%;
    /*height: 175px;*/
    transition: .3s ease-in-out;
    position: relative;
}

.cardcatbody {
    height: 50px;
    /* border-bottom-right-radius: 30px; */
    /* background-color: #ffffff; */
    /* box-shadow: 2px 4px 6px gainsboro; */
    padding: 9px 1px;
    text-align: center;
    transition: all 0.5s ease-in-out 0s;
    width: 100%;
}
.cardcategory:hover img
{
    opacity: 9;
        border-radius: 15px;
    margin-top: -5px;
    border: 3px solid #fff;
    transition-duration: .3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.cardcategory:hover .cardcatbody h4
{
    color: #304f8c;
    font-size: 18px;
    font-weight: 700;
}
.cardcatbody h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0px;
}

.cardcatbody a {
    text-decoration: none;
    color: #1b1b1bee;
}

.cardcategory img {
       width: 100%;
    /* height: 210px; */
    border-radius: 15px;
    border: 3px solid #fdfbff;
    /* border-radius: 50%; */
    opacity: 1;
    transition: all 0.5s ease-in-out 0s;
}

.cardcategory:hover {
    transform: translateY(-10px);
}

.gallerypage {
    padding: 70px 0px 30px 0px;
}

.gallerypage .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.gallerypage .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.gallerypage .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

.gallerypage .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-desc p {
    margin-bottom: 0px;
    padding: 10px 0px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    color: #304f8c;
}

#contact {
    background-color: #6a9ac4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactpage .contact-box {
    width: clamp(100px, 90%, 1000px);
    margin: 80px 50px 10px 50px;
    display: flex;
    flex-wrap: wrap;
}

.contactpage .contact-links, .contactpage .contact-form-wrapper {
    width: 50%;
    padding: 8% 5% 10% 5%;
}


.contactpage .contact-links {
    background-color: #1f2e43;
    background:
        radial-gradient(circle at 55% 92%, #426691 0 12%, transparent 12.2%),
        radial-gradient(circle at 94% 72%, #426691 0 10%, transparent 10.2%),
        radial-gradient(circle at 20% max(78%, 350px), #263a53 0 7%, transparent 7.2%),
        radial-gradient(circle at 0% 0%, #263a53 0 40%, transparent 40.2%),
        #1f2e43;
    border-radius: 10px 0 0 10px;
}

.contactpage .contact-form-wrapper {
    background-color: #ffffff8f;
    border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 800px) {
    .contactpage .contact-links, .contactpage .contact-form-wrapper {
        width: 100%;
    }

    .contactpage .contact-links {
        border-radius: 10px 10px 0 0;
    }

    .contactpage .contact-form-wrapper {
        border-radius: 0 0 10px 10px;
    }
}

@media only screen and (max-width: 400px) {
    .contactpage .contact-box {
        width: 95%;
        margin: 8% 5%;
    }
}

.contactpage h2 {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    font-size: clamp(30px, 6vw, 60px);
    letter-spacing: 2px;
    text-align: center;
    transform: scale(.95, 1);
}

.contactpage .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
}

.contactpage .link {
    margin: 10px;
    cursor: pointer;
}

.contactpage img {
    width: 45px;
    height: 45px;
    filter:
        hue-rotate(220deg) drop-shadow(2px 4px 4px #0006);
    transition: 0.2s;
    user-select: none;
}

.contactpage img:hover {
    transform: scale(1.1, 1.1);
}

.contactpage img:active {
    transform: scale(1.1, 1.1);
    filter:
        hue-rotate(220deg) drop-shadow(2px 4px 4px #222) sepia(0.3);
}

.contactpage .form-item {
    position: relative;
}

.contactpage label, .contactpage input, .contactpage textarea {
    font-family: 'Poppins', sans-serif;
}

.contactpage label {
    position: absolute;
    top: 10px;
    left: 2%;
    color: #999;
    font-size: clamp(14px, 1.5vw, 18px);
    pointer-events: none;
    user-select: none;
}

.contactpage input, .contactpage textarea {
    width: 100%;
    outline: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 12px;
    font-size: clamp(15px, 1.5vw, 18px);
}

.contactpage input:focus+label,
.contactpage input:valid+label,
.contactpage textarea:focus+label,
.contactpage textarea:valid+label {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #777;
    top: -20px;
    transition: all .225s ease;
}

.contactpage .submit-btn {
    background-color: #fd917e;
    filter: drop-shadow(2px 2px 3px #0003);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 1.6vw, 18px);
    display: block;
    padding: 12px 20px;
    margin: 2px auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
}

.contactpage .submit-btn:hover {
    transform: scale(1.1, 1.1);
}

.contactpage .submit-btn:active {
    transform: scale(1.1, 1.1);
    filter: sepia(0.5);
}

@media only screen and (max-width: 800px) {
    .contactpage h2 {
        font-size: clamp(40px, 10vw, 60px);
    }
}

@media only screen and (max-width: 400px) {
    .contactpage h2 {
        font-size: clamp(30px, 12vw, 60px);
    }

    .contactpage .links {
        padding-top: 30px;
    }

    .contactpage img {
        width: 38px;
        height: 38px;
    }
}

.breadcrumbcat {
    background-image: url('https://cdn.togetherv.com/dreamy-balloon-garland-white-backdrop-sub2_1655536606.webp') !important;
    width: 100%;
    height: 200px;
    margin-top: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.breadcrumbcat h1 {
    color: white;
    margin: 0px;
    background: #304f8c;
    padding: 10px 10px;
    font-family: 'Kaushan Script';
}
.breadcrumbcat span{
    font-size: 20px;
    font-weight: 700;
    color: #304f8c;
    letter-spacing: 1px;
}
.details-img {
    border: 1px solid gainsboro;
    overflow: hidden;
}

.details-img img {
    width: 100%;
    height: 600px;
    object-fit: none;
    padding: 10px;
    transition: .4s ease-in-out;
}

.details-img img:hover {
    transform: scale(1.2);
}

.details-content {
    border: 1px solid gainsboro;
    position: -webkit-sticky;
    padding: 10px;
    border-radius: 4px;
    background-color: #f4f4f4;
}

.details-content .titleproduct {
    font-size: 24px;
    color: #304f8c;
    font-weight: 600;
}
.details-content h2{
    font-size: 24px;
}

.details-content .shortDesc{
    border-bottom: 1px solid gainsboro;
    padding-bottom: 20px;
}
.callbtnfoot{
    position: fixed;
    bottom: 30px;
    left: 0px;
    background-color: #304f8c;
    padding: 10px 20px 10px 10px;
    margin: 0px;
    z-index: 9999;
    box-shadow: 2px 4px 5px #8c8c8c;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Kaushan Script';
}
.whatsappbtnoot{
    position: fixed;
    bottom: 30px;
    right: 0px;
    background-color: green;
    padding: 10px 20px 10px 10px;
    margin: 0px;
    z-index: 9999;
    box-shadow: 2px 4px 5px #8c8c8c;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Kaushan Script';
}
.callbtnfoot a, .whatsappbtnoot a{
    color: white;
}
.centered {
    position: absolute;
    top: 43%;
    display: none;
    left: 50%;
    transform: translate(-50%, -50%);
}
.t-bq-wrapper.t-bq-wrapper-boxed {
    max-width: 60%;
    margin: 0 auto;
}
.t-bq-quote-jasper {
    position: relative;
    box-shadow: 2px 2px 25px #cecece;
    border-radius: 10px;
    margin-bottom: 10px;
}
.t-bq-quote-jasper .t-bq-quote-jasper-pattern {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 80px;
    align-items: center;
    justify-content: flex-start;
    background: #7a4897;
    border-radius: 10px 10px 0 0;
}
.t-bq-quote-jasper .t-bq-quote-jasper-pattern .t-bq-quote-jasper-qmark {
    flex-basis: 100px;
    font-family: Garamond, Georgia, "Times New Roman", serif;
    font-size: 60pt;
    color: #fff;
    text-align: center;
    height: 80px;
    line-height: 90pt;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.t-bq-quote-jasper .t-bq-quote-jasper-userpic {
    position: absolute;
    top: 45px;
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background: url('../images/testii.webp') center center no-repeat;
    background-size: cover;
    border-radius: 50%;
}
.t-bq-quote-jasper .t-bq-quote-jasper-base {
    flex-basis: calc(100% - 80px);
    background: #ffffff;
    padding: 60px 30px;
    font-size: 11pt;
    line-height: 1.62em;
    border-radius: 0 0 10px 10px;
}
blockquote {
    padding: 0;
    margin: 0;
}
.t-bq-quote-jasper .t-bq-quote-jasper-meta {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 2px dotted #777777;
    text-align: center;
}
.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 10pt;
    font-weight: bold;
}
.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author, .t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-source {
    color: #777777;
}
.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author cite {
    font-style: normal;
}
.sidebllon {
    position: absolute;
    bottom: 60%;
    left: 10%;
    z-index: -1;
    width: 350px;
    transform: rotate(336deg);
}
.fix-footer {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 5px 0;
    z-index: 9999;
}
.fix-footer p a span {
    float: left;
    width: 100%;
    color: #000;
}
.fix-footer p {
    float: left;
    width: 50%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.fix-footer p a {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}
.fix-footer img {
    width: 40px;
}
@media only screen and (max-width: 600px) {
    .bannersection{
        margin-top:50px !important;

    }
    .gallerypage .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
    .cardcategory{
         height: auto;
    }
    .cardcategory img{
        height: 160px;
    }
    .cardcatbody h4 {
        font-size: inherit;
    }
    .details-img img{
        height: 300px;
        object-fit: cover;
    }
    .fix-footer {
        display: block;
    }
    .callbtnfoot, .whatsappbtnoot{
        display:none;
    }
}

section.select-service {
    background: lavender;
}


.owl-dots
{
    display: none;
}