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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
    --font-poppins: "Poppins", sans-serif;
    --primary-clr: #000000;
    --secondary-clr: #00A551;
    --light-green-clr: #7CD6A9;
    --orange-clr: #F48120;
    --white-clr: #fff;
    --granite-gray-clr: #666666;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-poppins);
}

.custom-container {
    margin: 0 150px;
    /* 130px space on the left and right */
    padding: 0 10px;
}

@media (max-width: 1600px) {
    .custom-container {
        margin: 0 80px;
        padding: 0 10px;
    }
}

@media (max-width: 1199px) {
    .custom-container {
        margin: 0 70px;
        /* Reduce margin on tablets and medium devices */
    }
}

@media (max-width: 1024px) {
    .custom-container {
        margin: 0 50px;
        /* Reduce margin on tablets and medium devices */
    }
}

@media (max-width: 768px) {
    .custom-container {
        margin: 0 15px;
        /* Reduce margin further on small devices */
    }
}

@media (max-width: 480px) {
    .custom-container {
        margin: 0 15px;
        /* Minimal margin on very small devices */
    }
}

img {
    max-width: 100%;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

a {
    color: var(--primary-clr);
    text-decoration: none;
    /* transition: 0.5s cubic-bezier(0.4, 0, 1, 1); */
}

a:hover {
    color: var(--orange-clr);
    text-decoration: none;
    outline: 0;
}

h1 {
    margin: 0;
    color: var(--primary-clr);
}

h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-clr);
    text-transform: uppercase;
}

h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-clr);
}

h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-clr);
}

h2.h2heading {
    font-size: 35px;
    line-height: 42px;
}

h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--granite-gray-clr);
}

p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-clr);
}

a {
    text-decoration: none;
    color: var(--primary-clr);
}

a:hover {
    color: var(--orange-clr);
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.primary-btn {
    /* padding: 19px 40px; */
    padding: 15px 30px;
    background-color: var(--orange-clr);
    border: 1px solid var(--orange-clr);
    color: var(--white-clr);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
    border-radius: 6px;
}

.primary-btn:hover {
    background: var(--white-clr);
    color: var(--orange-clr);
}

.green-btn {
    /* padding: 19px 40px; */
    padding: 15px 30px;
    background-color: var(--secondary-clr);
    border: 1px solid var(--secondary-clr);
    color: var(--white-clr);
    border: 1px solid var(--secondary-clr);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
    letter-spacing: 0.18px;
    border-radius: 6px;
}

.green-btn:hover {
    background-color: var(--white-clr);
    color: var(--secondary-clr);
}

.py-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.px-60 {
    padding: 0 60px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

li.header-button a {
    padding: 15px 30px !important;
    background-color: var(--orange-clr);
    border: 1px solid var(--orange-clr);
    color: var(--white-clr);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
    border-radius: 6px;
}

li.header-button:hover a {
    background: var(--white-clr);
    color: var(--orange-clr);
}


.common-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.common-heading p {
    color: var(--granite-gray-clr);
}

.reverse-row {
    flex-direction: row-reverse;
}

.transperent-title {
    font-size: 163px;
    font-weight: 800;
    color: #f1f1f1;
    line-height: 150px;
    top: 50px;
    position: relative;
    z-index: -1;
}

.sub-title {
    font-size: 25px;
    font-weight: normal;
    color: #666666;
}

@media only screen and (max-width: 991px) {
    .py-100 {
        padding: 80px 0;
    }

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

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

@media only screen and (max-width: 767px) {
    .py-100 {
        padding: 70px 0;
    }

    .pt-100 {
        padding-top: 70px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }

    .py-60 {
        padding: 50px 0;
    }

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

    .pb-60 {
        padding-bottom: 50px;
    }

    .px-60 {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 575px) {
    .py-100 {
        padding: 50px 0;
    }

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

    .pb-100 {
        padding-bottom: 50px;
    }

    .py-60 {
        padding: 30px 0;
    }

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

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

    .px-60 {
        padding: 0 30px;
    }
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

.lb-data .lb-close {
    background: url(../image/close.png) top right no-repeat !important;
}

.lb-nav a.lb-prev {
    background: url(../image/prev.png) left 48% no-repeat !important;
}

.lb-nav a.lb-next {
    background: url(../image/next.png) right 48% no-repeat !important;
}

.lb-cancel {
    background: url(../image/loading.gif) no-repeat !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header {
    padding: 0;
    z-index: 99;
}

.main-header .logo {
    padding: 0;
    margin: 0;
}

.main-header .logo img {
    max-width: 213px;
    height: auto;
    object-fit: cover;
}

.main-header .nav-menu {
    align-items: center;
    gap: 30px;
}
header.main-header .navbar{
	padding: 30px 0;
}
.main-header .nav-menu li{
	position: relative;
}

.nav-menu .nav-item .nav-link {
    font-size: 18px;
    font-weight: 400;
/*     padding: 60px 0; */
	padding: 20px 0;
    color: var(--white-clr);
    transition: 0.5s all;
    text-transform: capitalize;
}

.nav-menu .nav-item .nav-link:hover {
    color: var(--orange-clr);
}

.nav-menu .nav-item .nav-link.active {
    color: var(--orange-clr);
}

header.main-header {
    background-color: transparent;
    z-index: 9999;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 90px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white-clr);
    border: 0;
    border-radius: 3px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu li {
    margin-bottom: 5px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
    color: var(--orange-clr);
}

.main-header .navbar-toggler {
    background-color: unset;
    border: 0;
    padding: 0;
}

.main-header .navbar-toggler .bars i {
    font-size: 30px;
    color: var(--orange-clr);
}

.main-header .btn-close {
    display: none;
}

.main-header .btn-close:focus {
    box-shadow: unset;
}
/* ====== Drop down */

/* .navbar .nav-item ul {
  display: block;
  position: absolute;
  top: 0;
  left: 14px;
  top: 0;;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .nav-item ul li {
  min-width: 230px;
}

.navbar .nav-item ul a {
  padding: 10px 10px;
  text-transform: none;
}

.navbar .nav-item ul a i {
  font-size: 12px;
}

.navbar .nav-item ul a:hover,
.navbar .nav-item ul .active:hover,
.navbar .nav-item ul li:hover>a {
  color: var(--primary-color);
}

.navbar .nav-item:hover>ul {
  opacity: 1;
  top: 70%;
  visibility: visible;
}
.navbar .nav-item:hover>ul li a {
	font-size: 15px;
    color: #000;
    padding: 10px 10px;
    text-transform: none;
}
.navbar .nav-item .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .nav-item .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .nav-item .nav-item ul {
    left: -90%;
  }

  .navbar .nav-item .nav-item:hover>ul {
    left: -100%;
  }
}
.main-header .nav-menu li {
    position: relative;
} */
/*--------------------------------------------------------------
Home Page start
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
    width: 100%;
    overflow: hidden;
}

.banner {
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-content::before {
    content: '';
    position: absolute;
    bottom: 250px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://www.thetop10.in/asian-flooring/assets/image/bg-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    display: none;
}

.banner-content .bg-top-title {
    font-size: 76px;
    font-weight: 800;
    color: var(--white-clr);
}

.banner-content .bg-title {
    font-size: 64px;
    font-weight: 800;
	line-height:84px;
    color: var(--white-clr);
}

.banner-content .bg-bold {
    font-size: 118px;
    font-weight: 800;
    color: #FF9C2A;
    line-height: 90px;
}

.banner-content p {
    font-size: 23px;
    font-weight: 400;
    color: var(--white-clr);
}

.banner-content .green-btn {
    margin-top: 40px;
    font-size: 18px;
}

.banner-slide.owl-carousel .owl-dots {
    position: absolute;
    bottom: 50px;
    left: 48%;
    margin-top: 0 !important;
}

.banner-slide.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px 7px;
    background: var(--white-clr);
    border-radius: 3px;
}

.banner-slide.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--orange-clr);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
}

.image-grid {
    display: grid;
    row-gap: 20px;
}

.image-grid .image-row {
    display: flex;
}

.image-grid .image-row {
    gap: 20px;
}

.image-grid .image-row .image {
    height: 280px;
}

.image-grid .image-row .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
}

.image-grid .image-row .image-01 {
    flex: 3;
}

.image-grid .image-row .image-02 {
    flex: 2;
}

.image-grid .image-row .image-03 {
    flex: 2;
}

.image-grid .image-row .image-04 {
    flex: 3;
}

@media screen and (max-width: 400px) {
    .image-grid .image-row {
        flex-direction: column;
    }

    .image-grid .image-row .image {
        flex-basis: auto;
    }
}

.about-images {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-images img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .title {
    font-size: 14px;
    font-weight: normal;
    color: var(--granite-gray-clr);
    margin-bottom: 5px;
}

.about-content h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content .primary-btn {
    width: max-content;
    margin-top: 10px;
}

.counter-bx {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
}

.counter-bx .stat {
    background-color: #1f9f5f;
    color: #fff;
    padding: 22px;
    border-radius: 5px;
    flex: 1;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
}

.counter-bx .stat .counter {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    color: var(--white-clr);
    line-height: normal;
}

.counter-bx .stat span {
    font-size: 40px;
    line-height: normal;
    font-weight: 600;
    margin: 0;
    color: var(--white-clr);
}

.counter-bx .stat p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-clr);
    padding: 0;
}

@media (max-width: 1600px) {
    .counter-bx {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Certificate
--------------------------------------------------------------*/
.swiper-slide-prev,
.swiper-slide-next {
    filter: blur(5px);
}

.certificate-bx-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.certificate-img {
    text-align: center;
    /* max-width: 150px; */
    max-width: 100px;
    margin: auto;
}

.certificate-img img {
    width: 100%;
    object-fit: contain;
    margin: auto;
    /* -webkit-filter: grayscale(1);
    filter: grayscale(1); */
}

.certificate-img img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
}

/*--------------------------------------------------------------
# Select a Sport
--------------------------------------------------------------*/
.select-sport-bx {
    position: relative;
}

.slide-content {
    position: relative;
}

.slide-text h4 {
    color: #fff;
    padding: 15px;
}

.slide-text h4 a {
    color: #fff;
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #0000007d;
    color: #fff;
    width: 100%;
    text-align: center;
}

.select-sport-bx::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #00000000 0%, #00000099 100%) 0% 0% no-repeat padding-box;
}

.sport-slide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.select-sport-bx .select-sport-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.select-sport-bx .select-sport-title h4 a {
    color: var(--white-clr);
    text-align: center;
    text-wrap: nowrap;
}

/*--------------------------------------------------------------
# Our Products
--------------------------------------------------------------*/
.our-products-slide-bx {
    box-shadow: 0px 8px 12px #00000029;
    height: 100%;
    background: var(--white-clr);
    overflow: hidden;
}

.our-products-slide-bx .our-products-slide-img img {
    object-fit: cover;
    height: 350px;
    width: 100%;
    transition: 0.4s ease;
}

.our-products-slide-bx:hover .our-products-slide-img img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.our-products-slide-bx .our-products-slide-content {
    padding: 20px 20px;
}

.our-products-slide-bx .our-products-slide-content a {
    font-size: 18px;
}

.our-products-slide-bx .our-products-slide-content p {
    font-size: 15px;
    font-weight: 500;
    color: var(--granite-gray-clr);
    margin-top: 3px;
}

.our-products-slide.owl-carousel .owl-stage-outer {
    height: 450px;
}

.our-client-slide.our-products-slide.owl-carousel .owl-stage-outer {
    height: 390px;
}

.our-products-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--primary-clr) !important;
    border-radius: 50%;
    background: var(--secondary-clr);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-products-slide.owl-carousel .owl-nav button.owl-prev,
.our-products-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -70px;
    left: 93%;
}

.our-products-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -70px;
    right: 0;
}

.our-products-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-clr);
}

.our-products-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--light-green-clr);
}

.our-products-slide.owl-carousel .owl-nav button:hover i {
    color: #fff;
}

.our-products-btn {
    text-align: center;
    margin-top: 50px;
}

.our-products-btn .primary-btn {
    text-align: center;
}

.product-details .reverse-row {
    flex-direction: row;
}

/*--------------------------------------------------------------
# Featured Projects
--------------------------------------------------------------*/
.featured-projects {
    position: relative;
    height: 100%;
    /* padding: 50px; */
}

.featured-projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a551a3
}

.featured-projects .common-heading .transperent-title {
    color: #1BA866;
}

.featured-projects .common-heading h2 {
    position: relative;
    z-index: 1;
    color: var(--white-clr);
}

.featured-projects-bx .feature-img {
    position: relative;
    z-index: 1;
}

.featured-projects-bx .feature-img img {
    width: 100%;
    min-height: 550px;
    object-fit: cover;
}

.feature-img .featured-projects-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

.feature-img .featured-projects-content .title {
    font-size: 30px;
    font-weight: 600;
    color: var(--white-clr);
    margin-bottom: 5px;
}

.feature-img .featured-projects-content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-clr);
}

.featured-btn {
    text-align: center;
}

.featured-btn .primary-btn {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Our Client
--------------------------------------------------------------*/
.client-bx-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.client-bx-grid .certificate-img img {
    filter: unset;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us {
    position: relative;
    min-height: 717px;
    display: flex;
    align-items: center;
}

.contact-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
}

.contact-bx {
    z-index: 1;
}

.con-info-bx {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
    margin-bottom: 35px;
}

.con-info-bx .contect-info-box {
    margin: 0;
}

.contect-info-box {
    position: relative;
    margin-bottom: 27px;
    padding-left: 40px;
}

.contect-info-box .icon-box {
    position: absolute;
    top: 15px;
    left: 0;
}

.contect-info-box .icon-box i {
    color: var(--white-clr);
    font-size: 22px;
}

.contect-info-box span {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-clr);
}

.contect-info-box p {
    color: var(--white-clr);
}

.contact-bx h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--white-clr);
    margin-bottom: 20px;
}

.contact-info {
    color: var(--white-clr);
}

.contact-detail-form {
    position: relative;
    z-index: 1;
}

.contact-detail-form h2 {
    color: #fff;
    padding-bottom: 30px;
}

.contact-form {
    position: relative;
    z-index: 1;
    background: var(--white-clr) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 14px #00000029;
    padding: 30px;
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.form-control input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.form-control:focus {
    box-shadow: unset;
    outline: unset;
    border-color: #dcdcdc;
}

/************************************/
/***    	14. Footer css		  ***/
/************************************/
.main-footer {
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-contact-box .footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.footer-contact-box .footer-info-box:last-child {
    margin-bottom: 0;
}

.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-links h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-info-box .icon-box i {
    color: var(--primary-clr);
    font-size: 17px;
}

.footer-info-box p {
    color: var(--primary-clr);
    margin: 0;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-size: 15px;
    color: var(--primary-clr);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--orange-clr);
}

.footer-copyright {
    margin-top: 30px;
    padding: 10px 0;
    border-top: 1px solid var(--white-clr)26;
}

.footer-copyright-text p {
    color: var(--white-clr);
    margin: 0;
}

.footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
}

.footer-social-links ul li a:hover {
    background: var(--light-green-clr);
    color: var(--white-clr);
}

.footer-copyright {
    background-color: #00ADEE;
}

.copyright-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------------------------------------------------------
2 About Us Start
--------------------------------------------------------------*/
header.main-header.inner-header {
    position: unset;
    background: #000000;
}

/*--------------------------------------------------------------
2 Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 180px 0 100px;
    background: var(--orange-clr);
    min-height: 40px;
    text-align: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumbs:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a6;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumbs h1 {
    font-size: 2.6666666666667rem;
    font-weight: 500;
    color: var(--white-clr);
    text-transform: capitalize;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0 10px 0;
    margin: 0;
    font-size: 15px;
    justify-content: center;
}

.breadcrumbs ol li {
    color: var(--orange-clr);
}

.breadcrumbs ol li a {
    color: var(--white-clr);
}

.breadcrumbs ol li a:hover {
    color: var(--white-clr);
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 8px;
    color: var(--white-clr);
    content: "\00bb";
}

/*--------------------------------------------------------------
2 About Section
--------------------------------------------------------------*/
.about-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

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

.about-list ul {
    list-style: disc;
    padding-left: 20px;
}

.about-list ul li {
    font-size: 15px;
    font-weight: 500;
    padding-top: 6px;
}

/*--------------------------------------------------------------
3 our vision Section
--------------------------------------------------------------*/
.our-vision {
    position: relative;
    background-attachment: fixed;
}

.our-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000094;
}

.our-vision-card {
    height: 100%;
    background: var(--white-clr) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 14px #00000029;
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: transform 1s ease 0s;
}

.our-vision-card:hover {
    background-color: var(--orange-clr);
}

.our-vision-card:hover .our-vision-details h4,
.our-vision-card:hover .our-vision-details p {
    color: var(--white-clr);
}

.our-vision-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbfbf8;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: 0px auto 20px;
}

.our-vision-img img {
    object-fit: contain;
    width: 50px;
    height: 50px;
}

.our-vision-details {
    text-align: center;
}

.our-vision-details h4 {
    margin-bottom: 5px;
    font-size: 24px;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
4 Counter Section
--------------------------------------------------------------*/
.counter-section .counter-bx {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.counter-section .counter-bx .counter-box {
    text-align: center;
}

/*--------------------------------------------------------------
4 Our Team
--------------------------------------------------------------*/
.vision-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: center;
}

.team-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-area .common-heading {
    position: relative;
    z-index: 1;
}

.team-area .team-img {
    position: relative;
    z-index: 1;
}

.team-area .about-content.team-detail {
    position: relative;
    z-index: 1;
}

.team-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.team-detail.about-content h1 {
    color: var(--white-clr);
}

.about-content.team-detail p {
    color: var(--white-clr);
    margin-bottom: 10px;
}

.person-detail {
    margin-top: 25px;
}

.person-detail .person-post p {
    margin: 0;
    padding: 0;
}

.team-area .about-content.team-detail p {
    padding: 0;
    margin: 0;
}

.team-area .about-content.team-detail .title {
    margin-bottom: 15px;
}

.person-post {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.person-post p {
    color: var(--white-clr);
}

.person-post p a {
    color: var(--white-clr);
}

.person-post:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
Product Listing Page
--------------------------------------------------------------*/
.product-listing .our-products-slide-content {
    text-align: center;
}

/*--------------------------------------------------------------
cta
--------------------------------------------------------------*/
.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-title {
    width: 75%;
}

.cta-title h2 {
    color: var(--white-clr);
    margin-bottom: 10px;
}

.cta-title p {
    color: var(--white-clr);
}

.cta-btn {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
Product Details page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
product detail section
--------------------------------------------------------------*/
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--orange-clr);
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    border-radius: 3px;
}

.price-title {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-box .view-brochure span i {
    color: var(--primary-clr);
    font-size: 18px;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
}

a.view-brochure:hover span i {
    color: var(--orange-clr);
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.latest-price {
    font-size: 14px;
    border: 1px solid var(--orange-clr);
    padding: 5px 10px;
    border-radius: 23px;
    font-weight: bold;
}

.get-best-quote {
    text-align: center;
    margin-top: 0px;
}

.product-details-img img {
    width: 100%;
    object-fit: cover;
    height: 380px;
}

.product-details h5 {
    color: var(--primary-clr);
}

ul li::marker {
    color: var(--orange-clr);
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}

table,
td,
th {
    border: 1px solid var(--orange-clr);
}

table tr:first-child {
    background: var(--orange-clr);
    color: var(--white-clr);
    font-weight: 700;
}

td,
th {
    padding: 8px;
    border-width: 0 1px 1px 0;
    border-bottom: 0;
}

td:last-child {
    border-right: 0;
}

table tr:nth-child(even) {
    background: #ededed;
}

.product-detail-counter.counter-section .counter-bx {
    position: relative;
    z-index: 1;
}

.product-detail-counter .counter-bx .stat {
    background-color: unset;
    box-shadow: unset;
    padding: 0;
}

.our-products-slide-bx.our-client-main {
    border: 1px solid var(--light-green-clr);
    padding: 20px;
    height: 100%;
    transition: 0.5s all;
}

.our-products-slide-bx.our-client-main:hover {
    border-color: var(--orange-clr);
}

/*--------------------------------------------------------------
our client section
--------------------------------------------------------------*/
.our-client-slide.owl-carousel .owl-nav button.owl-prev,
.our-client-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -70px;
    left: 93%;
}

.our-client-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -70px;
    right: 0;
}

.our-client-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-clr);
}

.our-client-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--light-green-clr);
}

.our-client-slide.owl-carousel .owl-nav button:hover i {
    color: #fff;
}

.our-client-main .client-bx {
    display: flex;
    align-items: center;
    gap: 15px;
}

.our-client-main .client-bx .client-img img {
    max-width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.our-client-main .client-bx {
    margin-bottom: 15px;
}

.our-client-inner .client-description p {
    margin-bottom: 10px;
}

.client-nm p span {
    margin-right: 10px;
}

/*--------------------------------------------------------------
faq
--------------------------------------------------------------*/
.about-in {
    position: relative;
    z-index: 1;
}

.about-in h2 {
    color: var(--white-clr);
}

.about-in .accordion-list {
    padding: 30px 0 0;
}

.about-in .accordion-list ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.about-in .accordion-list li+li {
    margin-top: 15px;
}

.about-in .accordion-list li {
    background: var(--white-clr);
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: start;
}

.about-in .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    background: var(--white-clr);
    padding: 15px;
    color: var(--primary-clr);
    cursor: pointer;
    border-radius: 4px;
}

.about-in.accordion-list span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.about-in .accordion-list i {
    font-size: 20px;
    position: absolute;
    right: 8px;
    top: 15px;
}

.about-in .accordion-list p {
    margin-bottom: 0;
    padding: 0px 10px 10px;
}

.about-in .accordion-list .icon-show {
    display: none;
}

.about-in .accordion-list a.collapsed {
    color: var(--primary-clr);
}

.about-in .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.about-in .accordion-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
Project Listing Page
--------------------------------------------------------------*/
.project-listing-slide .owl-stage-outer {
    height: 450px;
}

/*--------------------------------------------------------------
Project Details Page
--------------------------------------------------------------*/
.gallery-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lightbox_img_wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
}

/*.lightbox-bx:hover .lightbox_img_wrap img {*/
/*    border: 5px dotted var(--orange-clr);*/
/*}*/

.lightbox-bx:hover .lightbox_img_wrap {
    opacity: 0.2;
}

.lightboxpreview {
    transition: all .3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
}

.lightbox-content {
    max-height: 75vh;
    height: 75vh;
    width: 100%;
    max-width: 1000px;
}

.lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.modal_inner_image {
    min-height: 400px;
    z-index: 1000;
}

.modal-content {
    width: 100%;
}

.modalscale {
    transform: scale(0);
    opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
    transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
    position: relative;
    overflow: hidden;
}

.lightbox-bx {
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all 260ms linear 0ms;
    border: 2px dotted #f48120;
}

.lightbox-bx:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a551a3;
    z-index: -1;
    /*border: 15px solid #fff;*/
}

.lightbox-bx:hover .lightbox-enabled {
    opacity: 0.2;
}

.lightbox-bx:hover .icon-box {
    display: flex;
}

.lightbox-bx .icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all .4s ease-in-out;
    z-index: 0;
}

.lightbox-bx .icon-box i {
    color: #fff;
    font-size: 35px;
}

.lightbox-enabled:hover {
    transform: scale(1.1)
}

.lightbox-enabled {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    cursor: pointer;
}

.lightbox-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.lightbox-container.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image-wrapper {
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
    transform: scale(1);
}

.lightbox-btn,
#close {
    color: white;
    z-index: 9999999;
    cursor: pointer;
    position: absolute;
    font-size: 50px;
}

.lightbox-btn:focus {
    outline: none;
}

.left {
    left: 50px;
}

.right {
    right: 50px;
}

#close {
    top: 50px;
    right: 50px;
}

.lightbox-image {
    width: 100%;
    -webkit-box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    max-height: 95vh;
    object-fit: cover;
}

@keyframes slideleft {
    33% {
        transform: translateX(-300px);
        opacity: 0;
    }

    66% {
        transform: translateX(300px);
        opacity: 0;
    }
}

.slideleft {
    animation-name: slideleft;
    animation-duration: .5s;
    animation-timing-function: ease;
}

@keyframes slideright {
    33% {
        transform: translateX(300px);
        opacity: 0;
    }

    66% {
        transform: translateX(-300px);
        opacity: 0;
    }
}

.slideright {
    animation-name: slideright;
    animation-duration: .5s;
    animation-timing-function: ease;
}

/* fallback */
.material-icons {
    font-family: var(--font-poppins);
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
Our Client
--------------------------------------------------------------*/
.client-main-bx {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.client-logo-box img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.client-box .client-logo-box {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 150px;
    background: #fff;
    border-radius: 5px;
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    -webkit-transition: 1s -webkit-box-shadow;
    transition: 1s -webkit-box-shadow;
    transition: 1s box-shadow;
    transition: 1s box-shadow, 1s -webkit-box-shadow;
    cursor: pointer;
}

.client-box .client-logo-box:hover {
    -webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, .1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.client-box .client-logo-box:hover:after,
.client-box .client-logo-box:hover:before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--orange-clr);
    border-radius: 5px;
    z-index: -1;
    -webkit-animation: 1s infinite clockwise;
    animation: 1s infinite clockwise;
}

.client-box .client-logo-box:hover:after {
    background: var(--light-green-clr);
    -webkit-animation: 2s infinite counterclockwise;
    animation: 2s infinite counterclockwise;
}


@-webkit-keyframes clockwise {

    0%,
    100% {
        top: -5px;
        left: 0;
    }

    12% {
        top: -2px;
        left: 2px;
    }

    25% {
        top: 0;
        left: 5px;
    }

    37% {
        top: 2px;
        left: 2px;
    }

    50% {
        top: 5px;
        left: 0;
    }

    62% {
        top: 2px;
        left: -2px;
    }

    75% {
        top: 0;
        left: -5px;
    }

    87% {
        top: -2px;
        left: -2px;
    }
}

@keyframes clockwise {

    0%,
    100% {
        top: -5px;
        left: 0;
    }

    12% {
        top: -2px;
        left: 2px;
    }

    25% {
        top: 0;
        left: 5px;
    }

    37% {
        top: 2px;
        left: 2px;
    }

    50% {
        top: 5px;
        left: 0;
    }

    62% {
        top: 2px;
        left: -2px;
    }

    75% {
        top: 0;
        left: -5px;
    }

    87% {
        top: -2px;
        left: -2px;
    }
}

@-webkit-keyframes counterclockwise {

    0%,
    100% {
        top: -5px;
        right: 0;
    }

    12% {
        top: -2px;
        right: 2px;
    }

    25% {
        top: 0;
        right: 5px;
    }

    37% {
        top: 2px;
        right: 2px;
    }

    50% {
        top: 5px;
        right: 0;
    }

    62% {
        top: 2px;
        right: -2px;
    }

    75% {
        top: 0;
        right: -5px;
    }

    87% {
        top: -2px;
        right: -2px;
    }
}

@keyframes counterclockwise {

    0%,
    100% {
        top: -5px;
        right: 0;
    }

    12% {
        top: -2px;
        right: 2px;
    }

    25% {
        top: 0;
        right: 5px;
    }

    37% {
        top: 2px;
        right: 2px;
    }

    50% {
        top: 5px;
        right: 0;
    }

    62% {
        top: 2px;
        right: -2px;
    }

    75% {
        top: 0;
        right: -5px;
    }

    87% {
        top: -2px;
        right: -2px;
    }
}

/************************************/
/***   Contact us Page css    ***/
/************************************/
.contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.contact-form {
    background: var(--white-clr);
    border-radius: 5px;
    padding: 40px;
}

.contact-img {
    padding: 15px;
    border: 1px dashed var(--orange-clr);
    border-radius: 10px;
}

.contact-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.section-title h2 {
    margin-bottom: 30px;
}

.contact-form-content p {
    margin-bottom: 20px;
}

.form-control {
    padding: 15px 20px;
    background-color: var(--white-clr);
    border: 1px solid var(--granite-gray-clr) !important;
    box-shadow: none;
    border: none;
    border-radius: 5px;
}

.form-group p {
    margin-bottom: 0;
}

.form-control::placeholder {
    color: var(--granite-gray-clr);
    text-transform: capitalize;
}

.contact-form button.btn-default {
    width: 100%;
}

.contact-list .conatct-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.conatct-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-address-box {
    box-shadow: 0px 5px 14px #00000029;
    border-radius: 5px;
    padding: 20px;
    height: 100%;
    transition: 0.2s all;
    background: var(--white-clr);
    text-align: center;
}

.contact-address-box:hover {
    border-color: var(--light-green-clr);
}

.contact-address-box .icon {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
    background: #0000000d;
}

.contact-address-box .icon i {
    font-size: 25px;
    color: var(--primary-clr);
}

.contact-address-box .inner-bx {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address_blk .padd {
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    background: var(--white-clr);
    box-shadow: 0px 5px 14px #00000029;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address_blk h3 {
    margin: 0px;
    color: var(--white-clr);
}

.address_blk p {
    line-height: 24px;
}

.address_blk .padd img {
    max-width: 40px;
    height: auto;
    color: var(--orange-clr);
    display: block;
}

.address_blk h3 {
    color: var(--orange-clr);
}

.address_blk i.fa.fa-home {
    color: var(--orange-clr);
}

/* Product Detail new */
.about-content-btn {
    margin-top: 25px;
    text-align: unset;
}

.main-tab {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

ul#myTab {
    border-bottom: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

ul#myTab li {
    width: 100%;
}

ul#myTab li:last-child {
    border-bottom: 1px solid #00000033;
}
table.main-new-table tbody tr td.text-center {
    white-space: nowrap;
}
ul#myTab li button {
	text-align: start;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0px;
    margin-bottom: 0px;
    line-height: 28px;
    color: #000 !important;
    color: #000 !important;
    padding: 12px 18px;
    border: 1px solid #00000033;
    width: 100%;
    border-bottom: 0;
}

ul#myTab li:last-child button {
    border-right: 1px solid #00000033;
}

ul#myTab li button.active {
    background: var(--orange-clr);
    border-left-color: var(--orange-clr);
    border-top-color: var(--orange-clr);
    /* border-bottom: 1px solid var(--orange-clr); */
    color: #fff !important;
    width: 100%;
}

.product-desc-tab .tab-content {
    border: 1px solid #00000033;
    padding: 20px;
    color: #000000;
    background: #fff;
}

.product-desc-tab .tab-content ul {
    list-style: disc;
}

.product-desc-tab .tab-content ul li {
    line-height: 30px;
}

ul li::marker {
    color: var(--orange-clr);
}

.why-choose-detail .common-heading {
    margin-bottom: 30px;
    text-align: start;
}

.product-desc-tab .main-tab .tab-content .tab-pane p {
    margin-bottom: 10px;
}

.product-desc-tab .main-tab .tab-content .tab-pane p:first-child b {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc-tab .main-tab .tab-content .tab-pane ol {
    padding-left: 20px;
}

.about-content p {
    padding: 10px 0;
}

.about-content ul {
    list-style: disc;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 10px 10px 10px 20px;
}

.tab-description {
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.tab-description p {
    color: #fff;
    font-size: 18px;
    line-height: normal;
}

.inquiry-modal .modal-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.inquiry-modal .btn-close {
    opacity: 1;
}

.inquiry-modal .btn-close:focus {
    box-shadow: unset;
}

.inquiry-modal .modal-body {
    padding: 25px;
}

.inquiry-modal .modal-body .contact-form {
    box-shadow: unset;
    padding: 0;
}
.bg-afi {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bed630;
}

.bg-afi-logo img {
    width: 640px !important;
	object-fit: cover;
}
.sccalculator-btn {
    height: 0px !important;
    position: fixed !important;
    right: -38px !important;
    top: 45% !important;
    z-index: 99 !important;
    font-size: 16px !important;
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
}
.sccalculator-btn a {
    padding: 8px 22px;
   	background-color: var(--orange-clr);
    animation: gradient 15s ease infinite;
    color: white;
	font-family: 'Poppins-SemiBold', sans-serif;
}

