header {
    background-color: unset !important;
}
#headeraffix.affix {
    background-color: #fff !important;
}
.navbar-nav li.active > a, #topbar::before {
    color: #005689 !important;
}
p, li {
    font-size: 16px;
}

.navbar-nav > li > a:hover {
    color: #00578d !important;
}
#topbar::before {
    background: var(--primary-color);
}
#topbar:after {
    border-top: 22px solid #003f2e;
    border-left: 26px solid #003f2e;
}
.topbar li {
    font-family: var(--default-font) !important;
    color: #fff !important;
}

#topbar:after {
    left: 71%
}
#topbar:before {
    width: 71%;
}

.navbar-nav > li > a {
  
    font-family: var(--default-font);
    font-size: 16px;
}




h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--default-font);
}
h2 {
    font-size: 40px;
}

.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: normal;
    background-color: var(--blue-color);
    border-radius: 100px;
    padding: 8px 16px 8px 34px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    font-family: var(--default-font);
    color: #fff;
}
.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
.section-title p {
   
    font-size: 16px;
}





:root {
    --primary-color: #033F2D;
    --secondary-color: #FFFFFF;
    --blue-color: #005689;
    --bg-color: #F5F5F5;
    --text-color: #484C44;
    --accent-color: #C7F268;
    --white-color: #FFFFFF;
    --divider-color: #0000001A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "intertight", sans-serif;
}

/*--------------Welcome------*/
.about-us {
    padding: 100px 0 50px;
}

.about-us-image-box{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.about-us-image{
    width: 50%;
}

.about-us-image figure{
    display: block;
    border-radius: 20px;
}

.about-us-image img{
    width: 100%;
    object-fit: cover;
	border-radius: 20px;
}

.about-us-image.image-1{
	position: relative;
	background: url('../images/about-us-bg-image.png') no-repeat;
	background-position: top left;
	background-size: 240px auto;
	align-content: end;
	margin-bottom: 80px;
	z-index: 1;
}

.about-us-image.image-2{
	height: 100%;
}

.about-us-image.image-2 figure{
	height: 100%;
	margin-left: -155px;
}

.about-us-image.image-2 figure img{
	height: 100%;
	aspect-ratio: 1 / 1.265;
}

.about-us-content{
	height: 100%;
	align-content: center;
}

.about-us-body-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-counter-box{
	width: calc(45% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--white-color);
	border-radius: 20px;
	padding: 10px;
}

.about-counter-image figure{
	display: block;
	border-radius: 10px;
}

.about-counter-image img{
	width: 100%;
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
	border-radius: 10px;
}

.about-counter-box-content {
    padding: 30px 20px 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.about-counter-box-content h2{
	font-size: 48px;
}

.about-counter-box-content p{
	margin: 20px 0 0;
}

.about-us-info-box{
	width: calc(55% - 15px);
	align-content: center;
}

.about-us-info-content p{
	margin-bottom: 30px;
}

.about-us-info-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-info-content ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-info-content ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 900;
    color: var(--blue-color);
    top: 0;
    left: 0;
}

.about-us-info-content ul li:last-child{
	margin-bottom: 0;
}

.about-us-info-btn{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}
.btn-default-btn {
    position: relative;
    display: inline-block;
    background: var(--blue-color) !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: #fff !important;
    padding: 17px 58px 17px 24px;
    border: none;
    overflow: hidden;
    outline: none;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.btn-default-btn:hover {
    color: var(--white-color) !important;
}
.btn-default-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color) !important;
    border-radius: 10px;
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.btn-default-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/*---------------pesticide---------*/




.our-protection{
   
}

.our-protection .section-title {
    text-align: center;
}

.our-protection {

    background-color: var(--primary-color);
    background-image: url(../../images/images/work/abt-pg/bg/gradient-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
     padding: 50px 0;
     position: relative;
    
}


.our-protection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../../images/images/work/abt-pg/bg/bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
}
.protection-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.our-protuc h2 {
    color: #fff;
}

.protection-item{
	width: calc(20% - 24px);
	text-align: center;
}

.protection-item-image{
	margin-bottom: 30px;
}

.protection-item-image figure{
	display: block;
	border-radius: 50%;
}

.protection-item-image img {
    width: 100%;
    max-width: 220px;
    border-radius: 50%;
    background: #e2ffa03b;
}

.protection-item-content h3{
	font-size: 20px;
}

.protection-counter-box{
	margin-top: 80px;
}

.protection-counter-box .company-supports-content hr{
    color: var(--divider-color);
}

.protection-counter-box .company-supports-content h3{
	color: var(--primary-color);
}

.protection-counter-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.protection-counter-item{
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.protection-counter-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.protection-counter-item-content{
	width: calc(100% - 70px);
}

.protection-counter-item-content h2{
	font-size: 40px;
}

.protection-counter-item-content p{
	margin: 10px 0 0;
}













/*-------our-service--------*/


.our-services-gold{
    position: relative;
    padding: 50px 0;
	overflow: hidden;
}

.our-serv {
    text-align: center;
}
.our-serv h2 {
    padding: 0 240px;
}

.our-services-gold::before,
.our-services-gold::after{
	content: '';
    position: absolute;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	animation: move_effect 4s infinite linear alternate;
}

.our-services-gold::before{
	background-image: url(../../images/images/wel/our-service/cockroach.gif);
	top: -50px;
	right: -50px;
	width: 215px;
	height: 200px;
}


.our-services-gold::after{
	background-image: url('../images/section-bg-corner-image-2.png');
	bottom: -50px;
	left: -50px;
	width: 230px;
	height: 230px;
}

.service-item-gold {
    position: relative;
    background: var(--bg-color);
    border-radius: 12px;
    min-height: 400px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
    margin: 0 10px;
}

.service-item-gold:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-color);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-item-gold.active::before,
.service-item-gold:hover::before{
	transform: translate(100%, -100%);
}

.service-item-image-gold{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-image-gold,
.service-item-gold:hover .service-item-image-gold{
	opacity: 1;
}

.service-item-image-gold::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;	
	background-color: var(--primary-color);
	opacity: 60%;
}


.service-item-image-gold img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-body-gold{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    z-index: 2;
}
.service-item-btn-gold a {
    color: #fff;
}

.service-item-btn-gold {
    padding: 10px;
    background: #fff;
    font-family: var(--default-font);
    width: fit-content;
    border-radius: 5px;
    background: var(--primary-color);
}
.service-item-body-content-gold .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

.service-item-body-content-gold .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item-gold.active .service-item-body-content-gold .icon-box::before,
.service-item-gold:hover .service-item-body-content-gold .icon-box::before{
    transform: scale(1);
}

.service-item-body-content-gold .icon-box img{ 
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out; 
    z-index: 1;
}

.service-item-content-gold h2 {
    font-size: 20px;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.service-item-content-gold h2 a {
    color: inherit;
    font-size: 16px;
}

.service-item-gold.active .service-item-content-gold h2,
.service-item-gold:hover .service-item-content-gold h2{
	color: var(--white-color);
}

.service-item-content-gold p {
    border-top: 1px solid #ffffff1a;
    padding-top: 20px;
    margin: 20px 0 0;
    transition: all 0.4s ease-in-out;
    color: #fff;
}
.service-item-gold.active .service-item-content-gold p,
.service-item-gold:hover .service-item-content-gold p{
	color: var(--white-color);
	border-color: var(--dark-divider-color);
}

.service-item-gold.active .service-item-btn-gold a.readmore-btn,
.service-item-gold:hover .service-item-btn-gold a.readmore-btn{
    color: var(--white-color);
}

.service-item-gold.active .service-item-btn-gold a.readmore-btn::before,
.service-item-gold:hover .service-item-btn-gold a.readmore-btn::before{
    background-image: url('../images/arrow-white.svg');
}
/*---------__Why-choose-------------*/

.why-choose-us-gold {
    padding: 50px 0;
    background: #b2df5b2e;
}

.why-choose-us-content-gold{
    margin-right: 15px;
}

.why-choose-item-gold{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.why-choose-item-gold:last-child{
    padding: 0;
    margin: 0;
    border: none;
}

.why-choose-item-gold .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--blue-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item-gold .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item-gold:hover .icon-box::before{
    transform: scale(1);
}

.why-choose-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.why-choose-item-gold:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.why-choose-item-content-gold{
    width: calc(100% - 65px);
}

.why-choose-item-content-gold h3{
    font-size: 20px;
}

.why-choose-item-content-gold p{
    margin: 10px 0 0;
}

.why-choose-btn-gold{
    margin-top: 40px;
}

.why-choose-us-image-box-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.why-choose-image-gold figure{
    display: block;
    border-radius: 12px;
}

.why-choose-image-gold img{
    width: 100%;
    aspect-ratio: 1 / 1.037;
    object-fit: cover;
    border-radius: 12px;
}

.why-choose-bug-image-gold{
    margin: 0 10px 10px 60px;
}

.why-choose-bug-image-gold img{
    width: 100%;
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
}

.why-choose-image-box-1-gold{
    position: relative;
    width: 31%;
    z-index: 2;
}

.why-choose-image-box-1-gold .why-choose-image-gold{
    margin-right: -255px;
}

.why-choose-image-box-1-gold .why-choose-image-gold figure{
    border: 6px solid var(--bg-color);
}

.why-choose-image-box-2-gold{
    position: relative;
    width: 69%;
    padding-bottom: 200px;
}

.why-choose-image-box-2-gold .why-choose-image-gold img{
    aspect-ratio: 1 / 1.16;
}

.why-choose-image-box-2-gold .experience-circle-gold{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid var(--bg-color);
    border-radius: 50%;
    z-index: 2;
}

/*-----------------------------how it works---------

.how-it-work-gold{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.how-it-work-gold::before, 
.how-it-work-gold::after{
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.how-it-work-gold::before{
    background-image: url('../images/section-bg-corner-image-1.png');
    top: -50px;
    right: -50px;
    width: 215px;
    height: 200px;
    animation: move_effect 4s infinite linear alternate;
}

.how-it-work-gold::after{
    background-image: url('../images/section-bg-corner-image-2.png');
    bottom: -50px;
    left: -50px;
    width: 230px;
    height: 230px;
    animation: move_effect 4s infinite linear alternate;
}

.how-it-work-gold .container{
    position: relative;
    z-index: 1;
}

.how-work-item-list-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 40px 30px;
}

.how-work-item-gold:nth-child(even){
    flex-direction: column-reverse;
    margin-bottom: 91px;
}

.how-work-item-gold{
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.how-work-item-content-gold h3{
    font-size: 20px;
}

.how-work-item-content-gold p{
    margin: 10px 0 0;
}

.how-work-item-no-gold{
    position: relative;
}

.how-work-item-no-gold::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: calc(100%   30px);
    height: 1px;
    background-color: var(--divider-color);
}

.how-work-item-gold:last-child .how-work-item-no-gold::before{
    width: 100%;
}

.how-work-item-no-gold h3{
    position: relative;
    font-size: 16px;
    background-color: var(--accent-color);
    border-radius: 100%;
    height: 34px;
    width: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.how-work-item-gold:hover .how-work-item-no-gold h3{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.how-work-item-image-gold{
    overflow: hidden;
}

.how-work-item-image-gold figure{
    display: block;
    max-width: 200px;
    border-radius: 50%;
    margin: 0 auto;
}

.how-work-item-image-gold img{
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.how-work-item-content-gold {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 20px;
    background: var(--blue-color);
}
*/
.how-it-work-gold{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.how-it-work-gold::before, 
.how-it-work-gold::after{
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.how-it-work-gold::before{
    background-image: url('../images/section-bg-corner-image-1.png');
    top: -50px;
    right: -50px;
    width: 215px;
    height: 200px;
    animation: move_effect 4s infinite linear alternate;
}

.how-it-work-gold::after{
    background-image: url('../images/section-bg-corner-image-2.png');
    bottom: -50px;
    left: -50px;
    width: 230px;
    height: 230px;
    animation: move_effect 4s infinite linear alternate;
}

.how-it-work-gold .container{
    position: relative;
    z-index: 1;
}

.how-work-item-list-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 40px 30px;
}

.how-work-item-gold:nth-child(even){
    flex-direction: column-reverse;
    margin-bottom: 91px;
}

.how-work-item-gold{
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.how-work-item-content-gold h3{
    font-size: 20px;
    color: #fff;
}

.how-work-item-content-gold p{
    margin: 10px 0 0;
    color: #fff;
}

.how-work-item-no-gold{
    position: relative;
}

.how-work-item-no-gold::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: calc(100%   30px);
    height: 1px;
    background-color: var(--primary-color);
}

.how-work-item-gold:last-child .how-work-item-no-gold::before{
    width: 100%;
}

.how-work-item-no-gold h3{
    position: relative;
    font-size: 16px;
    background-color: var(--accent-color);
    border-radius: 100%;
    height: 34px;
    width: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.how-work-item-gold:hover .how-work-item-no-gold h3{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.how-work-item-image-gold{
    overflow: hidden;
}

.how-work-item-image-gold figure{
    display: block;
    max-width: 200px;
    border-radius: 50%;
    margin: 0 auto;
}

.how-work-item-image-gold img{
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.how-work-item-content-gold {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 20px;
    background: var(--blue-color);
}

/*-Clients-*/
#clients_section .portfolio-style-1 img {
    
    height: auto !important;
    width: 100% !important;
    box-shadow: unset

}

/*QC FOOTER STYLE START*/
#qcfooter-block { background: #1d2f2c; color: #fff;
    background-color: var(--primary-color);
    background-image: url(../../images/images/work/abt-pg/bg/gradient-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
     padding: 50px 0 10px;
     position: relative;
}


#qcfooter-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../../images/images/work/abt-pg/bg/bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
}
#qcfooter-block h3 {
    font-size: 25px;
    color: var(--accent-color);
}
.footer-content {margin: 5px 0px;}
.footer-content .qc-brand {height: 60px; display: block; margin: 10px 0;}
.footer-content .qc-brand img {
    height: 100%;
    width: 280px;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}
.footer-content .quicklinks li a {
    padding: 5px 0px;
    display: block;
    color: #fff;
    line-height: 2;
}
.footer-content .quicklinks {margin: 0; padding: 0;}
.footer-content .quicklinks li {list-style: none; display: block;}
.footer-content .quicklinks li a {padding: 5px 0px; display: block; color: #fff;}
.footer-content .quicklinks li i {margin-right: 5px;}
.footer-content .social-links .qc-social-list {margin: 10px 0px; padding: 0; color: #ddd; font-size: 15px;}
.footer-content .social-links .qc-social-list li {display: inline-block; margin-right: 10px;}
.qc-social-list .qc-social .social {width: 40px;height: 40px;line-height: 40px;text-align: center;display: block;font-size: 16px;color: #fff; border: 1px solid #fff; border-radius: 3px;}
.footer-content .mobile-apps {display: flex; padding: 10px 0px;}
.footer-content .mobile-apps .mobApp {padding-right: 5px;}
.qcinput {border: 2px solid #fff; color: #fff; padding: 5px; margin-bottom: 10px;}
.qcEmailSubBtn {padding: 10px; line-height: 0;font-size: 14px; background: #26A69A; color: #fff; border: 2px solid transparent; margin-bottom: 5px; outline: none;}
.qcEmailSubBtn:hover, .qcEmailSubBtn:focus {background: #26A69A; color: #fff; border: 2px solid #fff; outline: none;}
.qcEmailSubBtn i {font-size: 13px;}
#qcfooter-copyrights {
    padding: 10px 0;
    background: var(--primary-color);
    border-top: 1px solid #ddd;
}
#qcfooter-copyrights .copyright {font-size: 14px; color: #fff;}
#qcfooter-copyrights .developer {color: #fff; text-decoration: underline;}
.head-con span {
    color: var(--accent-color);
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    gap: 12px;
}
.con-content p {
    padding: 0 0 10px !important;
}
/*QC FOOTER STYLE END*/




/*---------about-page----*/

.pageheader {
    background: url(../../images/images/about-page/brdcrmb.png);
    position: relative;
    background-size: cover;
}
.pageheader:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(3, 63, 45, 0.00) 19.79%, rgba(3, 63, 45, 0.95) 83.96%);
    width: 100%;
    height: 100%;
    
}
.breadcrumb.text-right {
    display: none;
}
.about_page_title {
    font-size: 45px;
}
.about_page_title {
    color: #ffffff;
    font-family: var(--default-font);
}

/*----------About-section-----*/
.why-choose-us-prime {
    padding: 0;
}
.why-choose-us-image-box-prime{
    background-image: url('../images/why-choose-us-image-bg-image-prime.png');
    background-repeat: no-repeat;
    background-position: top 140px left 0px;
    background-size: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin-right: -0.354vw;
}

.why-choose-us-img-prime figure{
    display: block;
    border-radius: 20px;
}

.why-choose-us-img-prime img{
    width: 100%;
    aspect-ratio: 1 / 1.347;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-us-img-prime.image-1{
    position: relative;
    width: 28%;
    z-index: 2;
}

.why-choose-us-img-prime.image-1 figure{
    border: 5px solid var(--white-color);
    margin-right: -85px;
}

.why-choose-us-img-prime.image-1 img{
    border-radius: 16px;
}

.why-choose-us-img-prime.image-2{
    width: 72%;
    padding-bottom: 45px;
}

.why-choose-item-list-prime{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-item-prime{
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.why-choose-item-prime .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-choose-item-prime .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item-prime:hover .icon-box::before{
    transform: scale(1);
}

.why-choose-item-prime .icon-box img{
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out; 
    z-index: 1;
}

.why-choose-item-prime:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.why-choose-item-content-prime{
    width: calc(100% - 65px);
}

.why-choose-item-content-prime h3{
    font-size: 20px;
    line-height: 1.4em;
}

.why-choose-list-prime{
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.why-choose-list-prime ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-list-prime ul li{
    position: relative;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding-left: 25px;
}

.why-choose-list-prime ul li:last-child{
	margin-bottom: 0;
}

.why-choose-list-prime ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.why-choose-footer-prime{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    margin-top: 40px;
}

.abt-2 {
    padding: 30px 0;
}
.abt-list li {
    list-style-type: none;
    line-height: 2;
}
.abt2-img img {
    width: 100%;
    border-radius: 20px;
}

/*----------Product-image---*/

.pro_image2 {
    width: 100%;
}

.pro_title {
    color: var(--primary-color) !important;
    font-family: 'intertight';
    font-size: 20px !important;
    text-transform: uppercase;
    font-weight: 600;
    padding: 30px 0;
}
.extra-item {
    margin: 20px 0;
    padding: 30px;
    box-shadow: rgb(136 165 191 / 48%) 6px 2px 16px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;
}
.btn-block {
    background: var(--blue-color);
    font-size: 18px;
    font-family: 'intertight';
    font-weight: 400;
}
.header_list {
    list-style-type: none;
}
.btn-primary:hover {
    background: var(--primary-color);
}
/*--------Gasllery-----*/
.portfolio-style-1 img {
    width: 100% !important;
    height: 210px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    border-radius: 10px;
}
.visible-title1 a {
    background-color: #fff;
    color: #000;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    padding: 10px 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 35px;
    margin: 0px -10px;
}
.portfolio-filter {
 
    display: none;
}
/*--Contact-page--*/
.cont-pge .head-con span {
    color: var(--primary-color);
}

/*----------media Query-----*/


@media (max-width: 767px){
.header_logo {
    width: 300px;
    height: auto;
}
#topbar .container {
    padding: 0 !important;
}
.topbar {
    background: var(--primary-color);
}
.topbar li {
    padding: 5px;
}
.our-serv h2 {
    padding: 0;
}
.protection-item {
     width: 100%; 
   
}
.protection-item-list {
    display: block;
}
.why-choose-image-box-1-gold .why-choose-image-gold {
    margin-right: -125px;
}
.why-choose-bug-image-gold {
    margin: 0 10px 10px 20px;
}
.why-choose-us-gold .about-us-info-btn {
    border-top: 1px solid var(--divider-color);
    margin-top: 0;
    padding-top: 0;
}
.why-choose-item-gold {
    display: block;
}
.about-us-image.image-2 figure {
    margin-left: -70px;
}
.about-us-image-box {
    height: auto;
    margin: 0 0 30px;
}
.about-us-info-box {
    width: 100%;
}
.about-us-body-box {
    display: block;
}
.about-counter-box {
    width: 100%;
}
.how-work-item-gold {
    width: 100%;
}
.how-work-item-gold:nth-child(even) {
    flex-direction: column;
}
.how-it-work-gold {
    padding: 50px 0 0;
}
.why-choose-item-list-prime {
    display: block;
}
.why-choose-item-prime {
    width: 100%;
}
.call-text {
    display: none !important;
}
.why-choose-item-content-gold {
    width: 100%;
}
}