@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary-font: "Montserrat", sans-serif;
    --secondry-font: "Montserrat", sans-serif;
    --primary-color: #0777af;
    --secondary-color: #04a1c9;
    --third-color: #333333;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* header section style start */

.header-section {}

.header-section .topheader {
    background: var(--primary-color);
    padding: 10px;
}

.header-section .topheader .topheaderbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section .topheader .topheaderbox .topheaderleft {}

.header-section .topheader .topheaderbox .topheaderleft ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-section .topheader .topheaderbox .topheaderleft ul li {
    display: inline-flex;
    gap: 10px;
}

.header-section .topheader .topheaderbox .topheaderleft ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
}

.header-section .topheader .topheaderbox .topheaderleft ul li a i {}

.header-section .topheader .topheaderbox .topheaderright {}

.header-section .topheader .topheaderbox .topheaderright .social-list {}

.header-section .topheader .topheaderbox .topheaderright .social-list li {}

.header-section .topheader .topheaderbox .topheaderright .social-list li a {}

.header-section .mainheader {
    padding: 0px 0px;
}

.header-section .mainheader .headerlogo {
    width: 50%;
}
.header-section .mainheader .headerlogo.headerlogoright {
    width: 80%;
}

.header-section .mainheader .headerlogo img {
    width: 100%;
}

.header-section .mainheader .headermainmenu {}

.header-section .mainheader .headermainmenu ul {
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
}

.header-section .mainheader .headermainmenu ul li {}

.header-section .mainheader .headermainmenu ul li a {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--primary-font);
    padding: 40px 10px;
    text-transform: capitalize;
}

/* header section style start */

/* mobile header section style start */

.mobileheader {
    display: none;
}

.mobileheader .mobileheaderbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobileheader .mobileheaderbox .logoimg {
    width: 20%;
}

.mobileheader .mobileheaderbox .logoimg img {
    width: 100%;
}

.mobileheader .mobileheaderbox .mobile-toogle-icon {}

.mobileheader .mobileheaderbox .mobile-toogle-icon svg {
    width: 40px;
}
.mobileheader .mobileheaderbox .mobile-toogle-icon svg path {
    stroke: var(--primary-color);
}

.mobilesidebar {
    position: fixed;
    right: 0;
    top: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    background: #0777af3b;
    transition: all .3s ease-in-out;
}

.mobilesidebar.show {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.mobilesidebar .mobilesidebarbox {
    background: var(--primary-color);
    width: 80%;
    height: 100%;
}

.mobilesidebar .mobilesidebarbox .mobilesidebox {
    padding: 0;
    position: relative;
}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidebarlogo {
    background: #fff;
}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidebarlogo img {
    width: 40%;
}

.mobilesidebar .mobilesidebarbox .mobilesidebox .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: var(--primary-color);
}

.mobilesidebar .mobilesidebarbox .mobilesidebox .close-btn i {}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidemenu {}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidemenu ul {
    margin: 10px 0;
}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidemenu ul li {}

.mobilesidebar .mobilesidebarbox .mobilesidebox .mobilesidemenu ul li a {
    font-size: 16px;
    color: #fff;
    padding: 5px 15px;
}

/* mobile header section style end */

/* social list style start */

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}
.social-list li a.facebook {
    background: #0866ff;
}
.social-list li a.instagram {
    background: #fe0b84;
}
.social-list li a.twitter {
    background: #000000;
}
.social-list li a.linkedin {
    background: #0077b5;
}
.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
    transform: translateY(-5px);
}

/* social list style end */

/* banner section style start */

.banner-section {
}

.banner-section .bannerimg {}

.banner-section .bannerimg img {
    width: 100%;
}

/* banner section style end */

/* about us section style start */

.aboutussection {
    padding: 40px 0px;
}

.aboutussection .abouthead {
    padding: 10px 0px;
}

.aboutussection .abouthead h2 {font-weight: 700;text-transform: uppercase;color: var(--primary-color);margin: 0 0 30px;display: flex;align-items: center;gap: 10px;font-size: 22px;position: relative;width: max-content;}
.aboutussection .abouthead h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #0777af26;
    border-radius: 0 50px 50px 0;
    width: 80%;
    height: 100%;
    z-index: -1;
}
.aboutussection .abouthead p {
    font-size: 16px;
    padding: 0 0 10px;
    text-align: justify;
    font-weight: 400;
    color: #000;
    font-family: var(--primary-font);
}

.aboutussection .aboutimg {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.aboutussection .aboutimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about us section style end */

/* service section style start */

.servicesection {
    padding: 40px 0px;
    border-top: 1px solid #eee;
}

.servicesection .headingbox {}

.headingbox h2 {font-weight: 700;text-transform: uppercase;color: var(--primary-color);margin: 0 0 30px;display: flex;align-items: center;gap: 10px;font-size: 22px;position: relative;width: max-content;}

.headingbox h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #0777af26;
    border-radius: 0 50px 50px 0;
    width: 80%;
    height: 100%;
    z-index: -1;
}

.servicesection .servicebox {
    background: #e4f6ff;
    padding: 10px;
    border-radius: 20px;
    margin: 10px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.servicesection .servicebox p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.servicesection .servicebox img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.servicesection .servicebox .servicecontent {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0px 4px;
}

.servicesection .servicebox a {
    text-align: center;
    background: var(--primary-color);
    padding: 7px 25px;
    border-radius: 20px;
    color: #fff;
    width: max-content;
}

.servicesection .servicebox a .btn_buy {}

/* service section style end */

/* gallery section style start */

.gallerysection {padding: 40px 0px;border-top: 1px solid #eee;}

.gallerysection .galleryimg {margin: 10px 0;}

.gallerysection .galleryimg a {}

.gallerysection .galleryimg a img {width: 100%; height: 250px; object-fit: cover;}

/* gallery section style end */

/* contact section style start */

.contact-section {
    padding: 40px 0px;
    border-top: 1px solid #eee;
}

.contact-section .headingbox {
}

.contact-section .headingbox h2 {}

.contact-section .mapbox {}

.contact-section .mapbox iframe {
    width: 100%;
}

.contact-section .contactform {}

.contact-section .contactform .formheading {
    margin: 10px 0px 15px;
}

.contact-section .contactform .formheading h2 {
    font-size: 26px;
    font-weight: 600;
    padding: 0 0 5px;
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
}

.contact-section .contactform .formheading h2:after {
    content: '';
    width: 25%;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.contact-section .contactform form {
}

.contact-section .contactform form .formbox {
    margin: 10px 0;
}

.contact-section .contactform form .formbox input[type="text"], 
.contact-section .contactform form .formbox input[type="email"], 
.contact-section .contactform form .formbox input[type="number"] {
    width: 100%;
    height: 40px;
    padding:  10px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: #e6f6ff;
}

.contact-section .contactform form .formbox textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: #e6f6ff;
}

.contact-section .contactform form .formbtn {
    text-align: center;
}

.contact-section .contactform form .formbtn input[type="submit"] {
    padding: 5px 20px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
    font-weight: 500;
    width: 100%;
    height: 40px;
}

/* contact section style start */

/* footer section style start */

.footer-section {}

.footer-section .footertop {
    padding: 50px 0px;
    background: #e3f6ff;
}

.footer-section .footertop .footerlogo {
    text-align: center;
}

.footer-section .footertop .footerlogo img {
    width: 50%;
}

.footer-section .footertop .footerbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section .footertop .footerbox h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--primary-color);
}

.footer-section .footertop .footerbox ul {}

.footer-section .footertop .footerbox ul li {}

.footer-section .footertop .footerbox ul li a {
    color: #000;
    font-weight: 400;
    font-family: var(--primary-font);
    padding: 3px 0px;
    width: fit-content;
    transition: all .3s ease-in-out;
}

.footer-section .footertop .footerbox ul li a:hover {
    padding-left: 10px;
}

.footer-section .footertop .footerbox ul li a i {
    color: var(--primary-color);
}

.footer-section .footer-bottombox {
    background: var(--primary-color);
    padding: 15px 0px;
}

.footer-section .footer-bottombox .copyrightbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section .footer-bottombox .copyrightbox p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
    color: #e2e2e2;
}

.footer-section .footer-bottombox .copyrightbox p a {
    display: inline-block;
    color: #fff;
}

.footer-section .footer-bottombox .copyrightbox .sociallist {}

.footer-section .footer-bottombox .copyrightbox .sociallist .social-list {}

.footer-section .footer-bottombox .copyrightbox .sociallist .social-list li {}

.footer-section .footer-bottombox .copyrightbox .sociallist .social-list li a {}

.footer-section .footertop .footerscanner img {
    width: 100%;
}

/* footer section style end */

/* enquiry popup style start */

.enquirypopup{
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease-in-out;
}
.enquirypopup.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.enquiryinnerpopup{
    width: 60%;
    border-radius: 10px;
    background: #fff;
    padding: 40px;
    position: relative;
    transition: all .5s ease-in-out;
    margin-top: -20px;
}
.enquirypopup.active .enquiryinnerpopup{
    margin-top: 0;
}
.enquiryinnerpopup .closeenquirypopup{
    position: absolute;
    top: 15px;
    right: 15px;
}
.enquiryinnerpopup .title{
    padding: 0 0 30px;
}
.enquiryinnerpopup .title h3{
    font-weight: 600;
    font-family: var(--secondary-font);
}
.enquiryinnerpopup .title p{
    letter-spacing: 1px;
}
.enquiryinnerpopup form{}
.enquiryinnerpopup form .fields{margin: 0 0 20px;position: relative;}
.enquiryinnerpopup form .fields label{font-size: 13px;color: #00000087;font-weight: 500;display: block;letter-spacing: 1px;text-transform: uppercase;position: absolute;top: -8px;left: 8px;background: #fff;padding: 0 7px;}
.enquiryinnerpopup form .fields select,
.enquiryinnerpopup form .fields input{
    border: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    outline: none;
}
.enquiryinnerpopup form .fields textarea{
    height: 90px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px;
}
.enquiryinnerpopup form .fields input:focus,
.enquiryinnerpopup form .fields textarea:focus{
    box-shadow: none;
    outline: none;
}
.enquiryinnerpopup form .fields-btn{
    text-align: center;
}
.enquiryinnerpopup form .fields-btn button{
    width: 30%;
    background: var(--secondary-color);
    border: none;
    padding: 10px;
    border-radius: 2px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* enquiry popup style end */

/* pagemessage style start */

.success {
    display: inline-flex;
    padding: 0px 10px;
    background: #309100;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.success p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.pagemessage {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    border-radius: 20px;
}

.pagemessage .warning {
    background: #ff0000;
    color: #fff;
    padding: 7px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: capitalize;
}

/* pagemessage style start */


