@font-face {
    font-family: 'tekobold';
    src: url('../font/teko-bold-webfont.woff2') format('woff2'),
        url('../font/teko-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'poppinsregular';
    src: url('../font/poppins-regular-webfont.woff2') format('woff2'),
        url('../font/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




:root {
    --black: #000;
    --white: #fff;
    --primary-font: 'poppinsregular';
    --heading-font: 'tekobold';
    --color3: #ffa013;
    --color4: #1f4941;
}

body {
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: var(--primary-font);
    line-height: 28px;
    background-color: var(--white);

}

p {
    color: var(--color4);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h6,
h5,
h4,
h3,
h2,
h1,
p {
    margin: 0;
    padding: 0;
}

h6,
h5,
h4,
h3,
h2 {
    font-family: var(--heading-font);
    color: var(--color4);
}

ul {
    margin: 0;
    padding: 0;
}

.p-50 {
    padding: 50px 0;
}

.pb-100 {
    padding-bottom: 100px;
}

.p-100 {
    padding: 100px 0;
}

.mark {
    color: var(--color3);
    background-color: transparent;
    padding: 0;
}

.inner-row {
    justify-content: center;
}

.small-heading {
    font-size: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.heading {
    font-size: 48px;
    font-family: var(--heading-font);
    margin: 21px 0;
    position: relative;
    color: var(--color4);
    text-transform: uppercase;
}

.title-bg {
    position: absolute;
    top: -8px;
    inset-inline-start: 0;
    z-index: -2;
}

.banner-img h5 {
    color: var(--white);
}

.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stellarnav>ul>li>a {
    padding: 20px 15px;
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.5s;
}

header .arm-btn {
    color: var(--black);
}

#header.show {
    background-color: #f1f1f1;
    box-shadow: 0 0 10px #000;
}

header .circle-btn {
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color3);
    border: 1px solid #c7c7c7;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.stellarnav>ul>li>a:hover {
    color: var(--color3);
}

.logo img {
    width: 34%;
}

header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    padding: 10px 0;
    background-color: #f1f1f1;
}

.home-about {
    overflow: hidden;
}

.home-about-image {
    position: relative;
}

.bottom-img {
    position: absolute;
    bottom: -49px;
    inset-inline-end: 0;
    width: 77%;
    z-index: 1;
    right: -45px;
}

.home-about-text {
    margin-left: 34px;
}

.home-about p {
    margin-bottom: 23px;
}

.arm-btn {
    font-size: 16px;
    color: var(--color4);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
    white-space: nowrap;
}

.circle-btn {
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color3);
    border: 1px solid #c7c7c7;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 400;
    position: relative;
}

.arm-btn:hover {
    color: var(--color3);
}

.arm-btn:hover .circle-btn {
    border-color: var(--color3);
    background: var(--color3);
    color: var(--white);
}

.arm-btn:hover .circle-btn i {
    animation: iconltr 0.5s forwards;
}

@keyframes iconltr {
    49% {
        transform: translateX(30%);
    }

    50% {
        opacity: 0;
        transform: translateX(-30%);
    }

    51% {
        opacity: 1;
    }
}

.banner-img {
    padding-top: 100px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.banner-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

h1 {
    font-family: var(--heading-font);
    font-size: 79px;
    text-transform: uppercase;
    line-height: 0.9;
}

.banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: var(--white);
    opacity: 1;
    background: transparent;
}

.banner-img h5 {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-img .row {
    height: 100vh;
}

.banner-img .about-btn {
    margin-top: 79px;
}

.banner-img .arm-btn {
    color: var(--white) !important;
}

.banner-img .circle-btn {
    color: var(--white) !important;
}

.home-service {
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.home-service::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 80%);
    z-index: -1;
}

.service-thumb {
    position: relative;
    overflow: hidden;
}

.service-info {
    background-color: var(--white);
    padding: 30px 30px 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    height: 268px;
}

.title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.34;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color4);
    font-family: var(--heading-font);
}

.arrow-text-btn span {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--color4);
}

.arrow-text-btn span:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
    background: var(--color4);
    z-index: -1;
}

.service-content:hover span,
.service-content:hover i {
    color: var(--color3);
}

.service-content:hover {

    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.service-content {
    transition: all 0.5s;
}

.home-service .service {
    padding-bottom: 30px;
}

.arrow-text-btn i {
    color: var(--color4);
    border: 1px solid;
    padding: 3px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 3px;
}

.service-content:hover span:before {
    transform: scaleX(1);
    background: var(--color3);
}

.home-service .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 28%;
    left: -19%;
    width: 100%;
    top: unset;
}

.home-service .swiper-pagination-bullet {
    background-color: var(--white);
    margin: 0 6px !important;
}

.home-service .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--white);
    outline: 1px solid #fff;
    outline-offset: 5px;
}

.service-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.service-content:hover .service-thumb::after {
    animation: shine 800ms;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.partner-icon {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.partner-icon img {
    height: 200px;
    object-fit: cover;
}

.p-80 {
    padding: 80px 0;
}

.partner-icon img {
    opacity: 0.35;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 0 auto;
}

.partner-icon:hover img {
    opacity: 1;
}

.call-button {
    position: relative;
    background-color: var(--color3);
    text-align: center;
    color: var(--color4);
}

.cta-num h3 {
    font-size: 45px;
    margin-bottom: 0;
    display: inline-block;
    position: relative;

}

.cta-num h3 a {
    color: var(--color4);
    font-family: var(--heading-font);
}

.cta-num h3:before {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
    background: var(--color4);
}

.cta-num h3:hover:before {
    transform: scaleX(1);
}

footer {
    background-color: #222222;
    padding: 100px 0 29px;
}

.subscribe-wrapper {
    background: var(--white);
    padding: 50px 65px 50px;
    padding-inline-start: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.subscribe-text h3 {
    margin-bottom: 0;
}

.subscribe-icon {
    position: absolute;
    width: 165px;
    height: 100%;
    background: var(--color3);
    inset-inline-start: 0;
    top: 0;
    font-size: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-icon i {
    color: var(--color4);
}

.subscribe-form {
    display: flex;
    position: relative;
}

.single-input-field {

    position: relative;
}

.subscribe-form .single-input-field input {
    width: 337px;
    background: transparent;
    border-radius: 0px;
    color: var(--black);
    border: 2px solid #c7c7c7;
    font-family: var(--primary-font);
    padding-left: 10px;
    line-height: 50px;
}

.subscribe-form .subs-btn .fill-btn:hover {
    color: var(--white);
    background: var(--color3);
    border-color: var(--color3);
}

.fill-btn {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    background: var(--color4);
    border: 1px solid var(--color4);
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border-radius: 0px;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
}

.top-footer {
    margin-top: 75px;
}

.footer-part p {
    color: var(--white);
    margin: 20px 0 20px;
}

.footer-part ul {
    display: flex;
    gap: 10px;
}

.footer-part ul li a {
    /* background-color: var(--white); */
    width: 33px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color4);
}

.footer-part article {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 26px;
    line-height: 24px;
    position: relative;
}

.footer-part article:after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #353535;
    content: "";
    inset-inline-start: 0;
    bottom: -11px;
}

.footer-part p a i {
    margin-right: 19px;
    color: var(--color3);
}

.footer-part p a {
    color: var(--white);
}

.footer-part p a:hover {
    color: var(--color3);
}

.footer-part p i {
    margin-right: 19px;
    color: var(--color3);
}

.footer-blog img {
    width: 120px;
    height: 97px;
    object-fit: cover;
}

.footer-blog {
    margin-top: 28px;
    gap: 29px;
}

.footer-blog h5 {
    color: var(--white);
    font-family: var(--heading-font);
}

.footer-blog-list span {
    color: var(--white);
    font-size: 13px;
}

.footer-blog-list span i {
    margin-right: 10px;
}

.bottom-footer {
    border-top: 1px solid var(--white);
    padding-top: 33px;
    margin-top: 34px;
}

.inner-banner {
    height: 444px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inner-banner::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222222a6;
    z-index: -1;
}

.inner-banner h1 {
    color: var(--white);
    font-size: 67px;
    padding-top: 80px;
}



.about-page-text .nav-pills .nav-link.active,
.about-page-text .nav-pills .show>.nav-link {
    color: var(--color3);
    background-color: transparent;

}

.about-page-text .nav-link {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 18px;
    border-right: 1px solid;
    border-radius: 0;
}

.about-page-text .heading {
    color: var(--white);
}

.about-page-text p {
    color: var(--white);
    text-align: justify;
}

.about-page-text .arm-btn {
    color: var(--white);
}

.gallery-slider img {
    width: 100%;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    background-color: var(--white);
}

.gallery-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 1;

}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 18px;
    color: var(--color3);
}

.gallery-slider .swiper-slide a::after {
    background-color: #1f4941ba;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: -100px;
    position: absolute;
    width: 0;
    height: 0;
    transition: all 0.5s;
}

.gallery-slider .swiper-slide a:hover::after {
    width: 100%;
    height: 100%;
    bottom: 0;
}

.example-image-link {
    position: relative;
    display: flex;
}

.example-image-link .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    color: var(--white);
    animation: animate-pulse 3s linear infinite;
    background-color: var(--color3);
    padding: 24px 32px;
    border-radius: 50%;
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 var(--color3), 0 0 0 0 var(--color3);
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 var(--color3);
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}

.gallery-slider .swiper-slide a:hover .icon {
    opacity: 1;
    visibility: visible;
}

.about-count {
    background-color: var(--color3);
}

.about-count .num {
    font-family: var(--heading-font);
    text-align: center;
    color: var(--color4);
}

.about-count h4 {
    font-size: 110px;
}

.about-count h5 {
    text-align: center;
    font-weight: 600;
}

.about-gallery {
    text-align: center;
}

.about-gallery .title-bg {
    left: 41%;
}

.testimonial-box {
    background-color: var(--white);
    padding: 39px;
    position: relative;
    box-shadow: 0 0 10px #00000059;
    border-radius: 9px;
}

.side-icon {
    position: absolute;
    display: flex;
    right: 27px;
    top: -53px;
    font-size: 108px;
}

.side-icon i {
    color: var(--color4);
}

.testimonial-slider {
    padding: 105px 26px 26px 23px;
}

.testimonial-box h5 {
    color: var(--color4);
    font-weight: 600;
    font-family: var(--heading-font);
}

.faq-page .image-box {
    height: 100%;
}

.faq-page .accordion-button:not(.collapsed) {
    background-color: var(--white);
    box-shadow: 0 0 10px #00000094;
    border: 0;
    color: var(--color3);
    font-family: var(--heading-font);
    font-size: 27px;
    padding: 23px;
}

.faq-page .accordion-collapse {
    background-color: var(--white);
    box-shadow: 0 0 10px #00000094;
    border: 0;
    margin-top: 20px;
}

.faq-page .accordion-item {
    border: 0;
}

.faq-page .accordion-button {
    background-color: var(--white);
    box-shadow: 0 0 10px #00000094;
    border: 0;
    margin-top: 20px;
    padding: 23px;
    color: var(--color4);
    font-family: var(--heading-font);
    font-size: 27px;
}

.faq-page .accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    box-shadow: 0;
}

.middle-heading .title-bg {
    left: 41%;
}

.blog-page-box .tag {
    background-color: #f2f2f2;
    color: var(--color4);
    padding: 6px;
    font-size: 13px;
}

.blog-page-box .tag i {
    margin-right: 6px;
}

.blog-text {

    padding: 20px 10px;
    border: 1px solid #f2f2f2;
}

.blog-text h4 {
    color: var(--color4);
    font-family: var(--heading-font);
    font-size: 32px;
}

.blog-tag-icon {
    padding: 10px 0;
    color: #7c7c7c;
}

.blog-tag-icon i {
    margin-right: 6px;
}

.blog-page-box {
    margin-bottom: 31px;
}

.contact-form {
    padding: 65px 65px;
    background: #222222;
}

.contact-form .form-control {
    border-radius: 6px;
    /* height: 55px; */
    width: 100%;
    padding: 0px 20px;
    padding-inline-start: 47px;
    background: #222222;
    color: var(--white);
    border: 1px solid #535353;
    outline: 0;
    border-radius: 0;
    /* font-size: 22px; */
    line-height: 51px;
}

.contact-form textarea {
    border-color: #535353;
    border-radius: 0;
    background: transparent;
    min-height: 140px;
    color: var(--white);
    width: 100%;
    padding: 15px 15px;
}



.single-input-field .icon {
    position: absolute;
    color: #535353;
    font-size: 20px;
    font-weight: 300;
    top: 14px;
    inset-inline-start: 16px;
}

.contact-form .border-btn {
    padding: 0 40px;
    border-color: var(--white);
    color: var(--white);
    background-color: transparent;
}

.contact-form .border-btn:hover {
    background: var(--white);
    color: var(--color4);
    border-color: var(--white);
}

.border-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 0 40px;
    height: 60px;
    border-radius: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    line-height: 1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 13px;
}

.meta-item-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: var(--color4);
    border-radius: 50%;
}

.meta-item .meta-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--color4);

}

.meta-item-content p {
    font-size: 24px;
    font-family: var(--heading-font);
}

.meta-item-content p a {
    color: var(--color4);
}

.contact-address {
    margin-top: 33px;
}

.contact-form .form-control:focus {
    border-color: var(--color4);
    background-color: transparent;
    color: var(--white) !important;
    box-shadow: none;
}

.banner .swiper-pagination {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    bottom: 31%;
    left: -39px;
}



.banner .swiper-pagination::before {
    position: absolute;
    content: "";
    top: -123px;
    background-color: #fff;
    width: 2px;
    /* z-index: 1; */
    height: 96px;
    right: 9px;
}

.banner .swiper-pagination-bullet-active {
    font-size: 24px !important;
    color: #8098ff;
}

.banner .swiper-pagination-bullet {
    font-size: 15px;
    margin: 4px 0 !important;
}



.about-page .reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.reveal {
    visibility: hidden;
    overflow: hidden;

}

.about-us {
    position: relative;
}

.side-img {
    position: absolute;
    bottom: 28px;
    right: 0;
    text-align: end;
    width: 15%;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.service-thumb img {
    height: 246px;
    object-fit: cover;
}

.service-info .title {
    margin-bottom: 6px;
}

.about-us-img-box {
    position: relative;
}

.text5 span {
    display: inline-block;
}

.about-page {
    background-color: #222222;
}

.about-bottom-img2 {
    position: absolute;
    bottom: -43px;
    right: -61px;
    width: 54%;
}

.about-us-text {
    margin-left: 59px;
}

.blog-content h2 {
    font-family: var(--heading-font);
    color: var(--color4);
}

.blog-detail-img {
    margin: 70px 0;
}

.blog-content {
    margin-top: 46px;
}

.blog-content p {
    margin-top: 20px;
}

.home-service .small-heading {
    color: var(--white);
}

.video {
    padding-bottom: 0;
}

.ph {
    display: none;
}

.about-page .about-page-text .mission-part {
    margin-top: 15px;
}

.about-page .about-page-text .mission-part h4 {
    color: var(--color3);
    margin-bottom: 20px;
}

.about-page .about-page-text .mission-part .accordion-header .accordion-button {
    color: var(--color4);
    font-size: 2rem;
    background-color: transparent;
}

.about-page .about-page-text .mission-part .accordion-item {
    margin: 10px 0;
    border-radius: 0;
}

.about-page .about-page-text .mission-part .accordion-button:not(.collapsed) {

    box-shadow: none;
}

.about-page .about-page-text .mission-part .accordion-collapse.collapse.show {
    border-top: 1px solid var(--color4)
}

.about-page .about-page-text .mission-part .accordion-button:focus {
    box-shadow: none;
}

.about-page .about-page-text .mission-part .accordion-body {
    font-size: 14px;
    font-weight: 600;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(" data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f4941'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.home-service .text-white {
    margin-top: 10px;
    font-weight: 600;
}

.home-service .heading {
    color: var(--white);
}

.home-satisfaction .feature-box {
    border: 1px solid #e3dbdb;
    background: #e3dbdb;
    padding: 40px 20px 30px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    text-align: center;
    position: relative;
    height: 100%;
}

.border-animation {
    width: calc(100% - 12px);
    height: calc(100% - 18px);
    top: 9px;
    position: absolute;
    left: 6px;
    bottom: 0;
}

.border-animation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    box-sizing: border-box;
    height: 0;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s ease;
}

.border-animation::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    box-sizing: border-box;
    height: 0;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s ease;
}

.feature-box:hover .border-animation::after,
.feature-box:hover .border-animation::before {
    border-color: var(--color4);
    width: 100%;
    height: 100%;
}

.feature-box h4 {
    margin-bottom: 15px;
}



.rfq-page .form-control {
    padding: 0 10px;


}

.form-select.form-control {
    padding: 0 10px;
    color: #6c757d;
    font-size: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;
    background-size: 16px 12px !important;
}

 .form-select option {
    color: var(--black);
}
.blog-page-box img {
    width: 100%;
}
.user-icon{
    padding-inline-start: 10px !important;
}
.buttonload i{
    margin-right: 10px;
}

.captcha-text{
    color: var(--white);
}
.home-partner{
    padding:0 0 80px;
}
.blog-details .blog-details-date i{margin-right: 10px;}
