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

:root {
    --primary-color: #393186;
    --seconday-color: #019fe2;
    --header-link-color: #777;
    --text-color: #777;
    --heading-color: #333;
}

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

body {
    font-family: "Work Sans", sans-serif;
}

h1,
h2,
h3 {
    line-height: 1.2em;
    color: var(--heading-color);
}

p {
    color: var(--text-color);
    line-height: 1.6em;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-headline {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    font-weight: bold;

    margin-bottom: 0px;
}

.main-heading {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 400;
}

header {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    box-shadow: 0px 2px 5px 5px rgb(57, 49, 134, 0.1);
    z-index: 9999;
}

.top-header {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-color);
}

.top-contact-links ul li,
.top-social-links ul li {
    display: inline-block;
}

.top-contact-links ul li a,
.top-social-links ul li a {
    color: #212121;
}

.top-contact-links ul li {
    margin-right: 8px;
}

.top-contact-links ul li a i {
    color: var(--primary-color);
    margin-right: 6px;
}

.top-social-links ul li a i {
    color: var(--primary-color);
}

.top-social-links ul li {
    margin-left: 8px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    position: relative;
}

.fa-bars {
    font-size: 1.7em;
}

.nav-link {
    padding: 25px 20px !important;
    color: #000 !important;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link ul.dropdown-menu {
    padding: 0 !important;
    margin: 0 !important;
}

/* Banner  */
.banner {
    position: relative;
    height: 750px;
    border-bottom: 1px solid var(--primary-color);
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    top: 58% !important;
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 3px;
    border: 1px solid var(--primary-color);
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
    font-size: 18px;
    color: var(--primary-color);
}

section.about {
    padding: 65px 0;
}

.about p {
    font-size: 16px;
}

.about img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

section.display {
    padding: 40px 0;
}

.single-banner--hoverborder {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.single-banner--hoverborder .banner-link {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-banner--hoverborder::after {
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    visibility: hidden;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    content: "";
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    border: 1px solid #ffffff;
    background-color: transparent;
}

.single-banner--hoverborder:hover::after {
    visibility: visible;
    opacity: 1;
}

.single-banner--hoverborder img {
    width: 100%;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.single-banner--hoverborder:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.our-products {
    padding: 0 0 60px 0;
}

.our-products .category-name {
    margin-bottom: 25px;
}

.our-products .category-name h3 {
    font-size: 22px;
}

.theme-btn {
    background-color: var(--primary-color);
    border-radius: 0px;
    padding: 10px 15px;
}

.theme-btn a {
    font-size: 18px;
    color: white;
}

.dropdown ul.dropdown-menu {
    padding: 0% !important;
    text-align: center !important;
    border: 0;
    border-radius: 0;
}

.dropdown ul.dropdown-menu li a {
    font-size: 16px !important;
    padding: 10px 0;
    color: #000;
    font-weight: 500;
}

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.testimonial {
    padding: 60px 0;
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--primary-color);
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.wesupport {
    padding-bottom: 60px;
    background-color: #fcfbfb;
}

footer {
    border-top: 1px solid #39318638;
    padding: 60px 0;
    position: relative;
    background: url(../images/footerbackground.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

footer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

footer .company-image img {
    height: 90px;
    margin-bottom: 25px;
}

.useful-links li,
.useful-links1 li {
    margin-bottom: 8px;
}

.useful-links1 li a i,
.useful-links li a i {
    color: var(--primary-color);
    font-size: 14px;
}

.useful-links1 li a,
.useful-links li a {
    color: var(--text-color);
}

.footer-heading h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    color: white;
}

.footer-bottom {
    padding: 15px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-social-links ul li a i {
    font-size: 30px;
}

@media screen and (max-width: 320px) {
    .top-contact-links {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .top-header {
        border-bottom: 1px solid var(--primary-color);
    }

    .top-social-links {
        margin: 10px 0;
    }
    
   

    .banner {
        height: 240px;
        margin-top: 150px;
        border-top: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
    }

    .banner .swiper-slide {
        background-size: contain !important;
        background-repeat: no-repeat !important;
    }

    .dropdown ul.dropdown-menu {
        padding: 0% !important;
        text-align: center !important;
        border: 0;
        background-color: transparent !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .nav-link {
        text-align: center;
    }

    section.about {
        padding: 0;
    }

    .about img {
        height: 200px;
    }

    .our-products {
        padding: 40px 0 0;
    }

    .main-heading {
        font-size: 27px;
    }

    #customers-testimonials .item {
        padding: 20px;
    }

    .testimonial {
        padding: 60px 0;
    }

    .wesupport {
        margin: 40px 0 0;
        padding: 0;
    }

    footer {
        padding: 40px 0;
    }
}

.about-us-image {
    position: relative;
}

.about-us-image .box {
    position: absolute;
    top: -7%;
    left: -5%;
    height: 100%;
    width: 100%;

    background-color: #393186ad;
}

.about-us-image img {
    z-index: 1;
    position: relative;
}

/*Contact Page css start*/
.inner-page-banner {
    position: relative;
    background: url("../images/contact.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inner-page-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #0000008a 30%, transparent 100%);
}

.inner-page-banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    min-height: 450px;
}

.inner-page-banner-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
    margin: 0;
}

.inner-page-banner-content p {
    color: white;
}

.contact-info-container,
.about-info-container {
    padding: 80px 0;
    background: url("../images/contact\ bg.png") no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
}

.contact-info-container::before,
.about-info-container::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.contact-info-container .card-wrapper {
    position: relative;
}

.contact-info-container .card {
    background: transparent;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.contact-info-container .card .card-icon i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-container .card .card-info h4 {
    font-size: 20px;
    text-transform: uppercase;
}

.contact-info-container .card .card-info p a {
    color: var(--primary-color);
}

.contact-form {
    position: relative;
    background-color: #393186db;
    padding: 60px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.contact-form .description {
    color: white;
}

.contact-form form div input,
.contact-form form div textarea {
    border: none;
    border-radius: 0;
}

.contact-form .submit-button-wrapper input {
    padding: 10px 20px;
    background: transparent;
    color: white;
    border: 2px solid white;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
}

.mapouter iframe {
    height: 350px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 350px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .navbar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.5rem;
        padding-left: 10px;
        padding-bottom: 0.5rem;
        padding-right: 10px;
    }

    .contact-info-container,
    .about-info-container {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .mapouter {
        position: relative;
        text-align: right;
        height: 200px;
        width: 100%;
    }

    .mapouter iframe {
        height: 200px;
    }

    .gmap_canvas {
        overflow: hidden;
        background: none !important;
        height: 200px;
        width: 100%;
    }
}

/*Contact Page css End*/

/*About Page css Start*/
.about-info-container .container {
    position: relative;
}

.about-us-content .main-heading {
    margin-bottom: 10px;
    font-size: 28px;
}

.about-extra-content {
    background: #f1f1f17e;
    padding: 40px;
    border-radius: 10px;
}

.clientSwiper .swiper-slide {
    display: flex;
    padding: 40px 0 60px;
    justify-content: center;
}

.clientSwiper .swiper-slide img {
    height: 120px;
    border: 2px solid #ccc;
}

@media screen and (max-width: 480px) {
    .about-info-container {
        text-align: center;
    }

    .about-extra-content {
        padding: 30px;
        text-align: center;
    }

    .inner-page-banner {
        height: 360px;
    }

    .inner-page-banner-content {
        padding: 180px 0 35px;
        height: 100% !important;
        min-height: 371.73px !important;
    }

    .royal-page-banner,
    .opera-page-banner,
    .shine-page-banner {
        background-size: cover !important;
        background-position-x: 100% !important;
        background-repeat: no-repeat !important;
    }

    .inner-page-banner-content h1 {
        font-size: 1.8rem;
    }
}

/*About Page css End*/

/*Shine Page css Start*/
.bar {
    padding: 15px 0;
    border-bottom: 1px solid #39318654;
}

.bar p {
    margin: 0;
}

.bar p a {
    color: #212121;
    font-size: 14px;
}

.bar p span {
    font-weight: 500;
    color: var(--primary-color);
}

.product-page-catalogue-button a {
    color: white;
}

/* 
#gallery {
  padding-top: 40px;
}
@media screen and (min-width: 991px) {
  #gallery {
    padding: 60px 30px 0 30px;
  }
} */
.img-wrapper {
    position: relative;
    margin-top: 15px;
}

.img-wrapper img {
    width: 100%;
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
}

@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

/*Shine Page css End*/

/*back to Top css Start*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 9px 15px;
    border-radius: 50%;
    font-size: 18px;
}

#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}

/*back to Top css End*/

/*PRELOADING------------ */
/* Loader Styles start here */
.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #f1faee;
    --outer-line-color: #a8dadc;
    --middle-line-color: #457b9d;
    --inner-line-color: #1d3557;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    /*   transform: translate(-50%, -50%); */
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
    left: 0;
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.6s 1s ease-out;
}

.stats .fa,
.stats .fa-solid {
    color: #393186d7;
    font-size: 48px;
}

.counting {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
}

.team {
    margin: 40px;
}

.team-member {
    margin: 15px 0;
    padding: 0;
}

.team-member figure {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
}

.team-member p {
    font-weight: 800;
    letter-spacing: 0.04em;
}

.team-member h4,
.team-member p {
    text-align: center;
}

.team-member figure img {
    min-width: 100%;
    height: 340px;
}

.team-member figcaption p {
    font-size: 16px;
    color: white;
}

.team-member figcaption ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member figcaption .teamIcons {
    color: white;
    font-size: 18px;
}

.team-member figcaption ul {
    visibility: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.team-member figcaption ul li {
    display: inline-block;
    padding: 10px;
}

.team-member h4 {
    margin: 10px 0 0;
    padding: 0;
}

.team-member figcaption {
    padding: 50px;
    color: transparent;
    background-color: transparent;
    position: absolute;
    z-index: 996;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-member figure:hover figcaption {
    visibility: visible;
    color: #fff;
    background: #393186d1;
    /* Primary color, can be changed via colors.css */

    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-member figure:hover figcaption ul {
    visibility: visible;
}

.team-member figure:hover figcaption ul li a:hover {
    color: rgba(49, 49, 49, 0.97);
}

.team-member figure img {
    -webkit-transform: scale(1) rotate(0) translateY(0);
    -moz-transform: scale(1) rotate(0) translateY(0);
    -o-transform: scale(1) rotate(0) translateY(0);
    -ms-transform: scale(1) rotate(0) translateY(0);
    transform: scale(1) rotate(0) translateY(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team-member figure:hover img {
    -webkit-transform: scale(1.1) rotate(1deg) translateY(12px);
    -moz-transform: scale(1.1) rotate(1deg) translateY(12px);
    -o-transform: scale(1.1) rotate(1deg) translateY(12px);
    -ms-transform: scale(1.1) rotate(1deg) translateY(12px);
    transform: scale(1.1) rotate(1deg) translateY(12px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.enquiryform input,
.enquiryform select,
.enquiryform 
textarea{
    border: none !important;
    outline: none !important;
    border-radius: 0 !important;
    
    border-bottom: 1px solid var(--primary-color) !important;
}
.enquiryform label{
    font-weight: 500 !important;
}
.enquiryform 
textarea{
    
    resize: none;
}

input:focus,input:focus-visible,input:focus-within,
select:focus,select:focus-visible,select:focus-within,
textarea:focus,textarea:focus-visible,textarea:focus-within

{   outline: none !important;
    box-shadow:0 0 0 0 transparent !important ;
    border-bottom: 1px solid var(--primary-color) !important;
}

/* @media screen and (max-width:480px) {
    .enquiryform .container .row .leftcol{
 order: 2;
    }
 
} */