@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800&display=swap');

:root {
    --primary-color: #f05e03;
    --dark-color: #2e3192;
}

/* @font-face {
    font-family: "popins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
} */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #757F95;
    overflow-x: hidden;
    line-height: 1.8;
}

img {
    max-width: 100%;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

a {
    color: var(--primary-color);
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    margin: 0px;
    line-height: 1.2;

}

.fa,
.fas {
    -webkit-font-smoothing: antialiased;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
}

iframe {
    width: 100%;
}

section {
    padding: 80px 0;
}

/* title start */
.page_title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    margin-top: -6px;
}

.sub_title {
    position: relative;
    display: inline-block;
    font-size: 25px;
}

.page_title .sub_title:after {
    right: 0;
    display: block;
}

.page_title.text-left .sub_title:after {
    display: none;
}

/* title end */


.go-top {
    position: fixed;
    cursor: pointer;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
    z-index: 9999;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 42px;
    transition: all .9s ease-out 0s;
    border-right: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 93%;
    left: 93%;
}

/* inquiry btn start */
.sidebar-contact {
    position: fixed;
    top: 380px;
    left: 45px;
    width: 300px;
    height: auto;
    /* padding: 36px 25px; */
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 9;
}

.sidebar-contact a {
    color: #fff;
}

.sidebar-contact.active {
    right: 0;
}

.toggle {
    position: absolute;
    height: auto;
    width: auto;
    text-align: center;
    cursor: pointer;
    background: var(--primary-color);
    box-shadow: -5px -5px 10px rgb(0 0 0 / 50%);
    top: -150px;
    padding: 5px 15px;
    font-weight: bold;
    left: -78px;
    border: 3px solid #fff;
    border-radius: 0 0 10px 10px;
    transform: rotate(-90deg);
}

/* inquiry btn end */

/* product */
.pro_card .card_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pro_card .card-title {
    color: #fff;
    min-height: 50px;
}

.product_section .card-body {
    height: 280px;
}

.product_section .site_title {
    color: #fff;
}

.pro_card {
    padding: 20px;
    margin: 20px 10px;
    background-color: #000;
    border: 1px solid #444444;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.pro_card .card-body {
    padding: 0;
    margin-top: 20px;
}

.pro_card span {
    color: #888;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title {
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 1px;
}

.pro_card .card-title {
    color: #fff;

}

.product_section .explore_btn {
    color: #fff !important;
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
    transition: var(--transition);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 5px 30px;
    background-color: var(--primary-color);
    border-radius: 1px 30px 1px
}

.product_section .explore_btn i {
    margin-left: 5px;
    margin-right: -20px;
}

.card_img {
    overflow: hidden;
}

.card_img img {
    transition: all 0.8s ease-in-out;
}

.pro_card:hover {
    border-color: #fff;
}

.pro_card:hover .card_img img {
    transform: scale(1.1);
}


.pro_list ul {
    flex-direction: column;
    border: none;
}

.pro_list ul li a {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 15px 0 #dbdfe4;
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.4s ease-in-out;
    border: 2px dashed transparent;
}

.pro_list ul li a:after {
    display: none;
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-color);
}

.pro_list ul li a:hover,
.pro_list ul li a.active {
    padding-left: 35px;
    border: 2px solid var(--primary-color);
}

.pro_list ul li a.active:after {
    background-color: var(--primary-color);
}



.product_detail_section .card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7f2;
}

.product_detail_section .card-header {
    position: relative;
    background: var(--dark-color);
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}

.product_detail_section .card-body {
    padding: 15px;
}

.product_detail_section .card-body>img {
    width: 100%;
}

.product_detail_section .card-link {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.pro_img {
    padding: 15px;
    padding-right: 0;
}

.pro_txt {
    padding: 15px;
    padding-left: 0;
}

.pro_txt h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.slick-slide img {
    display: inline-block;
}

/* product end */

/* blog detail */
.comment li {
    border: 1px solid #e5e7f2;
    box-shadow: 0 5px 10px 0 #dae3f0;
}

.blog_section .comments-wrap h3 {
    margin-bottom: 20px;
}

.main-default-content h3 {
    font-size: 24px;
}

.blog_section .comment {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog_section .comment li {
    display: inline-block;
    position: relative;
    padding: 30px;
    padding-left: 150px;
    margin-bottom: 40px;
    background-color: #eeeeee;
}

.blog_section .comment li img {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: 83px;
}

.blog_section .comment li h3 {
    font-size: 18px;
    margin-top: -5px;
    margin-bottom: 12px;
}

.blog_section .comment li span {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: normal;
    margin-left: 20px;
}

.blog_section .comment li p {
    margin-bottom: 0;
}

.blog_section .comment li .read-more {
    position: absolute;
    top: 30px;
    right: 30px;
}

.blog_section a {
    text-decoration: none !important;
}

.blog_section a {
    color: var(--primary-color);
}

.blog_section .comment li.margin-left {
    margin-left: 30px;
    margin-bottom: 30px;
}




.blog_list li {
    width: 31.33% !important;
}

.date_box {
    width: 65px;
    height: 65px;
    text-align: center;
    font-weight: 700;
    font-size: 27px;
    line-height: 25px;
    color: #fff;
    padding-top: 5px;
    z-index: 1;
    background-color: var(--primary-color);
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
}

.author {
    display: flex;
    color: #999;
    margin-bottom: 15px;
}

.author span {
    color: var(--primary-color);
    margin-left: 8px;
}

.blog {
    box-shadow: 0 5px 15px 0 #dae3f0;
    margin-bottom: 20px;
}

.blog_section .card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7f2;
    box-shadow: 0 5px 15px 0 #dae3f0;
}

.search_btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.blog_section .card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7f2;
    box-shadow: 0 5px 15px 0 #dae3f0;
}

.blog_section .card-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}

.blog_section .card-link {
    text-align: left;
    font-size: 25px;
    color: #333;
    font-family: "Oswald";

}

.post_list li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post_img {
    width: 90px;
    margin-right: 10px;
}

.post_img img {
    border-radius: 5px;
}

.post_list .info_txt {
    padding: 0;
    flex: 1;
}

.post_list li h4 {
    font-size: 18px;
    margin: 0;
    color: #333;
    flex: 1;
}

.post_list .info_txt span a {
    color: #999;
    font-size: 13px;
}

.post_list .info_txt span a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.tags_list a {

    float: left;
    padding: 4px 15px 2px;
    border-radius: 2px;
    color: #666;
    font-size: 18px;
    margin: 0 6px 6px 0;
    background: #e6e6ea;
    border: 1px solid #eee;
    transition: all 0.2s ease-in-out;
}

.tags_list a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.post_list .badge {
    background-color: var(--primary-color);
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review_list {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

/*.review_list:nth-child(2){ padding-left: 50px; }*/
.review_list:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.review_child {
    margin-left: 50px;
}

.review_list .user_txt p {
    font-size: 14px;
    color: #212529;
}

.review_list .my_btn {
    padding: 5px 20px;
    margin-top: 20px;
}

.user_img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-right: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 40%);
}

.blog-text {
    background: #fff;
    padding: 5px 20px 10px;
}

.blog-text .blog-meta {
    margin-bottom: 5px;
}

.blog-text .blog-meta a {
    font-size: 12px;
    font-weight: 500;
    color: #777a7e;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 30px;
}

.blog-text .blog-meta a:last-child {
    margin-right: 0px;
}

.blog-text .blog-meta a i {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 2px;
}

.blog-text .blog-meta a:after {
    position: absolute;
    content: "/";
    font-size: 12px;
    color: #a0a2a6;
    right: -22px;
}

.blog-text .blog-meta a:last-child:after {
    display: none;
}

.blog-text-title {
    font-size: 30px;
    line-height: 25px;
    text-transform: uppercase;
}

.blog-text-title a {
    color: #333;
}

.blog-text h4 {
    color: #333;
    font-size: 28px;
}

/* blog detail end */


/* HEADER SECTION START */

.header-area.sticky .navbar-area {
    background-color: #fff;
    top: 0;
    position: fixed;
    z-index: 9;
    min-height: 65px;
    width: 100%;

}

.navbar-area .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat;
}

#new_navbar {
    transition: all 0.5s ease-in-out;
}

.collapse:not(.show) {
    display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 0;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: var(--primary-color);
}

.top_header {
    display: flex;
    padding-left: 140px;
    justify-content: space-between;
}


.navbar-area {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

.top-header-area {
    background-color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-header-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;

}

.top-header-area .first_links li {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    transition: var(--transition);
    background-color: var(--primary-color);
    padding: 5px 11px;
    border-radius: 12px;
    margin-right: 12px;
}

.top-header-area ul li a {
    color: var(--white-color);
}

.top-header-area ul li i {
    margin-right: 5px;
}

.top-header-area ul li a i {
    color: var(--white-color);
    top: 3px;
    font-size: 14px;
    margin-right: 5px;
    transition: var(--transition);
}

.top-header-area ul li .navbar-option-language button {
    background-color: transparent;
    padding: 0;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
}

.dropdown-toggle {
    white-space: nowrap;
}

button {
    outline: 0 !important;
    box-shadow: none;
    border: none;
}

.top-header-area ul li .navbar-option-language button i {
    font-size: 14px;
    margin-right: 10px;
    line-height: 1;
    color: var(--white-color);
}

.top-header-area ul li .navbar-option-language .dropdown-menu {
    margin: 0;
    transform: translateY(30px);
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    right: 0;
    left: auto;
    border-radius: 0;
    padding: 8px 0;
    border: none;
    box-shadow: var(--box-shadow);
    background-color: var(--white-color);
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
}

.top-header-area ul li .navbar-option-language .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    transition: var(--transition);
    font-size: 14px;
    color: var(--heading-color);
}

.top-header-area ul li .navbar-option-language .dropdown-menu .dropdown-item img {
    max-width: 25px;
    width: 25px;
    margin-right: 10px;
}

.mobile-responsive-nav {
    display: none;
}

.desktop-nav {
    padding-top: 0;
    padding-bottom: 0;
}

.desktop-nav .navbar {
    transition: var(--transition);
    position: relative;
    padding-right: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.desktop-nav .navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    z-index: -1;
}

.navbar-area .navbar-brand {
    margin-right: 0;
    width: 200px;
    z-index: 3;
    padding: 5px 0;
}

.navbar-brand img {
    margin-left: 15px;
    width: 320px;
}

.navbar-collapse {
    flex-grow: 1;
    align-items: center;
}

.desktop-nav .navbar ul {
    padding-left: 0;
    list-style-type: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
}

.desktop-nav .navbar .navbar-nav .nav-item {
    position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
    margin-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    line-height: 1;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px 15px;
    margin: 0 5px;
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-left: 3px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease-in-out;
    background: #fff;
    position: absolute;
    visibility: hidden;
    border-radius: 0;
    display: block;
    width: 250px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 83px;
    left: 0;
    padding: 0;
    pointer-events: none;
    transform: scaleX(0);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: var(--heading-color);
    padding: 15px;
    border-bottom: 1px dashed #eeeeee;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
}

.desktop-nav .navbar .others-options {
    position: relative;
    top: 0;
}

.others-options a:hover {
    color: #fff;
}

.desktop-nav .navbar .others-options ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 1;
}

.desktop-nav .navbar .others-options ul li {
    display: inline-block;
    margin-right: 20px;
}

.desktop-nav .navbar .others-options ul li a {
    position: relative;
}

.desktop-nav .navbar .others-options ul li a i {
    color: var(--white-color);
    font-size: 20px;
}

.desktop-nav .navbar .others-options ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.default-btn {
    font-size: 16px;
    color: #fff;
    transition: var(--transition);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    padding: 13px 20px;
    background-color: var(--primary-color);
    border-radius: 1px 30px 1px
}
.navbar-area .default-btn{
    margin-right: 15px;
}

.default-btn i {
    position: relative;
    top: 2px;
    font-size: 14px !important;
    color: var(--white-color) !important;
    margin-left: 5px;
}

.default-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--optional-color);
    z-index: -1;
    transition: var(--transition);
}

.header-area .navbar-shape {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 270px;
    z-index: 2;
    width: 210px;
}

.header-area .navbar-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 310px;
    z-index: -2;
}

.others-option-for-responsive .dot-menu .inner {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 30px;
}

.others-option-for-responsive .others-options {
    position: relative;
    top: 0;
    background-color: var(--heading-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

.others-option-for-responsive .others-options ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 1;
}

.others-option-for-responsive .others-options ul li {
    display: inline-block;
    margin-right: 20px;
}

.others-option-for-responsive .others-options ul li a {
    position: relative;
}

.others-option-for-responsive .others-options ul li a i {
    color: var(--white-color);
    font-size: 20px;
}

.top_right_link ul {
    display: flex;
    color: #fff;
    margin-right: 25px;
}

.top_right_link li {
    padding: 4px 4px;
    display: flex;
}

.top_right_link li {
    color: #fff;
}

.top_right_link li i {
    color: #fff;
    margin-right: 5px;
    height: 26px;
    width: 26px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
}

.social-icon i {
    padding: 10px;
}

/* HEADER SECTION END */

/* sub header section start */
.sub_header.about {
    background: url(../images/subheader_about.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.blog {
    background: url(../images/subheader_blog.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.blog_detail {
    background: url(../images/subheader_blog.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.certificate {
    background: url(../images/subheader_certificate.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.contact {
    background: url(../images/subheader_contact.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.gallery {
    background: url(../images/subheader_gallery.jpg) no-repeat center;
    background-size: cover;
}

.sub_header.product {
    background: url(../images/subheader_products.jpg) no-repeat center;
    background-size: cover;
}

.sub_header {
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.sub_header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.6;
}

.sub_header h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    position: absolute;
    font-size: 60px;
    text-align: center;
    line-height: 50px;
    opacity: 0.2;
    bottom: 75px;
}

.sub_header .breadcrumb {
    background: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 5px 50px;
    position: absolute;
    z-index: 6;
    bottom: -27px;
    background-color: #fff;
    border-radius: 500%;
    box-shadow: 0 0 20px rgb(0 0 0 / 69%);
}

.sub_header .breadcrumb li a {
    color: #333;
}

.sub_header .breadcrumb li {
    color: #333;
    padding: 8px 15px 8px 10px;
    font-weight: 600;
    position: relative;
}

.sub_header .breadcrumb li.active {
    color: var(--primary-color);
}

.sub_header .breadcrumb li:after {
    content: "\f105";
    font-family: Font Awesome\ 5 Free;
    position: absolute;
    right: 0;
    top: 10px;
}

.sub_header .breadcrumb li.active:after {
    display: none;
}

/* suv-header section end */

/* BANNER SECTION START */
.amazingslider-nav-1 {
    display: none !important;
}

/* BANNER SECTION END */
.brand-link .brand-image {
    float: left;
    line-height: .8;
    margin-left: 0.8rem;
    margin-right: 0.5rem;
    margin-top: -3px;
    max-height: 47px ! important;
    width: auto;
}

/* about section start */
.ab-two-info a:hover {
    color: #fff;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.about-max-two {
    position: sticky;
    top: 100px;
    z-index: 1;
    padding-right: 50px;
}

.about-max-two .about-max-two-media {
    padding: 40px 0px 40px 40px;
}
.about-max-two-media img{
    height: 400px;
    object-fit: cover;
}
.about-two .about-year .about-year-info {
    border-bottom: 5px solid var(--primary-color);
}

.about-two .about-year .about-year-info {
    padding: 30px;
    margin-right: 40px;
    background-color: #e7e7e7;
    text-align: center;
    position: absolute;
    max-width: 240px;
    right: -40px;
    bottom: 0px;
    z-index: 1;
}

.about-two .about-year .about-year-info span {
    color: var(--primary-color);
}

.about-two .about-year .about-year-info span {
    display: block;
    font-size: 80px;
    line-height: 80px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.about-two .about-year .about-year-info p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0px;
}

.about-max-two:after {
    background-image: url(../images/about_bg.png);
    content: '';
    position: absolute;
    z-index: -1;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 45%;
}

.section-head.left.wt-small-separator-outer {
    text-align: center;
    margin-bottom: 20px;
}

.about-section-two-right .section-head {
    margin-bottom: 0;
}

.section-head {
    position: relative;
}

.site-text-primary,
.wt-small-separator {
    color: var(--primary-color);
}

.wt-small-separator {
    font-family: "Heebo", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 40px;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left {
    position: relative;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:before {
    background-color: var(--primary-color);
    right: -20px;
    width: 10px;
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    height: 22px;
    bottom: 0px;
    top: 0px;
    transform: skew(-20deg);
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:after {
    position: absolute;
    content: '';
    height: 22px;
    bottom: 0px;
    top: 0px;
    transform: skew(-20deg);
    right: -27px;
    width: 4px;
    background-color: var(--primary-color);
}

.site-button {
    outline: none;
    color: #fff;
    padding: 15px 40px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-table;
    background-color: var(--primary-color);
    border: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.5s all ease;
    border-radius: 1px 30px 1px;
}

.about-section-two-right .title {
    text-align: left;
    color: #000;
    font-size: 45px;
}

.about-section-two-right .section-head.left.wt-small-separator-outer {
    text-align: left;
}

/* about section end */

/* product section start */
.services-area {
    /* background-image: url(../images/product_bg.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.single-services-card {
    display: flex;
    background-color: rgba(17, 17, 17, 0.9);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 13px;
}

.services-area .owl-carousel .owl-item img {
    width: auto;
    display: block;
    margin-bottom: 25px;
}

.single-services-card h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 13px;
}

.single-services-card h3 a {
    color: #fff;
}

.single-services-card p {
    color: #fff;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 18px;
}

.read-more i {
    position: relative;
    top: 3px;
}

.single-services-card img {
    margin-bottom: 25px;
}

.product_section .slick-prev:before,
.product_section .slick-next:before {
    font-size: 30px;
}

.product_section .text-center .read_blog_btn {
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: lowercase;
    border-radius: 8px;
    padding: 2px 25px;
}
.product_section .card-text{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/* Product section end */

/* testimonial section start */
.testimonial-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
}

.testimonial-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 100px 50px;
    position: relative;
}

.testimonial-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9;
}

.single-testimonial {
    position: relative;
    padding-left: 40px;

}

.testimonial-bg img {
    width: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.single-testimonial p {
    font-style: italic;
    color: #fff;
}

.single-testimonial h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.single-testimonial span {
    color: #fff;
}

.testimonial_slider:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.testimonial_slider .single-testimonial p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.testimonial-bg .owl-theme .owl-nav {
    margin-top: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    bottom: -141px;
    right: -600px;
}

.testimonial-content {
    margin-left: 50px;
    margin-top: 12%;
}

.testimonial-content .circle-wrap {
    position: relative;
    display: inline-block;
}

.testimonial-content .circle-wrap .circle-1 {
    max-width: 150px;
    animation: rotation 50s infinite linear;
}

.testimonial-content .circle-wrap .circle-2 {
    position: absolute;
    bottom: -80px;
    left: 0;
    max-width: 80px;
    animation: rotation 50s infinite linear;
}

.testimonial-content .circle-wrap .circle-3 {
    position: absolute;
    bottom: -50px;
    right: -30px;
    max-width: 80px;
    animation: rotation 50s infinite linear;
}

.single-testimonial {
    margin-right: 24px;
}

.testimonial-content h2 {
    margin-bottom: 20px;
    color: #000;
}

.testimonial-content .section-head.left.wt-small-separator-outer {
    text-align: left;
}

/* testimonial section end */

/* blog section start */
.single-blog {
    margin-right: 25px;
}

.single-blog .blog-img {
    position: relative;
}

.single-blog .blog-img .date {
    position: absolute;
    top: 6.5%;
    right: 6%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px;
    max-width: 100px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 84%);
}

.single-blog .blog-img .date span {
    line-height: 1.4;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 22px;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-title-content{
    margin-top: 15%;
}

.blog-title-content .section-head.left.wt-small-separator-outer {
    text-align: left;
}
.blog-title-content h2{
    color: #000;
}
.latest-news-area .default-btn:hover {
    color: #fff;
}
.latest-news-area .blog-content p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.latest-news-area .default-btn {
    font-size: 16px;
    color: #fff;
    transition: var(--transition);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    padding: 8px 25px;
    background-color: var(--primary-color);
    border-radius: 1px 30px 1px
}

.latest-news-area .single-blog img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* blog section end */

/* certi section start */
.certi-text {
    display: flex;
    justify-content: center;
}

.read-more {
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    /* width: 150px; */
    /* margin: 0; */
    display: inline-block;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: var(--primary-color);
    color: #fff;
    margin: 10px 0;
    padding: 6px 32px;
    transition: all 0.3s ease-in-out;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.certi_section .pro_list ul li a {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 15px 0 #dbdfe4;
    overflow: hidden;
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    border: 1px solid #daddeb;
    border-radius: 25px;
}

.tab-content>.active {
    display: block;
}

.pro_list ul li a:hover,
.pro_list ul li a.active {
    color: #fff;
    background-color: var(--primary-color);
}

.pro_txt b {
    color: #000;
}

.certification_bg {
    background: #eeeeee;
}

/* certi section end*/

/* gallery section start */
.my_gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.my_gallery {
    overflow: hidden;
}

.single-latest-project {
    position: relative;
    z-index: 1;
}

.single-latest-project .project-slider-content {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(17, 17, 17, 0.8);
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.single-latest-project .project-slider-content i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--main-color);
    font-size: 20px;
    display: inline-block;
    color: var(--white-color);
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
    overflow: hidden;
}

.single-latest-project .project-slider-content i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--optional-color);
    z-index: -1;
    transition: var(--transition);
}

.single-latest-project .project-slider-content h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    margin-bottom: 0;
}

.single-latest-project .project-slider-content h3 a {
    color: var(--white-color);
    font-size: 20px;
}

.single-latest-project {
    margin-right: 20px;
}

/* Gallery end */

/* client section start */
.features-area {
    background-color: #eeeeee;

}

.single-features img {
    height: 70px;
    width: 100%;
    object-fit: contain;
}

.section-title-bg {
    color: #f0f0f0;
    font-size: 85px;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    opacity: .5;
    font-family: Monoton, cursive;
    text-transform: uppercase;
    right: 0;
    transform: translateY(-50%);
}

.single-features {
    text-align: center;
    background: #fff;
    padding: 15px;
    margin: 20px;
    transition: .4s;
    box-shadow: 0 -2px 20px 0 rgb(0 0 0 / 6%);
}

.slick-prev,
.slick-next {
    width: 25px;
    height: 25px;
}

.slick-prev:before,
.slick-next:before {
    color: var(--primary-color);
    font-size: 20px;
    opacity: 2.75;

}

.product_section,
.certi_section,
.features-area,
.my_gallery {
    padding: 80px 25px;
}

/* client section end */


/* blog page start */
.blod_head ul {
    display: flex;
    flex-wrap: wrap;
}

.blod_head li {
    width: 31.33%;
    margin: 1%;

}

/* blog page end */

/* galler4y page start */
.box {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.box img {
    width: 100%;
    height: 250px;
    transform: scale3d(1, 1, 1);
    transition: all 0.25s linear;
}

.box:hover img {
    opacity: 0.50;
    transform: scale(1.25);
}

.box .inner-content {
    color: #fff;
    text-align: center;
    width: 70%;
    opacity: 0;
    z-index: 2;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 70%;
    left: 50%;
    transition: all 600ms ease;
}

.box:hover .inner-content {
    opacity: 1;
    top: 50%;
}

.box .icon {
    display: flex;
    justify-content: center;
}

.box .icon a {
    color: var(--primary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 40px;
    height: 35px;
    width: 50%;
    border-radius: 20px;
    outline: 5px solid rgba(255, 255, 255, 0.5);
    background-color: #fff;
    display: block;
    transition: all 0.3s;
}

.box .icon a:hover {
    color: #333;
    background: #fff;
    border-radius: 20px;
}

.gallery_section .box {
    border-radius: 0;
}

.gallery_section .inner-content {
    background-image: none;
}

/* gallery paage end */

/* Contact Us Page Design Start */
.contact_section button {
    outline: none;
    color: #fff;
    padding: 15px 40px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-table;
    background-color: var(--primary-color);
    border: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.5s all ease;
    border-radius: 1px 30px 1px;
}

.bottom_contact .contact-info-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.bottom_contact .justify-content-center {
    justify-content: center !important;
}

.bottom_contact .contact-info-single {
    text-align: center;
    background-color: var(--primary-color);
    padding: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.bottom_contact .contact-info-single i {
    margin-bottom: 15px;
    font-size: 40px;
    color: #fff;
}

.bottom_contact .contact-info-single p {
    color: #fff;
}

.contact-info-single .info-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    bottom: 0;
    background: url(../images/contact_bg.png);
    background-size: cover;
}

.bottom_contact .contact-info-single img {
    margin-bottom: 15px;
}

.contact-info-single a {
    display: block;
    color: #fff;
    line-height: 2.2;
}

.contact_section .about_box {
    margin: 0 55px;
}


.mini_address li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 20px #d0d2d8;
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 20px;
}

.mini_address li .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    /*background-color: var(--dark-color);*/
    border: 2px solid var(--dark-color);
    border-radius: 100%;
    color: var(--dark-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mini_address li .info {
    min-width: 80px;
    background-color: #fff;
    width: 100%;
    color: #333;
    flex: 1;
    border-radius: 10px;
    padding-left: 20px;
}

.mini_address li .info p {
    margin-bottom: 0;
}


.client_thum {
    box-shadow: 0 0 15px 0 #dbdbdb;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.client_slider .client_thum {
    box-shadow: none;
}

/* product detail */
/* .product_detail .tab-content {
    position: sticky;
    top: 100px;
} */
.product_detail .blog_sidebar {
    position: sticky;
    top: 100px;

}
.product_detail .card-body img{
    height: 450px;
    object-fit: cover;
}

.product_detail .pro_list ul {
    flex-direction: column;
    border: none;
}

.product_detail .pro_list ul li a {
    display: block;
    padding: 18px 20px;
    margin-bottom: 10px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 15px 0 #dbdfe4;
    color: var(--primary-color);
    font-weight: 700;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.product_detail .pro_list ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.product_detail .pro_list ul li a.active:before {
    display: none;
    content: "";
    position: absolute;
    left: -10px;
    top: 18px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--primary-color);
}

.product_detail .pro_list ul li a.active:after {
    display: none;
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
}

.product_detail .card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7f2;
}

.product_detail .card-header {
    position: relative;
    background: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}

.product_detail .card-body {
    padding: 15px;
}

.product_detail .card-link {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    display: block;
}

.product_detail .pro_txt {
    padding: 15px;
}

.product_detail .pro_txt h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.product_detail .sec-title h2 {
    margin-bottom: 30px;
}

.Dec_detail h6 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 20px;
}

.Dec_detail ul {
    padding-left: 20px;
}

.Dec_detail li {
    list-style: disc;
}

/* product detail end */


/* service section design start */
.news_event_section {
    position: relative;
    padding: 100px 0;
}

.news_event_section .card-title {
    color: #000;
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 128.571% */
}

.news_event_section .card {
    margin-bottom: 20px;
    border: 1px solid #D9D9D9;
    border-radius: 0;
}

.news_event_section .news_img .card-img-top {
    border-radius: 0;
    height: 300px;
    object-fit: cover;
}

.news_event_section .author {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    padding: 2px 0px 10px;
    border-bottom: 1px dashed #919191;
}

.news_event_section .author h6:not(:last-child) {
    border-right: 2px solid #000;
    padding-right: 10px;
    margin-right: 10px;
}

.news_event_section .news_img {
    position: relative;
    overflow: hidden;
}

.news_event_section .news_img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    background: linear-gradient(10deg, rgba(243, 227, 134, 0.787) 36.88%, rgba(0, 0, 0, 0.5) 99.31%);
    transform: scale(1.25);
    transition: all 0.25s linear;
}

.news_event_section .news_img:hover:after {
    opacity: 1;
}

.news_event_section .card-text {
    color: #919191;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    /* 168.75% */
}

.news_event_section .author i {
    font-size: 14px;
    margin-right: 7px;
    padding: 4px 0;
    color: #919191;
}

.news_event_section .author h6 {
    color: #919191;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    /* 192.857% */
}

.news_event_section .read-more-text a {
    color: #2E324B;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 0;
    line-height: 27px;
    /* 192.857% */
}

.news_event_section .text-center .read_blog_btn {
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: lowercase;
    border-radius: 8px;
    padding: 2px 25px;
}

.news_event_section .card-body {

    text-align: center;
    height: 305px;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.news_event_section .explore_btn {
    color: #fff !important;
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
    transition: var(--transition);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 5px 30px;
    background-color: var(--primary-color);
    border-radius: 1px 30px 1px;
}

.news_event_section .explore_btn i {
    margin-left: 5px;
    margin-right: -20px;
}

/* service section end */


/* service detail */
/* .service_detail .tab-content {
    position: sticky;
    top: 100px;
} */
.service_detail .blog_sidebar {
    position: sticky;
    top: 100px;
}
.service_detail .card-body img{
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.service_detail .pro_list ul {
    flex-direction: column;
    border: none;
}

.service_detail .pro_list ul li a {
    display: block;
    padding: 18px 20px;
    margin-bottom: 10px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 15px 0 #dbdfe4;
    color: var(--primary-color);
    font-weight: 700;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.service_detail .pro_list ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.service_detail .pro_list ul li a.active:before {
    display: none;
    content: "";
    position: absolute;
    left: -10px;
    top: 18px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--primary-color);
}

.service_detail .pro_list ul li a.active:after {
    display: none;
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
}

.service_detail .card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7f2;
}

.service_detail .card-header {
    position: relative;
    background: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}

.service_detail .card-body {
    padding: 15px;
}

.service_detail .card-link {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    display: block;
}

.service_detail .pro_txt {
    padding: 15px;
}

.service_detail .pro_txt h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service_detail .sec-title h2 {
    margin-bottom: 30px;
}

.Dec_detail h6 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 20px;
}

.Dec_detail ul {
    padding-left: 20px;
}

.Dec_detail li {
    list-style: disc;
}

/* service detail end */


/* career page design start */
.career_section .career-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 5px 15px 0 #d7dbe0;
}

.career_section .job_position {
    color: #666;
    margin: 10px 0;
}

.career_section .career-box .info_txt {
    text-align: center;
    margin: 0;
}

.career_section .career-box h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.career_section .career-box .my_btn {
    margin: 15px 0 10px;
    background-color: var(--primary-color);
    border-radius: 10px;
    color: #fff !important;
    padding: 0 8px;

}

.career_section {
    position: relative;
    background-color: #eeeeee;
}

.career_section .contact-form {
    position: relative;
    max-width: 970px;
    margin: 0 auto;
}

.career_section .contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.career_section .wpcf7-form-control-wrap {
    position: relative;
}

.career_section .contact-form input[type=text],
.career_section .contact-form input[type=email],
.career_section .contact-form input[type=password],
.career_section .contact-form select,
.career_section .contact-form input[type=file],
.career_section .contact-form .custom-file-label,
.career_section .contact-form textarea {
    display: block;
    width: 100%;
    line-height: 28px;
    height: 60px;
    font-size: 16px;
    padding: 10px 30px;
    background: #fff;
    color: #565872;
    border: 2px solid #fff;
    border-radius: 30px;
}

.career_section .custom-file {
    height: 60px;
}

.custom-file-input {
    cursor: pointer;
}

.career_section .custom-file-label {
    width: calc(100% - 30px) !important;
    left: 15px;
    line-height: 36px !important;
}

.custom-file-label::after {
    display: flex;
    align-items: center;
    height: 100%;
}

.career_section .contact-form textarea {
    height: 150px;
    resize: none;
    font-size: 16px;
    background: #fff;
}

.btn_box {
    outline: none;
    color: #fff;
    padding: 10px 40px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-table;
    background-color: var(--primary-color);
    border: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.5s all ease;
    border-radius: 1px 30px 1px;
}

/* career page design ned */
/* diector massage start */
.author_box {
    padding-left: 20px;
    border-left: 2px solid red;
}

.author_box h6 {
    color: #757F95;
    font-weight: bold;
}

/* director massage end */
/* project scetion dseiogn start */
.Project_section .tab_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.Project_section .tab_btn.nav-pills .nav-link.active,
.tab_btn.nav-pills .show>.nav-link {
    background-color: var(--primary-color);
    color: #fff;
}

.Project_section .nav-pills .nav-link {
    border-radius: .25rem;
}

.Project_section .nav-link {
    display: block;
    padding: .5rem 1rem;
}

.Project_section .tab-content>.active {
    display: block;
}

.Project_section .card {
    margin: 10px;
    padding: 12px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.Project_section .card h4 {
    font-weight: 400;
}

.Project_section .my_btn {
    padding: 5px 16px;
    display: inline-block;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-color);
    font-size: 16px;
    color: #fff !important;
    border-radius: 30px;
}

.Project_section .nav a:hover {
    color: var(--primary-color);
}

.Project_section .tab-content {
    margin-top: 70px;
}

/* project section design end */

/* footer section start */
.main-footer {
    position: relative;
}

.main-footer .widgets-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 70px;
}

.main-footer .widgets-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #002121;
    opacity: .95;
    content: "";
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .about-widget {
    position: relative;
}

.main-footer .logo {
    position: relative;
    margin-bottom: 20px;
}

.main-footer .about-widget .text {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .about-widget .text p {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-link a {
    color: #fff;
    margin-bottom: 5px;
}

.footer-link a:hover {
    color: var(--primary-color);
}

.footer-widget .logo img {
    max-height: 80px;
}

.social-icon-two {
    position: relative;
    display: block;
}

.social-icon-two .title {
    position: relative;
    font-size: 20px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
    margin-right: 15px;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-right: 22px;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    transition: all 300ms ease;
}

.main-footer .about-widget {
    position: relative;
}

.main-footer .footer-column .widget-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 30px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.main-footer .footer-column .widget-title:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 40px;
    background-color: var(--primary-color);
    content: '';
}

.user-links {
    position: relative;
}

.user-links li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 10px;
}

.user-links li:before {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 900;
    content: "";
    font-family: "Font Awesome 5 Free";
    content: "\f105";
}

.user-links li a {
    display: block;
    color: #ffffff;
    transition: all 300ms ease;
}

.main-footer .footer-widget {
    position: relative;
}

.recent-posts .post {
    position: relative;
    min-height: 90px;
    padding-left: 110px;
    margin-bottom: 30px;
}

.recent-posts .post .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 90px;
    width: 90px;
    overflow: hidden;
}

.recent-posts .post .thumb a {
    display: block;
}

.recent-posts .post .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.recent-posts .post h4 {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 700;
    top: -5px;
}

.recent-posts .post h4 a {
    color: #ffffff;
    transition: all 300ms ease;
}

.recent-posts .post .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #bbbbbb;
}

.main-footer .contact-list {
    position: relative;
}

.main-footer .contact-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.main-footer .contact-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    line-height: 1em;
    color: #ffffff;
}

.main-footer .contact-list li strong {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
}

.main-footer .contact-list li .text {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
}

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    font-family: 'Archivo', sans-serif;
}

.main-footer .footer-bottom .inner-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-footer .footer-bottom .footer-nav {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .footer-nav ul {
    position: relative;
    padding: 20px 0;
}

.main-footer .footer-bottom .footer-nav ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.main-footer .footer-bottom .footer-nav ul li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    transition: all 300ms ease;
}

.main-footer .footer-bottom .footer-nav ul li {
    position: relative;
    float: left;
    padding-left: 30px;
    margin-left: 30px;
}

.main-footer .footer-bottom .footer-nav ul li:before {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    content: '|';
}

.main-footer .footer-bottom .footer-nav ul li:first-child:before {
    content: none;
}

.main-footer .footer-bottom .copyright-text {
    position: relative;
    float: left;
    padding: 8px 0;
}

.main-footer .footer-bottom .copyright-text p {
    position: relative;
    line-height: 25px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.main-footer p span{
    color: #000;
    font-weight: 600;
}
.main-footer .footer-bottom .copyright-text a {
    color: #002121;
    font-weight: 700;
    transition: all 300ms ease;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.widget-content li {
    display: flex;
    margin-bottom: 5px;

}

.widget-content .icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 25px;
}

.widget-content .info a {
    color: #fff;
}

/* footer section end */

/* all media queries */


@media screen and (max-width: 1200px) {
    .navbar-area .navbar-brand {
        width: 250px;
    }
    .desktop-nav .navbar .navbar-nav .nav-item a{
        padding: 0 5px;
    }
}

@media screen and (max-width: 999px) {
    .navbar-brand img{
        margin-left: 0;
    }
    .desktop-nav .navbar .others-options ul li a{
        font-size: 14px;
        padding: 5px
    }
    .navbar-area .navbar-brand{
        width: 200px;
    }
}


@media screen and (max-width: 991px) {
    .desktop-nav .navbar {
        padding: 0 15px;
    }

    .desktop-nav .navbar .navbar-nav .nav-item a {
        padding: 10px;
        border-top: 1px solid #ddd;
    }

    .desktop-nav .navbar::before {
        clip-path: none;
    }

    .header-area .navbar-shape {
        max-width: 110px;
    }

    .navbar-area .navbar-brand {
        padding: 5px 0;
    }

    .default-btn {
        padding: 12px 8px;
        margin: 5px 0;

    }

    .top_header {
        padding-left: 90px;
    }

    .navbar-brand img {
        margin-left: 0;
    }

    .blod_head li {
        width: 47.33%;
    }

}

@media screen and (max-width: 767px) {

    .navbar-shape,
    .top-header-area {
        display: none;
    }

    .navbar-shape-2 {
        display: none;
    }
}


@media screen and (max-width: 575px) {
    .blod_head li {
        width: 100%;
    }
    .widget-content .info a{
        font-size: 14px;
    }
    .go-top{
        top: 88%;
        left: 85%;
    }
}


@media screen and (max-width: 468px) {
    .wt-small-separator {
        font-size: 22px;
        margin-top: 30px;
    }
    .news_event_section .card-body{
        height: 360px;
    }
    .product_section .card-body{
        height: 330px;
    }
    .product_section .pro_card{
        padding: 5px;
    }
}