@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Slab:wght@100..900&display=swap');

body {
    font-family: 'Nunito Sans';
}

:root {
    --primary-color: #004fa5;
    --secondary-color: #79bb3a;
    --dark-color: #000;
    --light-color: #fff;
}

a {
    text-decoration: none;
}

p {
    color: var(--dark-color);
}

ul {
    list-style: none;
}


/* header  */

.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.top-bar p {
    color: var(--light-color);
    margin: 0;
}

.top-bar p span {
    margin-left: 10px;
}

.header {
    background-color: var(--light-color);
}

.navbar .navbar-nav .nav-item {
    margin: 0 7px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--dark-color);
    text-transform: capitalize;
}

.dropdown-item {
    text-transform: capitalize;
}

.theme-btn a {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 13px 18px;
    border-radius: 26px;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 700;
}

/* ednd header  */


/* hero-section */

.hero-section {
    background-image: url(../images/hero-section.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 50px;
    position: relative;
    z-index: 0;
}

.hero-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #4646468c;
    z-index: -1;
}

.hero-section .hero-inner {
    padding-top: 100px;
}

.hero-section .hero-inner h2 {
    color: var(--light-color);
    font-size: 47px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-section .hero-inner h2 span {
    color: var(--secondary-color);
}

.hero-section .hero-inner p {
    width: 90%;
    line-height: 30px;
    padding-top: 5px;
    color: #FFF;
    font-size: 18px;
}

.hero-section .hero-btn a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    border: 2px solid #fff;
    border-radius: 50px;
    justify-content: center;
    padding: 15px 10px;
    width: 50%;
    margin-top: 20px;
    transition: .2s linear;
    text-decoration: none;
}

.hero-section .hero-btn a img {
    width: 30px;
    background: #fff;
    border-radius: 100%;
    transition: .2s linear;
}

.hero-btn a:hover {
    color: #fff;
    background: #4d8a31a1;
}

.hero-btn:hover img {
    transform: translateX(10px);
}

.hero-section .slick-slider {
    margin: 0;
    padding: 0;
}

/* .hero-section .slick-slider img {
    width: 100%;
    height: 100%;
} */

.all-device {
    width: 100%;
    /* margin-left: auto; */
}

.all-device ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.all-device ul li img {
    width: 100%;
    height: auto;
}

.all-device ul li.mt {
    margin-top: -30px !important;
}

/* end hero-section */

/* after-hero */

.after-hero {
    /* position: relative; */
    padding: 100px 50px 0 50px;
}

.after-img img {
    margin-top: -300px;
    z-index: -1;
    position: relative;
    width: 100%;
}

.after-hero .inner-after h2 {
    color: var(--dark-color);
    font-size: 43px;
    font-weight: 800;
}

.after-hero .inner-after h2 span {
    color: var(--secondary-color);
}

.after-hero .inner-after .contact-btn a {
    width: 60%;
}

.after-hero .inner-after .contact-btn a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.after-hero .inner-after .contact-btn a:hover img {
    filter: brightness(10.5);
}

.first {
    display: flex;
    gap: 18px;
}

.first a img {
    width: 33px;
}


a.\37 {
    position: relative;
    top: 100px;
    left: 200px;
    animation-duration: 2s !important
}

a.\31 {
    position: relative;
    animation-duration: 4s !important;
}

a.\32 {
    position: relative;
    top: -40px;
    animation-duration: 3s !important
}

a.\34 {
    position: relative;
    top: 50px
}

a.\36 {
    position: relative;
    top: 100px;
    animation-duration: 2s !important
}

a.\35 {
    position: relative;
    left: 40px;
    animation-duration: 3s !important
}

a.\33 {
    position: relative;
    /* left: 50px; */
    animation-duration: 2s !important
}

.first a {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    list-style: none;
    padding: 18px 15px;
    margin: 0 0 10px !important;
    display: flex;
    align-items: center;
    background: #79bb3abf;
    justify-content: center;
    border-radius: 50px;
    transition: .2s linear;
    gap: 20px;
    width: 100%;
    color: #fff;
}

.first a p {
    color: var(--light-color);
    font-size: 12px;
    margin: 0;
}

.first a p span {
    font-size: 18px;
    font-weight: 600;
}

.last-para a {
    width: 32%;
}


@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    65% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, 0);
    }

}

/* after hero */

.products {
    padding: 50px 50px;
}

.products .inner-heading h2 {
    color: var(--dark-color);
    font-size: 52px;
    font-weight: 800;
    margin: 0;
}

.products .inner-heading h2 span {
    color: var(--secondary-color);
}

.tab-sec {
    display: flex;
}

.nav-pills {
    gap: 10px;
    width: 25%;
}

.tab-content {
    width: 75%;
    padding-left: 40px;
}

.custom-tab.active {
    background-color: #67b455;
}

.custom-tab {
    flex: none;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #c3c3c3;
}

.custom-tab.active h3 {
    color: var(--light-color);
}

.custom-tab:hover {
    background-color: #67b455;
}

.custom-tab:hover h3 {
    color: #fff;
}

.custom-tab h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    color: #263D4F;
    font-size: 16px;
    font-weight: 500;
}

.custom-tab h3 svg {
    transform: rotate(-45deg);
}

.custom-tab.active h3 svg {
    transform: rotate(0deg);
}

.p-img-box {
    position: relative;
    overflow: hidden;
}

.p-img-box a img {
    width: 160px;
}

.p-img-box a h6 {
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 700;
}

a.see-more {
    display: flex;
    align-items: center;
    color: #263D4F;
    font-size: 14px;
    font-weight: 700;
    justify-content: space-around;
    border: 1px solid #263D4F;
    border-radius: 50px;
    padding: 10px;
    margin-top: 90px;
}

a.see-more img {
    width: 10%;
    transition: .2s linear;
}

a.see-more:hover {
    background: #7ab261;
    border: 1px solid #fff;
    color: #fff;
}

a.see-more:hover img {
    transform: rotate(45deg);
    filter: brightness(9.5);
}

/* end after hero */

/* contact */

/* .contact-section {
    background-image: url(../images/contact-banner.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 50px 71px 50px;
    height: 570px;
} */
.inner-content {
    background-color: #78bb3ae5;
    padding: 40px 30px;
}

.inner-content h2 {
    color: #FFF;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-btn a {
    text-transform: capitalize;
    color: var(--secondary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #fff;
    background-color: var(--light-color);
    justify-content: center;
    border-radius: 50px;
    width: 37%;
    height: 50px;
    transition: .2s linear;
}

.contact-btn a:hover {
    box-shadow: 0 10px 10px #27372157;
}

.contact-btn a img {
    width: 10px;
    height: 10px;
    transition: .2s linear;
}

.contact-btn a:hover img {
    transform: rotate(45deg);
}

.enq-sec {
    padding-left: 50px;
    padding-right: 50px;
}

.enquiry-sec {
    background-image: url(../images/enquiry-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
    /* margin-top: -50px; */
    margin-bottom: 70px;
}

.enquiry-sec::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #011e3ec0;
    z-index: -1;
}


.enquiry-inner p {
    color: #79bb3a;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.enquiry-inner h6 {
    color: var(--light-color);
    font-size: 25px;
    font-weight: 700;
}

.enquiry-sec .contact-btn {
    display: flex;
    justify-content: flex-end;
}

.enquiry-sec .contact-btn a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.enquiry-sec .contact-btn a:hover img {
    filter: brightness(10.5);
}

/* end contact */

/* blogs */

.blogs {
    background-color: #3b4f28;
    padding: 100px 50px;
}

.blog-img {
    overflow: hidden;
}

.blog-img:hover a img {
    transform: scale(1.2);
    transition: transform 4s ease-out, opacity .25s ease-out;
}

.blog-content {
    margin-top: 15px;
}

.blog-content h2 {
    font-size: 18px;
    color: var(--light-color);
}

.blog-btn a {
    text-transform: capitalize;
    color: #F7F7FC;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #fff;
    justify-content: center;
    border-radius: 50px;
    width: 45%;
    height: 40px;
    transition: .2s linear;
}

.blog-btn a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.blog-btn a img {
    width: 10px;
    height: 10px;
    transition: .2s linear;
}

.blog-btn a:hover img {
    transform: rotate(45deg);
}

.blogs .inner-heading {
    position: relative;
    left: 40px;
    top: 20px;
}

.blogs .inner-heading .blog-title h2 {
    color: var(--light-color);
    font-size: 54px;
    font-weight: 700;
}

.blogs .inner-heading .blog-title h2 span {
    color: var(--secondary-color);
}

/* end blogs */

/* testimonial */

.testimonial {
    background-color: #011e3e;
    padding-bottom: 100px;
}

.testimonial .inner-head {
    padding: 70px 50px;
}

.testimonial-slider {
    padding: 0 50px;
}

.testimonial .inner-head h2 {
    color: var(--light-color);
    font-size: 54px;
    font-weight: 700;
}

.testimonial .inner-head h2 span {
    color: var(--secondary-color);
}

.leaf-img {
    margin-right: 20px;
}

.testimonial-slider .suite-text h3 {
    color: var(--light-color);
    font-size: 16px;
}

.testimonial-slider .suite-text p {
    color: var(--light-color);
}

.swiper-slides {
    position: relative;
    padding-left: 40px;
}

.swiper-slides:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(45deg, #79bb3a, transparent);
    left: 0;
    width: 1px;
    height: 280px;
}

.testimonial .arrow-left {
    left: 47%;
}

.testimonial .arrow-right {
    right: 47%;
}

.arrow-left,
.arrow-right {
    transition: all 0.2s ease-In;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: -74px;
    transform: translatey(-50%);
    z-index: 1;
}

/* end testimonial */

/* query */

.query {
    padding: 100px 50px;
}

.query h2 {
    font-weight: 700;
    font-size: 40px;
    margin: 0;
}

.query h2 span {
    color: var(--secondary-color);
}

.query-btn a {
    color: #263D4F;
    font-size: 32px;
    font-weight: 700;
    display: block;
    align-items: center;
    gap: 15px;
    transition: .2s linear;
    border-bottom: 1px solid #263D4F;
    width: 80%;
    margin-left: 100px;
    padding: 15px;
}

.query-btn a img {
    width: 4%;
    transition: .2s linear;
}

/* end query */


/* footer */

.footer.solid-bg {
    background: #011e3e none repeat center top;
    position: relative;
    padding-top: 120px;
    z-index: 0;
    overflow: hidden;
}

.footer.solid-bg:before {
    position: absolute;
    content: "";
    background: #002650;
    width: 24%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0 60px 60px 0;
    z-index: -1;
}

.footer .footer-logo p {
    color: #fff;
    text-align: left;
    font-size: 14px;
    padding: 15px 70px 0 0;
    line-height: 24px;
}

.footer .footer-sec {
    position: relative;
}

.footer .footer-sec:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(273deg, #ffffff36, transparent);
    width: 60%;
    height: 1px;
    right: 400px;
    top: 35px;
}

.footer .footer-sec:after {
    position: absolute;
    content: "";
    background-image: linear-gradient(273deg, #ffffff36, transparent);
    width: 100%;
    height: 1px;
    right: -150px;
    bottom: 0;
}

.footer .footer-links h4,
.contact-info h4 {
    text-transform: capitalize;
    color: #ffffff;
    padding-bottom: 30px;
    opacity: 50%;
    font-weight: 500;
    font-size: 20px;
    display: block;
    margin: 0;
}

.footer .footer-links ul li {

    padding-bottom: 15px;
}

.footer .footer-links ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
}

.footer .contact-info {
    background: #002650;
    margin-right: -100px;
    border: 1px solid #004492;
    border-radius: 25px;
    margin-top: -30px;
    padding-top: 30px;
    padding-left: 40px;
    position: relative;
    padding-right: 40px;
}

.footer .contact-info:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(273deg, #ffffff36, transparent);
    width: 100%;
    height: 1px;
    right: 0;
    top: 63px;
}

.contact-info ul {
    display: flex;
    gap: 10px;
    width: 80%;
}

.contact-info ul li {
    color: var(--light-color);
    font-size: 12px;
}

.contact-info ul li h5,
.contact-info ul li h6 {
    font-size: 12px;
    text-transform: capitalize;
}

.socail-media {
    display: flex;
    padding-top: 40px;
    gap: 15px;
}

.socail-media h4 {
    text-transform: capitalize;
    color: #ffffff;
    padding-bottom: 30px;
    opacity: 50%;
    font-weight: 500;
    font-size: 20px;
    display: block;
}

.socail-media ul {
    padding: 0;
    display: flex;
    gap: 20px;
}

.socail-media ul li img {
    width: 25px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
}

.copyright p {
    color: var(--light-color);
}

#chat-icon {
    bottom: 25px;
    left: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #00000026;
}


/* end footer  */

/* contact page */

.header-banner {
    padding: 100px 50px 170px 50px;
    background-image: url(../images/inner-banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: ellipse(80% 100% at top);
    clip-path: ellipse(80% 100% at top);
}

.header-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #004fa58f;
    z-index: -1;
}

.header-heading h2 {
    color: var(--light-color);
    font-size: 40px;
    font-weight: 900;
    text-transform: capitalize;
    text-shadow: 1px 3px #000000ad;
}

.header-heading ul {
    display: inline-flex;
    padding: 5px 10px;
} 

.header-heading ul li {
    padding: 5px 10px;
    margin: 0px 5px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    box-shadow: 0px 8px 15px 0px #000000a8;
}

.header-heading ul li, .header-heading ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
}

.address-info-section {
    padding: 0px 50px 50px 50px;
    margin-top: -100px;
    z-index: 999;
    position: relative;
}

.address-info-section .address-box {
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 2px 25px 0px #b7b7b7a8;
    border-radius: 9px;
    padding: 20px 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .5s;
}

.address-info-section .address-box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2%;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all .5s;
}

.address-info-section .address-box:hover::before {
    height: 100%;
}

.address-info-section .address-box:hover .text-box h6, .address-info-section .address-box:hover .text-box p {
    color: #fff;
    transition: all .5s;
}

.address-info-section .address-box .icon-box img {
    width: 60px;
    border: 2px solid #004fa4;
    border-radius: 50px;
    background-color: #fff;
}

.address-info-section .address-box .text-box h6 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

.address-info-section .address-box .text-box p {
    color: var(--dark-color);
    font-size: 15px;
    margin: 0;
}

.form-section {
    padding: 50px;
}

.form-section .info-section h6 {
    color: #004fa5;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.form-section .info-section h4 {
    color: #000;
    font-size: 40px;
    font-weight: 800;
}

.form-section .info-section h4 span {
    font-weight: 300;
}

.form-section .info-section .cont-box {
    position: relative;
    padding-left: 66px;
    padding-top: 5px;
}

.form-section .info-section .cont-box img {
    position: absolute;
    left: 0;
    width: 50px;
    top: 0;
}

.form-section .info-section .cont-box h5 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #000000;
}

.form-section .info-section .cont-box p {
    font-size: 18px;
}

.form-section .contact-form {
    padding: 30px;
    box-shadow: 0px 0px 21px 0px #c1c1c1;
    border-radius: 20px;
}

.form-group{
	margin-bottom: 25px;
}
.form-group > label{
	display: block;
	font-size: 18px;	
	color: #000;
}
.custom-control-label{
	color: #000;
	font-size: 16px;
}
.form-control{
	height: 50px;
	background: #ecf0f4;
	border-color: transparent;
	padding: 0 15px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.form-control:focus{
	border-color: #00bcd9;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
	height: 100px;
	padding-top: 15px;
	resize: none;
}

.btn{
	padding: .657rem .75rem;
	font-size: 18px;
	letter-spacing: 0.050em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
    text-transform: capitalize;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    border-radius: 50px;
    height: 50px;
    transition: .2s linear;
}

.btn-primary img {
    width: 10px;
    height: 10px;
    transition: .2s linear;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:hover img {
    filter: brightness(10.5);
}

.btn-primary:hover img {
    transform: rotate(45deg);
}

/* end contact page */


/* about us  */

.about-company {
    padding: 50px;
}

.about-company .company-title h6 {
    color: #004fa5;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.about-company .company-title h4 {
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 800;
}

.about-company .company-title h4 span {
    /* font-weight: 300; */
    color: var(--dark-color);
}

.about-company .outer-box {
    padding: 10px;
    box-shadow: 0px 9px 16px -2px #c1c1c1;
    border-radius: 25px;
}

.about-company .feature-box {
    position: relative;
    padding-left: 70px;
    margin-top: 30px;
}

.about-company .feature-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
}

.about-company .feature-box h6 {
    font-weight: 800;
    font-size: 20px;
    text-transform: capitalize;
}

.about-company .feature-box p {
    font-size: 14px;
    margin: 0;
}

.enq-section {
    padding: 50px;
    overflow: hidden;
}

.enq-section .left-img img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 450px;
    border-radius: 30px;
}

.enq-section .right-content {
    padding: 30px;
    background: #fff;
    margin-left: -100px;
    border-radius: 35px;
    position: relative;
}

.enq-section .right-content h6 {
    color: #004fa5;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.enq-section .right-content h4 {
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 800;
}

.enq-section .right-content h4 span {
    /* font-weight: 300; */
    color: var(--dark-color);
}

.enq-section .right-content h5 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 18px;
}

.enq-section .right-content p {
    font-size: 16px;
}

.enq-section .right-content .email-sec, .enq-section .right-content .call-sec {
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.enq-section .right-content .email-sec::before, .enq-section .right-content .call-sec::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
    left: 0;
    top: 0;
    z-index: -1;
}

.enq-section .right-content .video-btn {
    position: absolute;
    right: 80px;
    bottom: 60px;
    z-index: 0;
}


.enq-section .right-content .video-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  
  .enq-section .right-content .video-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: all 200ms;
  }

  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2.5);
      opacity: 0;
    }
  }

/* end about us */


/* category page */

.product-content h1 {
    color: var(--dark-color);
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.product-content h1 span {
    color: var(--secondary-color);
}

.product-content a {
    text-transform: capitalize;
    color: var(--light-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    justify-content: center;
    border-radius: 50px;
    width: 40%;
    height: 50px;
    transition: .2s linear;
}

.product-content a:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.product-content a:hover img {
    transform: rotate(45deg);
}

.product-content a img {
    filter: brightness(10.5);
    width: 10px;
    height: 10px;
    transition: .2s linear;
}

.table-content h3 {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 800;
    margin: 15px 0;
}


.table-content ul li {
    list-style: circle;
}

/* end category page */



.seo-links {
    color: #fff;
}

.seo-links a {
    color: #fff;
}