* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.back-to-top {
    background-color: #0b93dd;
    text-decoration: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    z-index: 999;
    position: fixed;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    border: 2px solid #fff;
}

.back-to-top i {
    font-size: 25px;
    color: #111;
    background-image: url(../img/back-to-top.png);
    width: 12px;
    height: 8px;
}

.back-to-top:hover {
    background-color: #000;
}

.back-to-top:active {
    box-shadow: none;
    background-color: #000;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

.navbar-expand-lg {
    padding: 0;
}

.navbar-light .navbar-brand {
    padding: 0;
    margin: 0;
    width: 15%;
    text-align: center;
}

#header.fixed {
    animation: 1s ease 0s normal both 1 running fixedmenu;
    -webkit-animation: 1s ease 0s normal both 1 running fixedmenu;
    -moz-animation: 1s ease 0s normal both 1 running fixedmenu;
    -o-animation: 1s ease 0s normal both 1 running fixedmenu;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: none;
    left: 0;
    position: fixed !important;
    right: 0;
    top: 0;
    z-index: 9;
}

@-webkit-keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

@-moz-keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

@keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

#header #navbarSupportedContent {
    width: 70%;
    border-left: 2px solid #dcdcdc;
    border-right: 2px solid #dcdcdc;
    padding: 34px 0;
}

#header #navbarSupportedContent ul li>a {
    font: 300 15px/17px "Bahnschrift", sans-serif;
    text-transform: uppercase;
    padding: 15px 0px;
    color: #3f3f3f;
    margin: 0 36px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    position: relative;
}

#header #navbarSupportedContent ul li>a::before,
#header #navbarSupportedContent ul li .dropdown-menu a::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #0b94dc;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

#header #navbarSupportedContent ul li>a:hover::before,
#header #navbarSupportedContent ul li .dropdown-menu a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

#header #navbarSupportedContent ul li.active>a::before,
#header #navbarSupportedContent ul li.active .dropdown-menu a::before,
#header #navbarSupportedContent ul li:hover>a::before {
    width: 100%;
}

.display-575 {
    display: none !important;
}

#header #navbarSupportedContent ul li>a:hover,
#header #navbarSupportedContent ul li.active>a,
#header #navbarSupportedContent ul li .dropdown-menu a:hover,
#header #navbarSupportedContent ul li:hover>a {
    color: #0b94dc;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    /* position: absolute; */
    /* top: 80px; */
}

#header #navbarSupportedContent ul li .dropdown-menu a {
    font: 300 15px/17px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    /* margin: 0 20px; */
    padding: 8px 0;
    margin: 0 22px;
    position: relative;
    display: inline-block;
}

.contect-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 15%;
}

.contect-number .call-icon {
    height: 47px;
    width: 47px;
    border: 1px solid #3f3f3f;
    text-align: center;
    line-height: 39px;
    border-radius: 50%;
}

.contect-number a {
    font: 300 22px/24px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.contect-number a:hover {
    color: #0b94dc;
}

#header .dropdown-toggle::after {
    border: none;
    background-image: url(../img/arrow-bottom.png);
    width: 12px;
    height: 8px;
    margin: -2px 4px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#header .dropdown-toggle:hover::after,
#header #navbarSupportedContent ul li:hover>a::after {
    background-image: url(../img/arrow-bottom-2.png);
}

#header .dropdown-item:focus,
.dropdown-item {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    width: auto;
}

#header .dropdown-item:focus,
.dropdown-item:hover {
    color: #0b94dc !important;
    background-color: transparent;
}

@media (min-width:992px) {
    #header #navbarSupportedContent ul li:hover .dropdown-menu {
        display: block;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
}

/* ================================================ slider ================================================ */
.felix-slider {
    position: relative;
}

.slider-wapper {
    overflow: hidden;
}

.owl-item {
    float: left;
}

.felix-slider-text {
    position: absolute;
    left: 13%;
    right: 0;
    top: auto;
    bottom: 62px;
    width: 55%;
}

.felix-slider-text h3 {
    font: 600 33px/35px "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;

}

.felix-slider-text h2 {
    font: 800 55px/60px "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

#slider .owl-item.active .felix-slider-text h3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#slider .owl-item.active .felix-slider-text h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.slider-wapper .owl-nav {
    display: none;
}

/*================================================ end ================================================*/
/* ================================================ factory-business ================================================ */
#about-section{
    padding-top: 100px;
    margin-top: -100px;
	position: relative;
	z-index: -1;
}
.factory-business {
	padding: 146px 0 146px;
}

.factory-business::before,
.contact-country::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../img/factory-business-after.png);
    width: 389px;
    height: 539px;
    background-repeat: no-repeat;
    background-size: contain;
}

.factory-business-images-01,
.factory-business-images-02 {
    display: inline-block;
    overflow: hidden;
}

.factory-business-images-02 {
    margin: -189px 0 0 -38px;
    border-top: 15px solid #fff;
    border-right: 15px solid #fff;
    position: relative;
}

.factory-business .factory-business-images-01 img,
.factory-business .factory-business-images-02 img {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.factory-business:hover .factory-business-images-01 img,
.factory-business:hover .factory-business-images-02 img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.factory-business-images-03 {
    position: absolute;
    top: 36px;
    left: -46px;
    right: auto;
    animation: zoom-in-out 2s linear infinite;
    -webkit-animation: zoom-in-out 2s linear infinite;
}

@keyframes zoom-in-out {

    0%,
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
    }
}

.factory-business-text {
    padding: 0 30px;
}

.factory-business-text h3 {
    font: 400 22px/24px "Bahnschrift", sans-serif;
    text-transform: uppercase;
    color: #3f3f3f;
    margin: 0 0 26px;
    padding: 0 20px 11px 0;
    border-bottom: 3px solid #2e3192;
    display: inline-block;
}

.factory-business-text h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #000;
    margin: 0 0 30px;
}

.factory-business-text p {
    font: 400 18px/24px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    margin: 0 0 20px;
}

.factory-business-text p:last-child {
    margin: 0;
}

/*================================================ end ================================================*/
/*================================================ products ================================================*/
.product {
    background: #000;
}

.product-top {
    background: #0b94dc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 51px;
}

.product-top .product-titel h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.product-top a {
    font: 400 18px/19px "Bahnschrift", sans-serif;
    color: #111;
    background: #fff;
    text-transform: uppercase;
    padding: 21px 18px;
    margin: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.product-top a:hover {
    color: #fff;
    background: #000;
}

.product-box {
    position: relative;
    display: flex;
}

.product-col {
    padding: 0;
    /* display: contents; */
}

.product-box .product-img {
    overflow: hidden;
    /* display: inline-block; */
}

.product-box .product-img img {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.product-box .product-img:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-box .product-text h2,
.product-box .product-text a {
    position: absolute;
    left: 50px;
    right: 0;

}

.product-box .product-text h2 {
    top: 35px;
    font: 400 26px/28px "Bahnschrift", sans-serif;
    color: #fff;
    /* text-transform: uppercase; */
}

.product-box .product-text a {
    bottom: 23px;
    font: 400 16px/18px "Bahnschrift", sans-serif;
    color: #fff;
    background: #0b94dc;
    text-transform: uppercase;
    padding: 12px 24px;
    margin: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    width: max-content;
    display: flex;
    gap: 13px;
    align-items: center;
}

.product-box .product-text a:is(:hover, :active, :focus) {
    color: #fff;
    background: #000;
}

/*================================================ end ================================================*/
/*================================================ reach world ================================================*/
.reach-world {
    padding: 100px 0;
    position: relative;
}

.reach-world::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 491px;
    background-position: center center;
    background-image: url(../img/reach-world-before.jpg);
    z-index: -1;
}

.reach-world .reach-world-titel h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #000;
    text-align: center;
    margin: 0 0 68px 0;
}

.reach-world .reach-world-images {
    overflow: hidden;
    /* display: inline-block; */
}

.reach-world .reach-world-images img {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.reach-world .reach-world-box:hover .reach-world-images img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.reach-world .reach-world-box a {
    padding: 10px;
    font: 700 24px/26px "Montserrat", sans-serif;
    color: #000;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.reach-world .reach-world-box:hover a {
    color: #0b94dc;
}

/*================================================ end ================================================*/
/*================================================ industry-insights ================================================*/
.industry-insights {
    padding: 70px 0;
    position: relative;
}

.industry-insights::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: 0;
    width: calc(50% - 15px);
    height: 100%;
    background: #eaeaea;
}

.industry-insights .industry-insights-text {
    padding: 0 20px 0 0;
}

.industry-insights .industry-insights-text h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #000;
    margin: 0 0 30px 0;
}

.industry-insights .industry-insights-text h3 {
    font: 500 24px/26px "Montserrat", sans-serif;
    color: #000;
    margin: 0 0 30px 0;
}

.industry-insights .industry-insights-text p {
    font: 400 18px/24px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    margin: 0 0 30px;
}

.industry-insights .industry-insights-text a {
    bottom: 23px;
    font: 400 16px/18px "Bahnschrift", sans-serif;
    color: #fff;
    background: #0b94dc;
    text-transform: uppercase;
    padding: 12px 24px;
    margin: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.industry-insights .industry-insights-text a:hover {
    color: #fff;
    background: #111;
}

.industry-insights-img {
    overflow: hidden;
    margin: 0 -140px 0 0;
}

/* .swiper {
    width: 100%;
    height: 100%;
  }
  .swiper-slide {
	height: fit-content !important;
}
.swiper.mySwiper.swiper-cards.swiper-3d.swiper-initialized.swiper-horizontal.swiper-watch-progress {
	overflow: hidden;
	padding: 0 40px;
} */

/*================================================ end ================================================*/
/*================================================ industry-insights ================================================*/
.people-choose {
    padding: 150px 0 100px;
    position: relative;
}

.people-choose::before,
.people-choose::after {
    content: "";
    position: absolute;
    width: 215px;
    height: 227px;
    background-position: center center;
    background-image: url(../img/people-choose-before.png);
    z-index: -1;
}

.people-choose::before {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}

.people-choose::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.people-choose .people-choose-box h3 {
    font: 400 22px/24px "Bahnschrift", sans-serif;
    text-transform: uppercase;
    color: #3f3f3f;
    margin: 0 0 26px;
    padding: 0 20px 5px 0;
    border-bottom: 2px solid #2e3192;
    display: inline-block;
}

.people-choose .people-choose-box h2 {
    font: 700 26px/38px "Montserrat", sans-serif;
    color: #000;
    margin: 0 0 30px;
}

.people-choose-service-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.people-choose .people-choose-service .people-choose-service-box {
    margin: 0 0 20px 0;
}

.people-choose-service .people-choose-service-box .icon img {
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.people-choose-service:hover .people-choose-service-box .icon img {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

.people-choose .people-choose-service .people-choose-service-box h2 {
    font: 700 24px/26px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    margin: 0;
}

.people-choose .people-choose-service p {
    font: 400 18px/26px "Bahnschrift", sans-serif;
    color: #3f3f3f;
}

/* our-achievements */
#projects-counter {
    background-image: url(../img/projects-counter-bg.jpg);
    padding: 103px 0;
    margin: 0 0 70px 0;
}

#projects-counter .counter-show {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

#projects-counter .counter-show .counter {
    margin: 0 10px;
}

#projects-counter .counter-show .counter .count-number {
    font: 400 60px/62px "Bahnschrift", helvetica, sans-serif;
    color: #fff;
    position: relative;
    display: inline-block;
    margin: 0 0 10px -30px;
}

#projects-counter .counter-show .counter .count-number::before {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    left: auto;
    font: 700 60px/62px "Bahnschrift", helvetica, sans-serif;
}

#projects-counter .counter-show .counter:last-child .count-number::before {
    content: "%";
    right: -50px
}

#projects-counter .counter-show .counter h2 {
    font: 400 24px/26px "Bahnschrift", helvetica, sans-serif;
    color: #fff;
    margin: 0;
}

/* end */
/* happy-clients */
#happy-clients .happy-clients-titel h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #000;
    margin: 0;
    text-align: center;
}

#happy-clients .happy-clients-wappers {
    overflow: hidden;
    padding: 36px 0;
    border-bottom: 2px solid #b7b7b7;
}

.owl-nav.disabled {
    display: none;
}

/* end */
/* contect-us */
/* contect us */
#contact-us {
    padding: 80px 0;
}

#contact-us .factory-business-text h4 {
    font: 400 22px/24px "Bahnschrift", helvetica, sans-serif;
    color: #3f3f3f;
    margin: 0 0 10px 0;
}

#contact-us .factory-business-text .contect-wapper {
    font: 700 20px/28px "Bahnschrift", helvetica, sans-serif;
    color: #3f3f3f;
    margin: 0 0 30px 0;
}

#contact-us .factory-business-text .contect-wapper a {
    text-decoration: none;
    color: #3f3f3f;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

#contact-us .factory-business-text .contect-wapper a:is(:hover, :active, :focus) {
    color: #0b94dc;
}

.contect-info .contect-info-box .contect-info-text p,
.contect-info .contect-info-box .contect-info-text a {
    font: 400 16px/28px "Bahnschrift", Helvetica, sans-serif;
    color: #000;
    letter-spacing: 0.50px;
    margin: 0;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.contect-info .contect-info-box .contect-info-text a:is(:hover, :active, :focus) {
    color: #2e3192;
}

#contact-us form {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: space-between;
}

#contact-us .contect-form-box {
    width: 48%;
    position: relative;
}

#contact-us #contect-name::before {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    right: 0;
    margin: auto;
    font-family: "icofont";
    font-size: 16px;
    color: #828282;
}

#contact-us input,
#contect-textarea {
    outline: none;
    font: 400 18px/19px "Bahnschrift", Helvetica, sans-serif;
    color: #111;
    border: 1px solid #c7c7c7;
    resize: none;
}

#contact-us input::placeholder,
#contect-textarea::placeholder {
    color: #c3c3c3;
    opacity: 1;
}

#contact-us input,
#contect-textarea {
    padding: 13px 10px;
    margin: 0 0 20px 0;
    width: 100%;
}

.contect-form-box i {
    width: 10%;
    font-size: 16px;
    color: #828282;
    /* transform: translateY(-50%); */
    cursor: pointer;
}

#contact-us .contect-form-box-2 {
    width: 100%;
}

.icon.contect-f {
    width: 22px;
}

.submit-btn {
    font: 400 16px/18px "Bahnschrift", Helvetica, sans-serif !important;
    color: #fff !important;
    letter-spacing: 0.50px;
    margin: 0;
    padding: 16px 44px !important;
    text-transform: uppercase;
    border: none;
    background: #2e3192;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    margin: 0 !important;
    cursor: pointer !important;
    opacity: 1;
}

.submit-btn.overlay {
    cursor: not-allowed !important;
    opacity: 0.6;
}

.submit-btn.overla:is(:hover, :active, :focus) {
    background: #000;
    color: #fff;
}

#contact-us #fc-footer {
    margin: 0;
}

.hide {
    display: none !important;
}

.submit__control {
    display: flex;
    align-items: center;
}

.submit__control .submit__generated {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
}

#contact-us .submit__control .submit__generated .submit__input {
    width: 60%;
    margin: 0;
}

#contact-us .submit__control .submit__generated .increment-capcher {
    font: 700 37px/39px "Montserrat", Helvetica, sans-serif;
    color: #111;
}

#contact-us .submit__control {
    margin: 0 0 20px 0;
}

/* end */
/* footer */
.footer-top {
    background-image: url(../img/footer-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.footer-box .footer-logo {
    margin: 0 0 20px 0;
}

.footer-box p {
    font: 400 18px/26px "Bahnschrift", sans-serif;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-box .social-icon ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}

.footer-box .social-icon ul li {
    list-style: none;
}

.footer-box .social-icon ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background: #2e3192;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    text-align: center;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-box .social-icon ul li a:hover {
    /* color: #000; */
    background: #3e3e3e;
}

.footer-manu h2 {
    font: 400 22px/24px "Bahnschrift", sans-serif;
    color: #fff;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.footer-manu ul {
    padding: 0;
    margin: 0;
}

.footer-manu ul li {
    list-style: none;
    margin: 0 0 30px 0;
}

.footer-manu ul li a {
    text-decoration: none;
    font: 400 18px/20px "Bahnschrift", sans-serif;
    color: #fff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    position: relative;
}

.footer-manu ul li a::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.footer-manu ul li a:hover::before,
.footer-manu ul li.active a::before {
    width: 100%;
    right: auto;
    left: 0;
}

.footer-manu h3 {
    font: 400 22px/24px "Bahnschrift", sans-serif;
    color: #fff;
}

.footer-manu-contect ul li {
    display: flex;
    gap: 15px;
    margin: 0 0 20px 0;
}

.footer-manu ul li .icon i {
    font-size: 19px;
    color: #fff;
}

.footer-manu ul li p {
    font: 400 18px/28px "Bahnschrift", sans-serif;
    color: #fff;
    margin: 0;
}

.footer-manu ul li .content .contect-wapper a {
    line-height: 26px;
}

.footer-email p {
    font: 400 15px/20px "Bahnschrift", sans-serif;
    color: #fff;
    margin: 0 0 15px 0;
}

.footer-email input {
    width: 100%;
    font: 400 15px/16px "Bahnschrift", Helvetica, sans-serif;
    color: #111;
    border: 1px solid #fff;
    outline: none;
    padding: 13px;
    margin: 0 0 10px 0;
}

.footer-email input::placeholder {
    opacity: 1;
    color: #6f6f6f;
}

.footer-email .Subscribe-btn {
    font: 400 15px/17px "Bahnschrift", Helvetica, sans-serif;
    color: #fff;
    letter-spacing: 0.50px;
    margin: 0;
    padding: 17px 34px;
    border: none;
    background: #2e3192;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.footer-email .Subscribe-btn:hover {
    background: #fff;
    color: #111;
}

.footer-bottom {
    padding: 25px 0;
    background: #000;
}

.footer-bottom ul {
    margin: 0;
    padding: 0;
}

.footer-bottom ul li {
    list-style: none;
    display: inline-block;
    position: relative;
    padding: 0 10px 0 0;
}

.footer-bottom ul li::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 5px;
    height: 1px;
    background: #fff;
}

.footer-bottom ul li:last-child:before {
    content: none;
}

.footer-bottom ul li a {
    text-decoration: none;
    font: 400 15px/17px "Bahnschrift", sans-serif;
    color: #fff;
}

.footer-bottom p {
    font: 400 15px/17px "Bahnschrift", sans-serif;
    color: #fff;
    text-align: right;
    margin: 0;
}

.fa-refresh {
    background-image: url(../img/refresh.png);
    width: 19px;
    height: 19px;
    background-position: center;
    background-repeat: no-repeat;
}

.submit__error {
    color: #c71110;
    font-weight: 500;
}

.contect-wapper {
    font: 400 18px/20px "Bahnschrift", sans-serif;
    line-height: 20px;
    color: #fff;
}

/* responsive */
@media (max-width:1699px) {
    .felix-slider-text h2 {
        font-size: 50px;
        line-height: 58px;
    }
}

@media (max-width:1599px) {
    .felix-slider-text h2 {
        font-size: 47px;
        line-height: 55px;
    }
}

@media (max-width:1499px) {
    .contect-number a {
        font-size: 20px;
        line-height: 22px;
    }

    .industry-insights-img {
        margin: 0 -110px 0 0;
    }

    .felix-slider-text h2 {
        font-size: 44px;
        line-height: 52px;
    }

    .felix-slider-text h3 {
        font-size: 29px;
        line-height: 31px;
    }
}

@media (max-width:1399px) {

    .navbar-light .navbar-brand,
    .contect-number {
        width: 20%;
    }

    .felix-slider-text h2 {
        font-size: 41px;
        line-height: 50px;
    }

    .factory-business {
        padding: 96px 0;
    }

    .industry-insights-img {
        margin: 0 -70px 0 0;
    }

    .reach-world {
        padding: 80px 0;
        position: relative;
    }
}

@media (max-width:1299px) {
    .industry-insights-img {
        margin: 0 0px 0 0;
    }

    .product-box .product-text h2,
    .product-box .product-text a {
        left: 30px;
    }

    .product-box .product-text h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .factory-business-images-02 {
        margin: -189px 0 0 -8px;
        width: 80%;
    }

    .factory-business-images-03 {
        top: -34px;
        left: 0px;
    }

    .felix-slider-text h2 {
        font-size: 38px;
        line-height: 47px;
    }

    .felix-slider-text h3 {
        font-size: 26px;
        line-height: 28px;
    }

    .people-choose {
        padding: 120px 0 80px;
        position: relative;
    }
}

@media (max-width:1199px) {
    #header #navbarSupportedContent ul li>a {
        margin: 0 20px;
    }

    .contect-number .call-icon {
        height: 34px;
        width: 34px;
        line-height: 29px;
    }

    .contect-number .call-icon img {
        width: 15px;
        line-height: 37px;
    }

    #header #navbarSupportedContent {
        width: 60%;
    }

    .felix-slider-text h3 {
        font-size: 22px;
        line-height: 23px;
    }

    .felix-slider-text h2 {
        font-size: 31px;
        line-height: 43px;
    }

    .factory-business-text {
        padding: 0 20px;
    }

    .product-top .product-titel h2 {
        font-size: 36px;
        line-height: 43px;
    }

    .product-top a {
        font-size: 16px;
        line-height: 17px;
        padding: 17px 15px;
    }

    .industry-insights .industry-insights-text h3 {
        font-size: 21px;
        line-height: 23px;
    }

    .industry-insights .industry-insights-text p {
        font-size: 16px;
        line-height: 22px;
    }

    .people-choose .people-choose-box h2 {
        font-size: 23px;
        line-height: 32px;
    }

    .people-choose {
        padding: 100px 0 70px;
        position: relative;
    }

    .factory-business-text h2 {
        font-size: 35px;
        line-height: 44px;
    }

    #contact-us .factory-business-text h4 {
        font-size: 20px;
        line-height: 22px;
    }

    #contact-us .factory-business-text .contect-wapper {
        font-size: 18px;
        line-height: 24px;
    }

    #projects-counter {
        padding: 63px 0;
        margin: 0 0 50px 0;
    }

    #contact-us {
        padding: 50px 0;
    }

    #contact-us .submit__control .submit__generated .increment-capcher {
        font-size: 32px;
        line-height: 36px;
    }

    .footer-manu h2 {
        margin: 0 0 25px 0;
    }

    .footer-manu ul li {
        margin: 0 0 20px 0;
    }

    .people-choose .people-choose-service .people-choose-service-box h2 {
        font-size: 22px;
        line-height: 24px;
    }
}

@media (max-width: 991px) {
    .navbar-light .navbar-brand {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 157px;
        margin: auto;
        height: 80px;
    }

    .navbar-light .navbar-toggler {
        color: #111;
        border: 2px solid #737373;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    #header #navbarSupportedContent ul li:hover>a::after {
        background-image: url(../img/arrow-bottom-2.png);
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }

    #header #navbarSupportedContent ul li.show>a::after {
        background-image: url(../img/arrow-bottom-2.png);
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }

    .navbar-light .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .people-choose {
        padding: 70px 0 50px;
    }

    .navbar-expand-lg {
        padding: 26px 30px;
    }

    #header #navbarSupportedContent {
        position: absolute;
        left: 0;
        right: 0;
        top: 92px;
        z-index: 1;
        border: none;
        background: #fff;
        margin: 0 auto;
        width: 100%;
        border-top: 1px solid #f2f2f2;
        padding: 0;
    }

    #header #navbarSupportedContent ul {
        padding: 20px 0 25px;
    }

    #header #navbarSupportedContent ul li>a {
        padding: 11px 0;
        display: inline-block;
    }

    .factory-business-images-02 {
        margin: -179px 0 0 -128px;
        width: auto;
    }

    .factory-business-images {
        margin: 0 0 30px 0;
    }

    .factory-business-text {
        text-align: left;
    }

    .factory-business-images-03 {
        top: 20px;
        left: 90px;
    }

    .felix-slider-text h3 {
        font-size: 17px;
        line-height: 19px;
        margin: 0 0 10px 0;
    }

    .felix-slider-text h2 {
        font-size: 24px;
        line-height: 35px;
    }

    .felix-slider-text {
        bottom: 32px;
    }

    .navbar-light .navbar-brand,
    .contect-number {
        width: max-content;
    }

    .dropdown-menu.show {
        display: table-caption;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        background: none;
        border: none;
    }

    .reach-world {
        padding: 50px 0;
        position: relative;
    }

    .reach-world .reach-world-titel h2 {
        font-size: 34px;
        line-height: 36px;
        margin: 0 0 28px 0;
    }

    .reach-world::before {
        height: 341px;
    }

    .industry-insights {
        padding: 30px 0 50px;
    }

    .industry-insights::before {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
    }

    .industry-insights-img {
        margin: 0 0 40px 0;
        text-align: center;
    }

    #projects-counter .counter-show .counter h2 {
        font-size: 19px;
        line-height: 21px;
    }

    .happy-clients-logo {
        margin: 0 10px;
    }

    .factory-business::before,
    .contact-country::before {
        width: 199px;
        height: 281px;
    }

    .footer-box {
        margin: 0 0 30px 0;
    }

    .footer-top {
        padding: 45px 0;
    }

    .footer-bottom {
        padding: 17px 0;
    }

    .industry-insights-order-1 {
        order: 2;
    }

    .industry-insights-order-2 {
        order: 1;
    }

    .factory-business {
        text-align: center;
    }
}

@media (max-width:767px) {
    .navbar-light .navbar-brand {
        left: -40px;
    }
    #about-section{
        padding-top: 0;
        margin-top: 0;
    }
    .reach-world-box {
        display: inline-block;
    }

    .reach-world {
        text-align: center;
    }

    .reach-world {
        padding: 50px 0 0px;
    }

    .factory-business {
        padding: 46px 0;
    }

    .product-top .product-titel h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .product-top {
        padding: 16px 21px;
    }

    .reach-world-box {
        display: inline-block;
        margin: 0 0 20px 0;
    }

    .people-choose {
        padding: 50px 0 20px;
        position: relative;
    }

    .felix-slider-text {
        left: 7%;
    }

    .felix-slider-text h3 {
        font-size: 14px;
        line-height: 14px;
    }

    .factory-business-text {
        padding: 0;
        text-align: center;
    }

    .industry-insights .industry-insights-text {
        padding: 0;
        text-align: center;
    }

    .people-choose {
        text-align: center;
    }

    .people-choose .people-choose-service .people-choose-service-box {
        justify-content: center;
    }

    .factory-business-images-03 {
        left: 10px;
    }

    .product-box .product-text h2,
    .product-box .product-text a {
        left: 16px;
    }

    .product-box .product-text h2 {
        top: 19px;
    }

    .product-box .product-text a img {
        width: 17px;
    }

    .product-box .product-text a {
        padding: 10px 15px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-manu-contect ul li,
    .footer-box .social-icon ul {
        justify-content: center;
    }

    .footer-bottom ul {
        text-align: center;
        margin: 0 0 10px 0;
    }

    .footer-bottom p {
        text-align: center;
    }

    .industry-insights::before {
        height: 50%;
    }

    .reach-world .reach-world-titel h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .reach-world {
        padding: 30px 0 0px;
    }

    .factory-business-text h3 {
        padding-right: 0;
    }

    .footer-manu h2 {
        margin: 0 0 15px 0;
    }

    .industry-insights .industry-insights-text h2,
    .industry-insights .industry-insights-text h3 {
        margin: 0 0 20px 0;
    }

    .footer-manu {
        margin: 0 0 40px 0;
    }

    .footer-top .col-md-6:last-child .footer-manu {
        margin: 0;
    }

    .felix-slider-text h2 {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .factory-business-images {
        padding: 0 0 0px 30px;
    }

    .product-box .product-text h2 {
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width:575px) {
    .navbar-light .navbar-brand {
        left: 0;
    }

    .felix-slider-text h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .felix-slider-text h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .felix-slider-text {
        bottom: 13px;
    }

    .contect-number {
        display: none;
    }

    .display-575 {
        display: flex !important;
        margin: 0 20px;
    }

    .factory-business-images-02 {
        margin: -139px 0 0 -0;
        border: 15px solid #fff;
    }

    .factory-business-images-03 {
        left: 0;
        top: -10px;
    }

    .factory-business-text h2 {
        font-size: 29px;
        line-height: 39px;
    }

    .factory-business-images {
        margin: 0 0 10px 0;
    }

    .factory-business-text p {
        font-size: 16px;
        line-height: 22px;
    }

    .factory-business-text h3 {
        padding: 0 0 11px 0;
        font-size: 19px;
        line-height: 18px;
    }

    .product-top a {
        font-size: 14px;
        line-height: 16px;
        padding: 13px 12px;
    }

    .product-top .product-titel h2 {
        font-size: 25px;
        line-height: 27px;
    }

    .industry-insights {
        padding: 30px 0;
    }

    .industry-insights::before {
        height: 56%;
    }

    .reach-world .reach-world-titel h2 {
        font-size: 23px;
        line-height: 27px;
    }

    .industry-insights .industry-insights-text h2,
    #happy-clients .happy-clients-titel h2 {
        font-size: 34px;
        line-height: 36px;
        margin: 0 0 20px 0;
    }

    .industry-insights .industry-insights-text h3 {
        font-size: 19px;
        line-height: 21px;
        margin: 0 0 20px 0;
    }

    .industry-insights .industry-insights-text p {
        margin: 0 0 20px;
    }

    .people-choose .people-choose-box h2 {
        font-size: 21px;
        line-height: 27px;
    }

    #projects-counter .counter-show .counter h2 {
        font-size: 16px;
        line-height: 20px;
    }

    #projects-counter .counter-show .counter .count-number,
    #projects-counter .counter-show .counter .count-number::before {
        font-size: 46px;
        line-height: 50px;
    }

    #projects-counter .counter-show .counter:last-child .count-number::before {
        right: -33px;
    }

    #contact-us {
        padding: 30px 0;
    }

    #projects-counter {
        padding: 33px 0;
        margin: 0 0 20px 0;
    }

    #happy-clients .happy-clients-wappers {
        padding: 9px 0 23px;
    }

    #contact-us .submit__control .submit__generated .increment-capcher {
        font-size: 26px;
        line-height: 32px;
    }

    .people-choose .people-choose-service p {
        font-size: 16px;
        line-height: 24px;
    }

    #contact-us .factory-business-text h4 {
        font-size: 18px;
        line-height: 19px;
    }

    #contact-us .factory-business-text .contect-wapper {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width:480px) {
    .felix-slider-text h3 {
        font-size: 12px;
        line-height: 16px;
    }

    .felix-slider-text h2 {
        font-size: 14px;
        line-height: 22px;
    }

    .felix-slider-text {
        width: 70%;
    }

    .navbar-light .navbar-brand {
        width: 110px;
        height: 54px;
    }

    .navbar-expand-lg {
        padding: 19px 15px;
    }

    #header #navbarSupportedContent {
        top: 78px;
    }

    .reach-world-box {
        display: grid;
    }

    #contact-us .contect-form-box {
        width: 100%;
    }

    .industry-insights::before {
        height: 63%;
    }

    .product-top {
        display: block;
        text-align: center;
    }

    .product-top .product-titel h2 {
        font-size: 25px;
        line-height: 27px;
        margin: 0 0 11px 0;
    }

    .industry-insights-img {
        margin: 0 0 40px 0;
        text-align: center;
    }

    .industry-insights .industry-insights-text h2,
    #happy-clients .happy-clients-titel h2 {
        font-size: 29px;
        line-height: 29px;
    }

    .industry-insights .industry-insights-text h3 {
        font-size: 16px;
        line-height: 18px;
    }

    .people-choose {
        padding: 30px 0 20px;
    }

    #projects-counter .counter-show {
        display: block;
    }

    #projects-counter .counter-show .counter {
        margin: 0 0 20px 0;
    }

    #projects-counter .counter-show .counter:last-child {
        margin: 0;
    }

    .factory-business-text h2 {
        font-size: 21px;
        line-height: 34px;
        margin: 0 0 20px 0;
    }

    .factory-business-text h3 {
        padding: 0 0 11px 0;
        font-size: 19px;
        line-height: 18px;
        margin: 0 0 20px 0;
    }

    .industry-insights {
        padding: 0 0 30px 0;
    }

    #contact-us .submit__control .submit__generated .increment-capcher {
        font-size: 20px;
        line-height: 22px;
    }

    .footer-manu ul li a {
        font-size: 16px;
        line-height: 18px;
    }

    .footer-manu h3 {
        font-size: 20px;
        line-height: 22px;
    }

    .footer-top {
        padding: 25px 0;
    }

    .factory-business {
        padding: 26px 0;
    }

    .footer-manu ul li p {
        font-size: 15px;
        line-height: 26px;
    }

    .footer-manu h2 {
        font-size: 20px;
        line-height: 22px;
    }

    .footer-box p {
        font-size: 16px;
        line-height: 23px
    }

    .factory-business-images-02 {
        margin: -99px 10px -0;
        border: 6px solid #fff;
    }

    .people-choose .people-choose-service .people-choose-service-box h2 {
        font-size: 20px;
        line-height: 22px;
    }
}

@media (max-width:360px) {
    .felix-slider-text h2 {
        font-size: 13px;
        line-height: 21px;
    }

    .people-choose .people-choose-box h2 {
        font-size: 19px;
        line-height: 25px;
    }

    #contact-us .submit__control .submit__generated .increment-capcher {
        font-size: 17px;
        line-height: 19px;
    }

    .factory-business-text h3 {
        font-size: 16px;
        line-height: 15px;
    }

    .reach-world .reach-world-titel h2 {
        font-size: 20px;
        line-height: 27px;
        margin: 0 0 20px 0;
    }

    .industry-insights::before {
        height: 70%;
    }
}

/* home page done */
.breadcrumb {
    padding: 78px 0;
    background-image: url(../img/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
}

.breadcrumb h2 {
    font: 700 33px/35px "Montserrat", sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.contact-country {
    padding: 150px 0 75px 0;
    position: relative;
}

.contact-country-box {
    background: #fff;
    border: 2px solid #150707;
    text-align: center;
    padding: 37px;
    margin: 56px 0 0 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.contact-country-box:hover {
    background: #0b93dd;
}

.contact-country-img {
    display: inline-block;
    border: 2px solid #000;
    border-radius: 119px;
    overflow: hidden;
    margin: -95px 0 20px 0;
}

.contact-country-box h2 {
    font: 700 40px/44px "Montserrat", sans-serif;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.contact-country-box:hover h2 {
    color: #fff;
}

.contact-country-box p {
    font: 400 18px/24px "Bahnschrift", sans-serif;
    color: #3f3f3f;
    margin: 0 0 35px 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.contact-country-box:hover p {
    color: #fff;
}

.contact-country-box p a {
    text-decoration: none;
    color: #3f3f3f;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.contact-country-box:hover p a {
    color: #fff;
}

.contact-country-box p a:hover {
    color: #111;
}

.contact-country-box p:last-child {
    margin: 0;
}

@media (max-width:1199px) {
    .contact-country-box h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .contact-country-box p {
        margin: 0 0 20px 0;
    }

    .contact-country {
        padding: 100px 0 35px 0;
    }

    .factory-business::before,
    .contact-country::before {
        width: 239px;
        height: 339px;
    }
}

@media (max-width:991px) {
    .contact-country-box {
        margin: 56px 0 30px 0;
    }

    .contact-country {
        padding: 70px 0 0;
    }

    .breadcrumb {
        padding: 58px 0;
    }
}

@media (max-width:767px) {
    .breadcrumb h2 {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width:575px) {
    .contact-country {
        padding: 40px 0 0;
    }
}

@media (max-width:480px) {
    .breadcrumb {
        padding: 38px 0;
    }

    .breadcrumb h2 {
        font-size: 24px;
        line-height: 26px;
    }
}

/* end */

/*================================================= Industry Sectors ================================================= */
.industry-section {
    background: #ededed;
    padding: 70px 0;
}

.industry-section .industry-section-titel {
    text-align: center;
}

.industry-section .industry-section-titel h2 {
    font: 700 40px/48px "Montserrat", sans-serif;
    color: #000;
    margin: 0 0 50px;
}

.industry-section-tab .industry-section-tab-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    gap: 21px;
    flex-wrap: wrap;
    position: relative;
}

.industry-section-tab .industry-section-tab-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #bababa;
    margin: auto;
}

.industry-section-tab .industry-section-tab-wrapper .btn {
    font: 500 19px/21px "Montserrat", sans-serif;
    color: #000;
    margin: 0;
    padding: 18px 14px;
    border: 2px solid #bababa;
    background: #fff;
    outline: none;
    box-sizing: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.industry-section-tab .industry-section-tab-wrapper .btn:is(:hover, :active, :focus),
.industry-section-tab .industry-section-tab-wrapper .btn.is-checked {
    background: #0b94dc;
    color: #fff;
    border-color: #0b94dc;
    box-shadow: none;
}

.industry-section-tab .industry-section-tab-wrapper .btn-group-1 {
    z-index: 1;
}

.industry-section-tab .industry-section-tab-wrapper .btn-group-1:first-child {
    display: none;
}

.admin-office-box {
    padding: 0 0 30px 0;
}

.admin-office-img {
    overflow: hidden;
}

.admin-office-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.admin-office-box:hover .admin-office-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.admin-office-box h2 {
    font: 500 19px/21px "Montserrat", sans-serif;
    color: #000;
    margin: 0;
    background: #fff;
    padding: 13px 0;
    text-align: center;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.admin-office-box:hover h2 {
    background: #0b94dc;
    color: #fff;
}

@media (max-width:1199px) {
    .admin-office-box h2 {
        font-size: 17px;
        line-height: 19px;
    }

    .industry-section {
        background: #ededed;
        padding: 50px 0;
    }
}

@media (max-width:991px) {
    .industry-section-tab .industry-section-tab-wrapper .btn {
        font-size: 17px;
        line-height: 19px;
        padding: 15px 10px;
    }
}

@media (max-width:767px) {
    .industry-section-tab .industry-section-tab-wrapper {
        display: block;
        margin: 0 0 30px 0;
        text-align: center;
    }

    .industry-section-tab .industry-section-tab-wrapper::before {
        content: none;
    }

    .industry-section .industry-section-titel h2 {
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 30px;
    }

    .industry-section-tab .industry-section-tab-wrapper .btn-group-1 {
        margin: 0 0 20px 0;
    }

    .admin-office-box h2 {
        font-size: 15px;
        line-height: 21px;
    }

    .industry-section {
        background: #ededed;
        padding: 30px 0 20px;
    }
}

@media (max-width:767px) {
    .grid {
        text-align: center;
    }

    .admin-office-box {
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width:480px) {
    .industry-section .industry-section-titel h2 {
        font-size: 31px;
        line-height: 33px;
    }

    .industry-section-tab .industry-section-tab-wrapper .btn-group-1 {
        margin: 0 0 10px 0;
    }
}

@media (max-width:360px) {
    .industry-section .industry-section-titel h2 {
        font-size: 29px;
        line-height: 31px;
    }
}




/* ================================ Products Page Start ================================ */
.product-tab-section {
    padding: 130px 0 90px;
}

.product-tab-section .product-tabs-col {
    position: sticky;
    top: 145px;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper {
    list-style: none;
    margin: 0 0 50px;
    padding: 0;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab {
    margin: 0 0 15px;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab:last-child {
    margin: 0;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link {
    text-decoration: none;
    font: 600 18px/20px "Montserrat", sans-serif;
    letter-spacing: 0;
    color: #000;
    padding: 25px;
    display: block;
    background: #f3f3f3;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    position: relative;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 0;
    background: #2e3192;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link.active {
    background: #e5e5e5;
}

.product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link.active::before {
    height: 100%;
}

.product-tab-section .product-tabs-col .brochures-section h4 {
    font: 600 18px/20px "Montserrat", sans-serif;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 30px;
}

.product-tab-section .product-tabs-col .brochures-section p {
    font: 400 16px/26px "Montserrat", sans-serif;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 22px;
}

.product-tab-section .product-tabs-col .brochures-section a {
    text-decoration: none;
    font: 600 18px/20px "Montserrat", sans-serif;
    letter-spacing: 0;
    background: #2e3192;
    color: #fff;
    border: 0;
    outline: 0;
    display: block;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.product-tab-section .product-tab-details-col .product-tab-division {
    padding: 145px 0 0;
    margin: -145px 0 0;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-title {
    font: 600 32px/34px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
    margin: 0 0 25px;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-desc {
    font: 300 18px/24px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
    display: inline-block;
    padding: 0;
    margin: 0 0 22px;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-desc:last-child {
    margin: 0;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper {
    margin: 0 0 30px;
    display: block;
    position: relative;
    overflow: hidden;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper::before {
    background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 0;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper::after {
    background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 0;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper:hover::before {
    height: 100%;
    width: 100%;
    opacity: 0;
    transition-duration: 1.3s;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper:hover::after {
    height: 100%;
    width: 100%;
    opacity: 0;
    transition-duration: 1.3s;
}

.product-tab-section .product-tab-details-col .product-tab-division .product-tab-title-small {
    font: 600 20px/22px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
    margin: 0 0 30px;
}

.product-tab-section .product-tab-details-col .product-tab-division ul {
    margin: 0 0 35px;
    list-style: none;
    padding-left: 20px;
}

.product-tab-section .product-tab-details-col .product-tab-division ul:last-child {
    margin: 0;
}

.product-tab-section .product-tab-details-col #design-and-engineering-services.product-tab-division ul li {
    margin: 0 0 4px;
}

.product-tab-section .product-tab-details-col #design-and-engineering-services.product-tab-division ul:last-child,
.product-tab-section .product-tab-details-col #design-and-engineering-services.product-tab-division ul li:last-child {
    margin: 0;
}

.product-tab-section .product-tab-details-col .product-tab-division ul li span {
    position: relative;
    font: 300 18px/20px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
    padding: 0 0 0 25px;
}

.product-tab-section .product-tab-details-col .product-tab-division ul li span::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    right: auto;
    font: 300 18px/20px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
}

.product-tab-section .product-tab-details-col #design-and-engineering-services.product-tab-division ul li span::before {
    content: '-';
}

.product-tab-section .product-tab-details-col #managed-logistics.product-tab-division ul li span::before,
.product-tab-section .product-tab-details-col #project-finance.product-tab-division ul li span::before {
    content: '.';
    font-size: 28px;
    transform: translateY(-85%);
    -webkit-transform: translateY(-85%);
    -moz-transform: translateY(-85%);
    -ms-transform: translateY(-85%);
    -o-transform: translateY(-85%);
}

.product-tab-section .product-tab-details-col .hr-wrapper {
    margin: 55px 0 35px;
}

.product-tab-section .product-tab-details-col .hr-wrapper hr {
    margin: 3px 0;
    background-color: transparent;
    color: transparent;
    border-top: 2px solid #000;
    opacity: 1;
}

.product-tab-section .product-tab-details-col .product-tab-more-details {
    position: relative;
    margin: 10px 0 25px;
    padding: 0;
}

.product-tab-section .product-tab-details-col .product-tab-more-details::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #000;
    z-index: -1;
}

.product-tab-section .product-tab-details-col .product-tab-more-details h4 {
    font: 600 18px/20px "Bahnschrift", sans-serif;
    letter-spacing: 0;
    color: #3f3f3f;
    background: #fff;
    display: inline-block;
    padding: 0 25px 0 0;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .product-tab-section {
        padding: 80px 0 50px;
    }

    .product-tab-section .product-tabs-col {
        top: 30px;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        margin: 0 0 30px;
    }

    .product-tab-section .product-tabs-col .brochures-section h4 {
        margin: 0 0 15px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division {
        padding: 30px 0 0;
        margin: -30px 0 0;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link {
        font-size: 15px;
        line-height: 18px;
        padding: 18px 25px;
    }

    .product-tab-section .product-tabs-col .brochures-section a {
        font-size: 15px;
        line-height: 18px;
        padding: 15px 20px;
        gap: 20px;
    }

    .product-tab-section .product-tab-details-col .hr-wrapper {
        margin: 40px 0 35px;
    }
}

@media (max-width: 991px) {
    .product-tab-section {
        padding: 40px 0;
    }

    .product-tab-section .product-tabs-col .brochures-section {
        margin: 0 0 50px;
        display: inline-block;
    }

    .product-tab-section .product-tabs-col .brochures-section a {
        width: fit-content;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        display: grid;
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab {
        margin: 0;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link {
        padding: 20px;
    }

    .product-tab-section .product-tab-details-col .hr-wrapper {
        margin: 40px 0 30px;
    }
}

@media (max-width: 767px) {
    .product-tab-section .product-tabs-col .product-tabs-wrapper .product-tab .product-tab-link {
        font-size: 14px;
        line-height: 16px;
        padding: 18px;
    }

    .product-tab-section .product-tabs-col .brochures-section a {
        font-size: 14px;
        line-height: 17px;
        padding: 12px 16px;
        gap: 18px;
    }

    .product-tab-section .product-tab-details-col .hr-wrapper {
        margin: 35px 0 25px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division {
        padding: 25px 0 0;
        margin: -25px 0 0;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 20px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title-small {
        margin: 0 0 20px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-desc {
        margin: 0 0 18px;
    }

    .product-tab-section .product-tab-details-col .product-tab-more-details {
        margin: 5px 0 20px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper {
        margin: 0 0 25px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul {
        margin: 0 0 25px;
    }
}

@media (max-width: 575px) {
    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        grid-template-columns: 1fr;
    }

    .product-tab-section .product-tabs-col .brochures-section {
        margin: 0 0 40px;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        margin: 0 0 25px;
    }

    .product-tab-section .product-tabs-col .brochures-section h4 {
        margin: 0 0 10px;
    }

    .product-tab-section .product-tabs-col .brochures-section p {
        margin: 0 0 15px;
    }

    .product-tab-section .product-tab-details-col .product-tab-more-details h4 {
        font-size: 15px;
        line-height: 18px;
        padding: 0 15px 0 0;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title {
        font-size: 26px;
        line-height: 28px;
        margin: 0 0 18px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper {
        margin: 0 0 18px;
    }

    .product-tab-section .product-tab-details-col .hr-wrapper {
        margin: 28px 0 24px;
    }

    .product-tab-section .product-tabs-col .brochures-section p {
        font-size: 14px;
        line-height: 24px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-desc {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 15px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title-small {
        font-size: 18px;
        line-height: 20px;
        margin: 0 0 15px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul li span,
    .product-tab-section .product-tab-details-col .product-tab-division ul li span::before {
        font-size: 16px;
        line-height: 18px;
    }

    .product-tab-section .product-tab-details-col #design-and-engineering-services.product-tab-division ul li {
        margin: 0 0 2px;
    }

    .product-tab-section .product-tab-details-col .product-tab-more-details {
        margin: 0 0 12px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division {
        padding: 20px 0 0;
        margin: -20px 0 0;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul {
        margin: 0 0 15px;
    }

    .product-tab-section .product-tabs-col .brochures-section h4 {
        font-size: 16px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .product-tab-section {
        padding: 20px 0;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        gap: 12px;
    }

    .product-tab-section .product-tabs-col .product-tabs-wrapper {
        margin: 0 0 20px;
    }

    .product-tab-section .product-tabs-col .brochures-section {
        margin: 0 0 25px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title {
        font-size: 24px;
        line-height: 30px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title {
        margin: 0 0 8px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-desc {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 12px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-img-wrapper {
        margin: 0 0 15px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division .product-tab-title-small {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 10px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul {
        padding-left: 10px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul li span {
        font-size: 14px;
        line-height: 16px;
        padding: 0 0 0 20px;
    }

    .product-tab-section .product-tab-details-col .product-tab-division ul li span::before {
        font-size: 14px;
        line-height: 16px;
    }

    .product-tab-section .product-tab-details-col .product-tab-more-details h4 {
        font-size: 14px;
        line-height: 22px;
    }

    .product-tab-section .product-tab-details-col .hr-wrapper {
        margin: 25px 0 20px;
    }
}

/* ================================ Products Page End ================================ */