html{
    scroll-behavior: smooth;
}
:root{
    --color-icon : #008060;
    --dark-color : #036d53;
    --font-color: #1a1a1a ;
    --white-background: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Mulish';
    font-weight: 400;
    position: relative;
    color: var(--font-color);
}

.main-container {
	margin: auto;
	max-width: 1900px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 17px 120px;
    background-color: var(--white-background);
    box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
    z-index: 10;
}
.menu {
    display: none;
}

.nav, .nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    position: relative;
}
.nav-item {
    font-family: 'Mulish';
    font-size: 14px;
    font-size: 14px;
    margin-left: 2.58rem;
    height: 35px;
    letter-spacing: -0.001rem;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
}
.nav-item:nth-child(1) {
    margin-left: 1.5rem;
}
.nav-item:nth-child(1) a:hover {
    text-shadow: none;
}
.nav-item a i{
    position: relative;
    top: 1px;
    left: 1px;
    font-size: 12px;
}
.nav-item:nth-last-child(1) a {
    font-weight: 800;
    color: var(--color-icon);
}
.nav-item a {
    color: var(--font-color);
    text-decoration: none;
}
.nav-item a:hover {
    text-shadow: 0px 0px 1px var(--font-color);
}
.nav-item:nth-last-child(1) a:hover {
    text-shadow: none;
    text-decoration: underline;
}
.nav-list .product-list {
    position: absolute;
    left: 40px;
    top: 40px;
    display: none;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    list-style: none;
    background-color:var(--white-background);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.151);
}
.nav-list .product-list::before{
    content: '';
    width: 13px;
    height: 13px;
    background-color: var(--white-background);
    position: absolute;
    top: -7px;
    left: 45%;
    transform: rotate(45deg);
}
.product-item a{
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-top: 15px;
    font-size: 14px;
    color: var(--font-color);
}
.product-item a img{
    margin-right: 0.75rem;
}
.product-item:nth-child(1) a{
    padding-top: 5px;
}
.product-item a:hover {
    text-shadow: 0px 0px 1px var(--font-color);
}
.nav-list .nav-item:hover .product-list {
    display: flex;
}
.logo {
    padding-top: 0.5525rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}
.btn {
    padding: 10px 32px;
    border-radius: 4px;
    font-weight: 700;
    outline: none;
    text-transform: capitalize;
    font-size: 16px;
    box-sizing: border-box;
    min-width: 140px;
    position: relative;
    font-family: inherit;
}
.btn-login {
    padding: 8px 21px;
    border-radius: 4px;
    color: var(--color-icon);
    font-weight: 700;
    background-color: var(--white-background);
    border-color: var(--white-background);
    border: solid 1px var(--white-background);
}
.btn-login a{
    color: var(--color-icon);
    text-decoration: none;
}
.btn-login:hover {
    text-decoration: underline;
}
.btn-callback {
    background-color: var(--color-icon);
    color: var(--white-background);
    border: var(--color-icon) 1px solid;
    cursor: pointer;
}
.btn-callback:hover {
    background-color: var(--dark-color);
    border: var(--dark-color) 1px solid;
}
.sideNav{
    display: none;
}

/* Business section */
.business {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3.7rem 0rem 0rem 0;
    padding: 0 120px;
}
.business-image {
    width: 480px;
    padding: 20px;
}
.business-image img {
    width: 100%;
}
.business-title {
    display: flex;
    flex-direction: column;
    width: 480px;
    height: fit-content;
    padding-bottom: 18px;
}
.business-title .heading {
    font-size: 32px;
    line-height: 48px;
    font-weight: 800;
    color: var(--font-color);
    font-family: inherit;

}
.business-title .text {
    font-size: 20px;
    line-height: 24px;
    color: #5a5a5a;
    font-weight: 400;
    margin: 12px 0 28px 0;
}
.btn-section{
    position: relative;
    top: 3px;
}
.business-btn a{
    color: white;
    text-decoration: none;
}
.business-btn {
    padding: 10px 32px;
    border-radius: 4px;
    font-weight: 500;
    outline: none;
    border: var(--color-icon) 1px solid;
    font-size: 16px;
    color: var(--color-icon);
    background-color: var(--white-background);
    min-width: 189px;
    margin-right: 12px;
    position: relative;
    font-family: inherit;
    cursor: pointer;
}
.business-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.business-btn span i {
    margin-right: 7px;
    font-size: 18px;
}
.business-btn:nth-child(1) {
    background-color: var(--color-icon);
    color: var(--white-background);
}
.business-btn:nth-child(1):hover {
    background-color: var(--dark-color);
}
.business-btn:nth-child(2) a{
    display: block;
    color: var(--color-icon) !important;
}
.business-btn:nth-child(2):hover {
    background-color: #f4fff2;
}
.available {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #494848;
}
.available p{
    font-weight: 600;
    margin-right: 20px;
}
.available a {
    color: #858585;
    font-size: 21px;
    margin-right: 15px;
}
/* details section */
.details-section {
    position: relative;
    top: 65px;
    padding: 0 120px;
}
.details{
    display: grid;
    grid-template-columns: .99fr 1.03fr 1.03fr;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    width: 100%;
    height: 120px;
    background: var(--white-background);
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    box-shadow: 0 2px 4px 3px rgb(40 104 244 / 5%);
    border-radius: 7px;
}
.details .info{
    display: flex;
    justify-content:center;    
    width: 100%;
    padding: 10px 0;
    border-right: 0.10rem solid #8a87874d;
}
.details .info:nth-last-child(1){
    border: none;
}
.details .info img{
    margin-left: -11px;
    margin-right: 25px;
}
.details .info h4{
    font-weight: 800;
    font-family: inherit;
    font-size: 20px;
}
.details .info p{
    margin-top: 3px;
    font-weight: 600;
    color: #5a5a5a;
}
/* products section */
.products-section{
    padding: 120px 120px;
    background-color: #fafafa;
}
.products-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.products-heading h3{
    font-size: 24px;
    font-weight: 800;
}
.products-heading p{
    margin-top: 5px;
    width: 450px;
    line-height: 23px;
    color: #5a5a5a;
}
.our-products{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}
.our-products a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--font-color);
    text-decoration: none;
    width: 260px;
}
.our-products a h4{
    margin-top: 10px;
    font-size: 20px;
}
.our-products p{
    margin-top: 10px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    color: #5a5a5a;
}
.our-products a img{
    width: 200px;
}
.our-products a .link{
    cursor: pointer;
    color: var(--color-icon);
}
.our-products a .link:hover{
    text-decoration: underline;
}

/* Our Silder  */
.silder-section{
    padding: 0 120px;
}
.our-silder{
    padding: 45px;
}
.splide__arrow{
    margin-right: -75px;
    margin-left: -75px;
    font-size: 28px;
    color: #858585;
    background-color: transparent !important;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.content img {
    width: 90px;
    margin: 10px 0;
}
.content p{
    font-size: 18px;
    line-height: 2rem
}
.content p:nth-last-child(1){
    color: #858585 ;
    font-size: 14px;
}
/* Request */
.Request-section{
    position: relative;
    padding: 0 120px;
    background-color: #f4fff2;
}
.Request{
    position: relative;
}
.Request-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 160px;
    z-index: 3;
}
.Request-content .text{
    font-size: 30px;
    font-weight: 800;
    margin-left: 10px;
}
.Request .btn{
    padding: 1rem;
    border-radius: 4px;
    width: 240px;
    background-color: var(--color-icon);
    border: 1px solid var(--color-icon);
    color: var(--white-background);
    cursor: pointer;
}
.Request .btn:hover{
    background-color: var(--dark-color);
}
.Request .image{
    position: absolute;
    top: 10px;
    width: 400px;
    z-index: 1;
}
.Request-section .image img{
    width: 100%;
}
/* Featured On */
.featuredOn-section{
    padding: 0 120px;
    padding-bottom: 36px;
    background-color: #fafafa;
}
.featuredOn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}    
.featuredOn h2{
    padding: 17px;
    padding-top: 45px;
}
.featuredOn .link{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 23px;
}

/* footer section */
.footer-section{
    padding: 0 120px;
    background-color: #f4f5f6;
}
.footer{
    display: flex;
    flex-direction: column;
    padding-top: 75px   ;
}
.top-section{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 33px;
    border-bottom: 1px solid #7c7c7c3b;
}
.footer-info{
    width: 320px;
    font-size: 12px;
    color: #5a5a5a;
}
.footer-info .title{
    margin-top: 14px;
}
.footer-info .address{
    margin-top: 6px;
    line-height: 18px;
}
.find-us{
    margin-left: 4px;
}
.find-us h4{
    font-size: 20px;
}
.find-us .link{
    display: flex;
    justify-content: space-between;
    padding: 1.005rem 5px;
    padding-right: 0px;
    width: 233px;
}
.find-us a{
    font-weight: 700;
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.2s ease;
}
.find-us .link a{
    display: block;
    margin-right: 10px;
    font-size: 1.81rem;
}
.find-us a:hover{
    color: var(--color-icon);
}
.policy div{
    display: flex;
    margin-top: 1.01rem;
}
.policy h4{
    font-size: 20px;
}
.policy div a{
    display: block;
    height: fit-content;
    padding-left: 10px;
    
    font-size: 14px;
    color: #5a5a5a;
    text-decoration: none;
    
}
.policy div a:nth-child(1){
    padding-right: 10px;
    padding-left: 0;
    border-right: 1px solid #494848;
}
.policy div a:hover{
    text-decoration: underline;
}
.bottom-section{
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.bottom-section .serve p{
    font-weight: 700;
}
.bottom-section .contect{
    margin-top: 15px;
    display: flex;
}
.bottom-section .contect p{
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 300;
}
.bottom-section .contect a{
    margin-left: 1.5rem;
    color: #5a5a5a;
    text-decoration: none;
}
.bottom-section .register{
    display: flex;
    justify-content: space-between;
}
.bottom-section .register .info{
    display: flex;
    align-items: center;
    padding: 5px 20px;
    padding-right: 0;
    padding-top: 0;
}
.bottom-section .register .info img{
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
.bottom-section .register .info p{
    font-size: 14px;
    font-weight: 700;
    
}
.bottom-section .register .info p:nth-last-child(1){
    margin-top: 3px;
    font-size: 12px;
    color: #858585;
    font-weight: 600;
}
.copyrights{
    font-size: 12px;
    color: #5a5a5a;
    padding-top: 26px;
    padding-bottom: 42px;
}
/* Popup Css Starts Here */
.close-button
{
    cursor:pointer;
}
.popup-modal{
    position: fixed;
    background-color: #1a1a1a7a;
    height: 100vh;
    width: 100%;
    top: 0;
    z-index: 15;
    display: none;    
}
.popupshow{
    display: flex;
    justify-content: center;
    align-items: center;
}
.model-tab{
    width: 0px; 
    height: 0px; 
    overflow: hidden; 
    outline: none;
}
.modal-content{
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 12%), 0 6px 16px 0 rgb(0 0 0 / 8%), 0 9px 28px 8px rgb(0 0 0 / 5%);
    pointer-events: auto;
}
.modal-body{
    padding: 24px;
    font-size: 14px;
    line-height: 1.5715;
    word-wrap: break-word;
}
.modal-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.heading-text {
    font-size: 16px;
    font-weight: bold;
    text-align: inherit;
    font-family: inherit;
    margin-bottom: 2px;
}
.modal-center span i{
    max-width: 100%;
    height: auto;
    font-size: 18px;
    color: black;
}
.text-content {
    font-size: var(--font-size-body1);
    font-weight: var(--font-weight-normal);
    color: var(--text-secondary);
    text-align: inherit;
    font-family: inherit;
    margin-bottom: 20px;
}
.popup-form {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
}
.contactsize:not(.contactsize-mark-optional):before {
    display: inline-block;
    margin-right: 4px;
    color: #ff4d4f;
    font-size: 14px;
    font-family: SimSun,sans-serif;
    line-height: 1;
    content: "*";
}
.contactsize{
    display: flex;
    margin-bottom: 6px;
}
.namesize:not(.namesize-mark-optional):before {
    display: inline-block;
    margin-right: 4px;
    color: #ff4d4f;
    font-size: 14px;
    font-family: SimSun,sans-serif;
    line-height: 1;
    content: "*";
}
.namesize{
    display: flex;
    margin-bottom: 6px;
}
.contact-text{
    font-size: var(--font-size-body2);
    font-weight: var(--font-weight-normal);
    color: var(--text-tertiary);
    text-align: inherit;
    font-family: inherit;
    margin-bottom: 0 !important;
}
.name-text{
    font-size: var(--font-size-body2);
    font-weight: var(--font-weight-normal);
    color: var(--text-tertiary);
    text-align: inherit;
    font-family: inherit;
    margin-bottom: 0 !important;
}
.staff-text {
    font-size: var(--font-size-body2);
    font-weight: var(--font-weight-normal);
    color: var(--text-tertiary);
    text-align: inherit;
    font-family: inherit;
    margin-bottom: 0 !important;
}
.contact-input-content {
    flex: auto;
    max-width: 100%;
    display: flex;
    border: 1px solid #dadada;
    margin-bottom: 12px;
    padding: 5px 11px;
    border-radius: 5px;
}
.pre-input{
    display: flex;
    align-items: center;
}
.name-input-content {
    flex: auto;
    max-width: 100%;
    margin-bottom: 12px;
}
.staff-input-content {
    flex: auto;
    max-width: 100%;
    margin-bottom: 30px;
}
.staffSize{
    margin-bottom: 6px;
    margin-left: 8px;
}
.commonInput {
    height: 44px;
    border: 1px solid #dadada!important;
    background: var(--bg-default);
    border-radius: 4px!important;
    margin: 0!important;
    font-size: 14px!important;
}
.contact-input {
    width: 100%;
    color: rgba(0,0,0,.85);
    line-height: 1.5715;
    padding: 4px 4px;
    border: none;
    border-radius: 2px;
    transition: all .3s;
    font-size: 14px!important;
    outline: none;
    font-family: 'Mulish';
    background-color: white;
}
.name-input {
    width: 100%;
    color: rgba(0,0,0,.85);
    line-height: 1.5715;
    padding: 4px 11px;
    border-radius: 4px;
    transition: all .3s;
    height: 44px;
    border: 1px solid #dadada!important;
    font-size: 14px!important;
    outline: none;
    font-family: 'Mulish';
    background-color: white;
}
.staff-input{
    width: 100%;
    color: rgba(0,0,0,.85);
    line-height: 1.5715;
    padding: 10px 11px;
    border: 1px solid #dadada;
    border-radius: 5px;
    transition: all .3s;
    font-size: 14px!important;
    outline: none;
    font-family: 'Mulish';
    background-color: white;
}
.submit-content {
    flex: auto;
    max-width: 100%;
}
.submit-content:hover{
    cursor: pointer;
}
.submit{
    color: var(--text-tertiary);
    background-color: var(--color-icon);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Mulish';
}
.submit > span {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
