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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #6f2c73;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {

    font-family: 'ClashDisplay-Variable';
    src: url(../fonts/ClashDisplay-Variable.ttf);

}




/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid transparent !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #620067;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 0;
    font-size: 20px;
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-weight: 400;
    text-transform: capitalize;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
}

.btn10:hover {
    border: 1px solid transparent !important;
    color: #fff !important;
}

.btn10 i.fa-solid.fa-arrow-right {
    margin-left: 12px;
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #6f2c73;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 50px;
    line-height: 55px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h2 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 70px;
    line-height: 75px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h3 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 37px;
    line-height: 42px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: capitalize;
}

h4 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 40px;
    line-height: 45px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h5 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 40px;
    line-height: 45px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    /*text-transform: uppercase;*/
}

h6 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 47px;
    line-height: 60px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

p {
    color: #1D1D1D;
    font-size: 16px;
    line-height: 25px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0 0 10px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    padding: 12px 0;
    background: #6F2C73;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 8px 22px;
    font-size: 20px;
    font-family: 'Outfit';
    font-weight: 700;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* search box css */
body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */


.top-btn a.btn10 {
    background: #DFDFDF;
    color: #620067;
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    border-radius: 10px;
    white-space: nowrap;
    width: fit-content;
}

.top-btn {
    display: flex;
    justify-content: end;
    position: relative;
}
.top-btn .drp {
    position: absolute;
    right: 0;
    top: 100%;
    padding: 10px 0 0;
    display: none;
    z-index: 9999;
}

.top-btn:hover .drp {
    display: block;
}
.assets-drp ul,
.top-btn ul {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
}
.assets-drp ul li,
.top-btn ul li {
    display: block;
    text-align: left;
}
.assets-drp ul::before,
.top-btn ul::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    height: 10px;
    width: 10px;
    background-color: #fff;
    transform: translateY(-50%) rotate(45deg);
}
.assets-drp ul li a,
.top-btn ul li a {
    display: block;
    color: #000;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 5px;
}
.assets-drp ul li a:hover,
.top-btn ul li a:hover {
    color: #620067;
    background-color: rgba(98, 0, 103, 0.2);
}

.top-sec .gt_container--hich1m .gt_switcher {
    font-family: 'Outfit';
    font-size: 12pt;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    width: 123px;
    line-height: 0;
}

.top-sec .globe {
    display: flex;
    justify-content: end;
    margin: 0 0 10px;
}


/*service sect*/


.serv-1::before {
    position: absolute;
    content: "";
    background: url(../images/line.png);
    height: 54px;
    width: 233px;
    bottom: -209px;
    left: 44%;
    transform: rotate(67deg);
}

.serv-1 {
    /* position: absolute; */
    text-align: center;
    position: relative;
}

.serv-1 p {
    width: 30%;
    margin: 0 auto;
}

.serv-1 h1 {
    width: 50%;
    margin: 0 auto;
}

.serv-1 a.btn10 {
    width: 17%;
    margin: 0 auto;
}

.banner-btn {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.serv-2 {
    position: relative;
    width: 37%;
    text-align: center;
    top: -65px;
    left: -29px;
}

.serv-2::before {
    position: absolute;
    content: "";
    background: url(../images/line.png);
    height: 60px;
    width: 233px;
    top: 52%;
    right: -47%;
}

.serv-2 a.btn10 {
    width: 45%;
    margin: 0 auto;
}

.ser-circle {
    position: absolute;
    top: 36%;
    right: 31%;
}

.ser-circle h1 {
    /* display: block; */
    /* width: 79%; */
    text-align: center;
    /* margin: 0 auto; */
    font-size: 40px;
    color: #fff;
    line-height: 40px;
}


.ser-circle {
    position: absolute;
    top: 29%;
    right: 40%;
    /* border: solid; */
    background: #6F2C73;
    height: 235px;
    width: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.serv-3 p {
    width: 50%;
    margin: 0 auto;
    padding: 0 0 15px 0;
}

.serv-3 {
    position: relative;
    bottom: -80px;
    width: 54%;
    /* margin: 0 auto; */
    text-align: center;
    left: 3%;
}

.serv-3::before {
    position: absolute;
    content: "";
    background: url(../images/line.png);
    height: 97px;
    width: 233px;
    bottom: 111%;
    right: 72px;
    transform: rotate(102deg);
}

.serv-3 a.btn10 {
    width: 30%;
    margin: 0 auto;
}

/*.serv-4 {
    position: absolute;
    right: 0;
    top: 24%;
    text-align: end;
}

*/
.serv-4 {
    position: relative;
    right: -36%;
    top: -48%;
    /* text-align: end; */
    margin: 0 auto;
    text-align: center;
    width: 50%;
}

.serv-4::before {
    position: absolute;
    content: "";
    background: url(../images/line.png);
    height: 58px;
    width: 233px;
    top: 82%;
    right: 82%;
    transform: rotate(123deg);
}

.serv-4 a.btn10 {
    width: 35%;
    margin: 0 auto;
}

.serv-4 p {
    width: 62%;
    margin: 0 auto;
    padding-bottom: 10px;
}

.serv-5 {
    /* position: absolute; */
    /* bottom: 30%; */
    /* right: 3px; */
    /* text-align: center; */
    /* margin: 0 auto; */
    /* width: 30%; */
    position: relative;
    right: -36%;
    top: -45%;
    /* text-align: end; */
    margin: 0 auto;
    text-align: center;
    width: 50%;
}

.serv-5::before {
    position: absolute;
    content: "";
    background: url(../images/line.png);
    height: 93px;
    width: 233px;
    top: 45px;
    right: 70%;
    transform: rotate(11deg);
}

.serv-5 a.btn10 {
    width: 34%;
    margin: 0 auto;
}

.serv-5 p {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0 15px 0;
}


.banner-ser {
    background: #E1E1E1;
    height: 1670px;
    overflow: hidden;
}

/*
.serv-2 h1 {
    width: 48%;
    text-align: center;
}

.serv-2 p {
    width: 30%;
    margin: 0 auto;
}*/


.our-clients {
    background: #D9BFFB;
}

.clien-head {
    text-align: center;
}

ul.client-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 26px;
    border-radius: 15px;
    gap: 24px;
    margin-bottom: 20px;
    height: 253px;
}

li.sec-wd {
    width: 79%;
}


li.sec-wd-1 {
    width: 219%;
}

ul.client-box1 {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 26px;
    border-radius: 15px;
    gap: 24px;
    margin-bottom: 20px;
    height: 295px;
}

.client-box1 p {
    font-size: 15px;
}


.client-box p {
    font-size: 15px;
}


.testing {
    background: #DFDFDF;
}

.tsting-1 p {
    font-size: 21px;
    line-height: 35px;
    margin: 20px 0;
}

.tsting-1 {
    text-align: center;
}


.testing-2 p {
    font-size: 21px;
    line-height: 35px;
    margin: 20px 0;
}

.testing-2 {
    text-align: center;
}

section.safety.pt-8.pb-8 {
    background: #620067;
}

.safety-head {
    width: 58%;
    margin: 0 auto;
    text-align: center;
}

.safty-detail p {
    color: #fff;
    font-size: 21px;
    line-height: 34px;
    margin: 0 0 30px;
}

ul.exp-btn {
    display: flex;
    align-items: center;
    gap: 26px;
}

.exp-btn a.btn10 {
    background: #fff;
    color: #620067;
    border-radius: 5px;
}

ul.exp-btn span {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    color: #fff;
    font-family: 'ClashDisplay-Variable';
    font-size: 22px;
    margin: 20px 0;
}

.implement {
    background: #DFDFDF;
}
.implement ul,
.impl-head p {
    font-size: 21px;
}

section.audit.pt-8.pb-8 {
    background: #620067;
}

ul.aud-detail li {
    font-size: 21px;
    color: #fff;
    line-height: 34px;
    /* text-transform: capitalize; */
    margin: 20px 0 20px 20px;
}

ul.aud-detail {
    list-style: disc;
}

span.fnt-bol {
    font-weight: 700;
}

.pest-cont {
    background: #D6D6D6;
}

ul.pest-deat li {
    font-size: 21px;
    margin: 20px 0 20px 20px;
    /* text-transform: capitalize; */
}

ul.pest-deat {
    list-style: disc;
}

.pest-head {
    margin: 0 0 0 0px;
}

.cleaning {
    background: #620067;
}

.clean-head h2 {
    color: #fff;
    font-size: 54px;
    line-height: 60px;
    letter-spacing: 3px;
}

ul.clean-deat {
    list-style: disc;
}

ul.clean-deat li {
    color: #fff;
    font-size: 21px;
    margin: 20px 0 20px 20px;
    line-height: 30px;
    /* text-transform: capitalize; */
}

.online-testing {
    background: #D6D6D6;
}

.online-head p {
    font-size: 21px;
    color: #000;
    /* text-transform: capitalize; */
    line-height: 30px;
}

ul.onlin-det li {
    font-size: 21px;
    color: #000;
    line-height: 30px;
    margin: 20px 0 20px 48px;
}

ul.onlin-det {
    list-style: disc;
}

.onl-but a.btn10 {
    width: 34%;
    margin: 0 auto;
}

.onl-but {
    text-align: center;
    /* margin: 0 auto; */
    /* display: flex
; */
}


.test-img img {
    margin-bottom: 20px;
}

.aboutus {
    background: #620067;
}

.abt-txt h2 {
    color: #fff;
}

.abt-txt p {
    font-size: 21px;
    /* text-transform: capitalize; */
    color: #fff;
    margin: 0 0 32px;
}

.appointment {
    background: #DFDFDF;
}

.contact-input input {
    width: 100%;
    height: 57px;
    margin-bottom: 25px;
    padding: 0 20px;
    border-radius: 20px;
    background: #fff;
    border: none;
    box-shadow: 0 0 2px 0 #307BC4;
}

.contact-input textarea {
    width: 100%;
    height: 145px;
    margin-bottom: 7px;
    padding: 25px 20px;
    border-radius: 20px;
    background: #fff;
    border: none;
    box-shadow: 0 0 2px 0 #307BC4;
    resize: none;
}

.contact-input label {
    color: #000;
    font-size: 19px;
    font-family: 'Outfit';
    margin: 0 0 10px;
}

.contact-btn1 a.btn10 {
    width: 27%;
    background: #ffffff;
    color: #620067;
    border-radius: 9px;
    white-space: nowrap;
    width: fit-content;
}

.appt-img img {
    width: 90%;
}



/*Footer Start*/


/*.footer-logo-box {
    text-align: center;
}
*/

.footer-main {
    padding: 80px 0 50px;
    background: #620067;
    position: relative;
    width: 100%;
    background-size: cover;
}

.footer-logo-box p {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins';
    text-align: left;
    /* font-weight: 400; */
    /* line-height: 22px; */
    /* text-align: initial; */
    margin-top: 20px;
}

.footer-logo-box a img {
    margin-bottom: 35px;
}

.footer-logo-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    /* justify-content: center;*/
    margin-top: 40px;

}

.foot-social-1 ul li a:hover {
    background: #e9493a;
    color: #fff;
}

.foot-social-1 ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 15px;
    /* background-image: -webkit-linear-gradient(307deg, #ffcc00 0%, #ffc107 49%, rgb(96 90 90) 99%); */
    color: #fff;
    transition: 0.5s;
    background: transparent;
    border-radius: 100%;
    border: solid 0.5px;
}

/*.quick-link::before {
    position: absolute;
    content: "";
    background: white;
    height: 3px;
    width: 57px;
    top: 36px;
}*/

.quick-link {
    /* padding-left: 40px; */
    /* border-left: 1px solid #525252; */
    margin-left: 40px;
    position: relative;
}

.contact-info {
    padding-left: 30px;
    position: relative;
}

.foot-social-1 ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-link p {
    color: #fff;
}

/*.contact-info::before {
    position: absolute;
    content: "";
    background: white;
    height: 3px;
    width: 57px;
    top: 36px;
}

.new-letter::before {
    position: absolute;
    content: "";
    background: white;
    height: 3px;
    width: 57px;
    top: 36px;
}*/

.new-letter {
    padding-left: 20px;
    position: relative;
}


.copy-right {
    padding: 18px 0;
    /* border-top: 1px solid #fff; */
    /* text-align: center; */
    background: #DFDFDF;
}

.new-letter-input-icon {
    position: absolute;
    left: 15px;
    color: #c27234;
}

.new-letter input {
    width: 100%;
    height: 50px;
    border: none;
    background: transparent;
    border-radius: 39px;
    padding: 0 20px;
    box-shadow: 0 0 2px 0 #00000063;
    border: solid 0.5px #fff;
    color: #fff;
}

.new-letter input::placeholder {
    color: #fff;
}

.new-letter-input-icon i {
    font-size: 18px;
    /* background: linear-gradient(to bottom, #b5181c 37%, #cb1a22 49%, #750d10 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #000000;
}

.copy-right-txt p {
    /* font-size: 14px; */
    text-transform: capitalize;
    color: #000000;
    font-family: 'Montserrat';
    margin: 0;
    text-align: start;
}


.powe-txt p {
    text-align: end;

}

/*.new-letter-input input::placeholder {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}*/
.new-letter-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /* margin-top: 40px; */
}

/*ul.foot-list {
    margin-top: 40px;
}*/
.new-letter-button button {
    width: 100%;
    height: 55px;
    font-size: 19px;
    border: none;
    color: #000;
    background-image: linear-gradient(to bottom, #9e742e, #ac8340, #bb9351, #c9a363, #d8b375, #d8b375, #d9b475, #d9b475, #cba463, #bd9552, #b08641, #a27730);
    border-radius: 10px;
    /* font-weight: 600; */
}

.footer-main h5 {
    font-size: 24px;
    font-weight: 500;
    /* text-transform: uppercase; */
    font-family: 'ClashDisplay-Variable';
    /* margin-bottom: 39px; */
    /* background: linear-gradient(89deg, #ffcc00 35%, rgb(253 220 100) 70%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* color: white; */
}

.quick-link ul li a {
    font-size: 20px;
    color: #fff;
    /* font-weight: 500; */
    font-family: 'Outfit';
    text-transform: capitalize;
    letter-spacing: 1px;
}

.new-letter li a {
    font-family: 'Montserrat';
    font-size: 13px;
    color: #fff;
    line-height: 38px;
}

.quick-link ul {
    line-height: 35px;
    /* column-count: 2; */
    /* margin-top: 40px; */
    /* column-count: 2; */
}

.contact-info ul li a i {
    font-size: 22px;
    color: #ffffff;
    /* background: linear-gradient(to bottom, #d4a652 37%, #bb9e69 49%, #f8d084 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.contact-info ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.contact-info ul li a {
    font-size: 20px;
    color: #fff;
    /* font-weight: 500; */
    margin-bottom: 29px;
    font-family: 'Outfit';
    letter-spacing: 1px;
}

.contact-info ul li:last-child a {
    margin-bottom: 0;
}

a.footbtn.btn10 {
    /* text-align: center; */
    /* margin: 0 auto; */
    width: 100%;
    background: #ff0000 !important;
    /* border-bottom: solid; */
    background: azure;
    color: #fff;
}

/*Footer End*/





/* auth */

.form-wrap h4 {
    font-size: 30px;
    word-spacing: 5px;
}

.form-wrap .form-content .review-fields,
.form-wrap .form-content .input-fields {
    font-family: 'Gopher';
    font-size: 16px;
    font-weight: 500;
}

.form-wrap .form-content .review-fields>label,
.form-wrap .form-content .input-fields label {
    margin-bottom: 8px;
}

.form-wrap .form-content .review-fields input {
    display: none;
}

.form-wrap .form-content .review-fields .rating-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    flex-direction: row-reverse;
    gap: 10px;
}

.form-wrap .form-content .review-fields .star {
    transition: 0.3s;
}

.form-wrap .form-content .review-fields .star::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Pro';
}

.form-wrap .form-content .review-fields .star:hover~.star,
.form-wrap .form-content .review-fields .star:hover,
.form-wrap .form-content .review-fields input:checked~.star {
    color: #ffd250;
    font-weight: 900;
}

.form-wrap .form-content .input-fields input,
.form-wrap .form-content .input-fields select,
.form-wrap .form-content .input-fields textarea {
    width: 100%;
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #e5e5e5;
}

.form-wrap .form-content .input-fields textarea {
    height: 140px;
    resize: none;
}

.form-wrap .form-content .input-fields.field-lg input {
    padding: 13px 20px;
}

.form-wrap .form-content .submit-btn {
    background-color: #620067;
    color: #fff;
    border: none;
    padding: 5px 18px;
    transition: 0.3s;
    border: 2px solid transparent;
    font-family: "Urbanist", serif;
}

.form-wrap .form-content .submit-btn:hover {
    background-color: transparent;
    color: #000;
    border: 2px solid #620067;
}

.form-wrap .form-content .btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-wrap .form-content .btn-wrapper span {
    font-family: "Urbanist", serif;
    font-weight: 600;
}

.form-wrap .form-content .btn-wrapper span a {
    color: #620067;
}

.course-card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.course-card .thumbnail {
    background-color: rgb(216, 230, 254);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.course-card .thumbnail img {
    border-radius: 10px;
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.course-card .info h5 {
    color: #000;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 34px;
}

.course-card .info .course-attributes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.course-card .info .course-attributes li {
    width: calc(50% - 10px);
    flex: 0 0 auto;
}

.course-card .info .course-attributes li .icon {
    color: #620067;
}
.course-card .info .course-attributes li .icon img{
    width: 18px;
}

/*.course-card .info .course-attributes li span {*/
/*    font-size: 16px;*/
/*}*/

.download-btn{
    background-color: #6F2C73;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 10px;
    margin-left: auto;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: 0.3s;
}

.course-card .info .proceed-btn {
    background-color: #6F2C73;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 10px;
    margin-left: auto;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: 0.3s;
}

.course-card .info .proceed-btn.detail-btn {
    color: #fff;
    background-color: #000;
}

.course-card .info .proceed-btn:hover {
    background-color: #000;
}
.download-btn:hover {
    background-color: #000;
}

.profile-page .course-video {
    position: sticky;
    top: 50px;
}

/* .profile-page{
    background-color: #ecf2fe;
} */
.profile-page h5 {
    color: #000;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    font-family: 'Outfit';
}

.profile-page h6 {
    color: #000;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    font-family: 'Outfit';
}

.profile-page .card-drop {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.profile-page .module-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-page .module-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.profile-page .module-list li a.active * {
    color: #620067;
}

.profile-page .module-list .circle {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #D5DBE7;
}

.profile-page .module-list h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

.introvert ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.introvert h2 {
    text-align: center;
    color: #fff;
}

.introvert ul li,
.introvert ul li a {
    color: #fff;
}

.banner-to {
    height: 30vh;
    display: flex;
    align-items: center;

    background-color: #620067;
}

.white-card h5 {
    color: #000;
    padding: 0;
}

.white-card ul li {
    width: 50%;
}

.white-card ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.white-card img {
    width: 100%;
}

.white-card {
    background-color: #fff;
    padding: 30px 25px;
    margin: 20px 0;
}

.banner-clients {
    background: #D9BFFB;
}

.main-cards {
    background-color: #ffff;
}

.main-cardws {
    background: #ffff;
    padding: 10px 30px;
    border-radius: 10px;
    margin: 15px 0;
    display: flex;
    height: 21vh;
    align-items: center;
    align-items: center;
}

.main-text h5 {
    color: #000;
}













@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {
.serv-1 h1 {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
}
.serv-1 p{
    width:100%;
    padding: 20px 0;
}
.serv-1 a.btn10{
    width:100%;
    margin-bottom: 30px;
}
.serv-2 {
    position: relative;
    width: 100%;
    text-align: center;
    top: 0px;
    left: 0px;
}
.serv-4 {
    position: relative;
    right: 0%;
    top: 0%;
    /* text-align: end; */
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.banner-ser {
    background: #E1E1E1;
    height: auto;
    overflow: hidden;
    padding: 30px 0;
}
.serv-2::before{
    display:none;
}
.serv-1::before{
    display:none;
}
.ser-circle{
    display:none;
}
.menuSec img {
    margin: 0;
    margin: 15px auto;
}
.serv-4::before,
.serv-5::before,
.serv-3::before{
    display:none;
}
.serv-3 h1,
    .serv-1 h1,
    .serv-2 h1{
        font-size:30px;
        line-height: 34px;
        padding: 14px 0 0 0;
    }
    .serv-2 a.btn10 {
    width: 100%;
    margin: 0 auto;
}
.serv-3
 {
    position: relative;
    bottom: -80px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    left: 0%;
    padding: 0 0 130px 0;
}
.serv-5 {
    position: absolute;
    bottom: 30%;
    right: 3px;
    text-align: center;
    margin: 0 auto;
    width: 30%;
    position: relative;
    right: 0%;
    top: 1%;
    text-align: end;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.serv-3 p {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 15px 0;
}
.serv-3 a.btn10 {
    width: 100%;
    margin: 0 auto;
}
.serv-4 a.btn10 {
    width: 100%;
    margin: 0 auto;
}
.serv-4 p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.serv-5 a.btn10{
    width:100%;
}
h1 {
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 30px;
    line-height: 55px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.serv-5 a.btn10 {
    width: 100%;
    margin: 0 auto;
}
ul.client-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 26px;
    border-radius: 15px;
    gap: 24px;
    margin-bottom: 20px;
    height: auto;
    flex-direction: column;
    text-align: center;
    justify-content:center;
}
ul.client-box1 img{
    margin:0 auto;
    display:block;
}
ul.client-box1 {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 26px;
    border-radius: 15px;
    gap: 24px;
    margin-bottom: 20px;
    height: auto;
    flex-direction: column;
    margin: 12px auto;
}
.testing-2 h4{
    
    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 32px;
    line-height: 45px;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 40px 0 0px 0;

}
.safety-head {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.safety-head h5 {

    font-family: 'ClashDisplay-Variable', Sans-Serif;
    font-size: 28px;
    line-height: 45px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    /* text-transform: uppercase; */

}
.safty-detail h5{
    text-align:center;
} 
p{
 
        text-align: center;
        font-size: 16px;
        width: 100%;
        margin: 25px 0;

}

.impl-head h4{
    text-align:center;
padding:10px 0;
    
} 
.impl-head ul li{
    text-align:center;
}
.client-box1 h3{
    text-align:center;
} 
.pest-head  h2{text-align:center;font-size: 45px;padding: 14px 0;}
    .pest-head h2 {
        text-align: center;
        text-align: center;
        /* font-size: 39px; */
        padding: 30px 0;
        line-height: 54px;
    }ul.onlin-det li
    .clean-head h2 {
    color: #fff;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
    letter-spacing: 3px;
}
li.sec-wd-1 {
    width: 100%;
}
ul.onlin-det li,
h6,
ul.clean-deat li,
{
    text-align:center;
    margin:0;
    font-size: 18px;
    padding: 13px 0;
}
h6{
        font-size: 35px;
        text-align:center;
}
.onl-but a.btn10,
ul.onlin-det li{
    width:100%;
}
.abt-txt h2,
ul.aud-detail li{
    text-align:center;
    font-size:18px;
}

ul.pest-deat li{
    text-align:center;
}
clean-img {
    margin:10px 0;
}
.onl-but a.btn10{
    width:100%;
}

ul.clean-deat {
    list-style: disc;
    padding: 18px 0;
}
.appt-img img{
    margin:0 auto;
} 
.appt-img.wow.slideInLeft {
    margin: 0 auto;
    display: flex
;
    align-items: center;
}
.appt-head.wow.slideInRight  h2{
    text-align:center;
    font-size:20px;
}
.quick-link ul{
    justify-content:center;
}
.quick-link{
    margin:0;
}
.quick-links{
    text-align:center;
}
.clean-head h2{
    text-align:center;
    font-size:22px;
}
.clean-head h2 {
    text-align: center;
    font-size: 42px;
        line-height: 40px;
}
.clean-head h2 {
    text-align: center;
    font-size: 43px;
}
.copy-right-txt p{
    text-align:center;
}
.contact-info ul li a{
    justify-content:center;
}
.powe-txt p {
    text-align: center;
}
ul.onlin-det li{
    margin:0;
}
.impl-head h4 {
    text-align: center;
    padding: 10px 0;    font-size: 30px;
}
ul.clean-deat li {
    color: #fff;
    font-size: 21px;
    margin: 25px 0;
    line-height: 30px;
    /* text-transform: capitalize; */
    text-align: center;
}
ul.onlin-det li{
    text-align:center;
    padding: 10px 0;
}
.footer-main h5{
    text-align:center;
}
h5{
    text-align:center;
}
a.proceed-btn.purchase-btn {
    margin: 0 auto;
}
.introvert h2{
    font-size:30px;
}
.contact-btn1 a.btn10{
    width:100%!important;
}
}













