@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Extralight.woff') format('woff'),
        url('../fonts/ClashDisplay-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Light.woff') format('woff'),
        url('../fonts/ClashDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Regular.woff') format('woff'),
        url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Medium.woff') format('woff'),
        url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
        url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Bold.woff') format('woff'),
        url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


:root {
    --primary: #E36212;
    --secondry: #1F1A17;
    --white: #ffffff;
    --black: #000000;
    --bg_light: #FFF7F2;
    --gray: #A5A6AA;
}

a {
    text-decoration: none;
    transition: 0.5s ease;
}

body {
    font-family: 'ClashDisplay';
    letter-spacing: 0.02em;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    overflow-x: hidden;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #636469;
    margin: 0 0 15px;
}

p.big {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgba(31, 26, 23, 0.7);
}

img {
    max-width: 100%;
}

h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin: 0 0 30px;
}

h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    margin: 0 0 20px;
}

h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    margin: 0 0 20px;
}

h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    margin: 0 0 15px;
}

h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 10px;
}

h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 10px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn_primary {
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    display: inline-flex;
    padding: 11px 25px;
    border: 0;
    align-items: center;
}

.btn_primary img {
    filter: brightness(22);
    margin-left: 10px;
}

.btn_primary:hover {
    background: var(--secondry);
    color: var(--white);
}

.btn_secondary {
    background: var(--secondry);
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    display: inline-flex;
    padding: 11px 25px;
    align-items: center;
    border: 0;
}

.btn_secondary img {
    filter: brightness(22);
    margin-left: 10px;
}

.btn_secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn_light {
    background: var(--bg_light);
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    display: inline-flex;
    padding: 11px 25px;
}

.btn_light img {
    margin-left: 10px;
}

.btn_light:hover {
    background: var(--primary);
    color: var(--bg_light);
}

.btn_light:hover img {
    filter: brightness(22);
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondry);
}

.title {
    margin: 0 0 20px;
}

.title.center {
    text-align: center;
    margin: 0 0 50px;
}

.title h6 {
    margin: 0 0 4px;
    font-weight: 500;
    color: var(--primary);
}

.title h2 {
    text-transform: uppercase;
    color: var(--secondry);
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
}

.title.white h2 {
    color: #fff;
}

.pt_100 {
    padding-top: 100px;
}

.pb_100 {
    padding-bottom: 100px;
}

.py_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg_light {
    background: var(--bg_light);
}

.bg_dark {
    background: var(--secondry);
}

.logo_part {
    padding: 24px 0;
    border-bottom: 1px solid #E9E9E8;
}

.logo_part ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo_part ul li {
    padding-left: 35px;
}

.logo_part ul li:first-child a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondry);
}

.logo_part ul li:first-child a:hover {
    color: var(--primary);
}

.logo_part ul li:first-child a img {
    margin-right: 2px;
}

.cart_menu_wrap ul {
    display: flex;
    align-items: center;
}

.cart_menu_wrap ul li {
    padding-left: 25px;
    position: relative;
}

.cart_menu_wrap ul li span {
    background: #E36212;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 11px;
    color: #FFF7F2;
    display: flex;
    line-height: 15px;
    position: absolute;
    right: -4px;
    bottom: -4px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu_wrapper .dropdown-menu {
    padding: 5px 0;
    top: 43px;
    left: 18px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.menu_wrapper .dropdown-menu .dropdown-item {
    padding: 6px 10px;
    font-size: 14px;
}

.menu_wrapper .navbar {
    padding: 20px 0;
}

ul.navbar-nav .nav-item .nav-link {
    padding: 0 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1F1A17;
}

ul.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

ul.navbar-nav .nav-item .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.banner_slide {
    position: relative;
}

.banner_slide .banner_img img {
    width: 100%;
}

.banner_slide .banner_img {
    position: relative;
}

.banner_slider .swiper-pagination {
    display: none;
}

.banner_slide .banner_img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(banner1.html);
}

.banner_slide .banner_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    text-align: center;
    width: 100%;
}

.banner_slide .banner_text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #FFF7F2;
}

.banner_slide .banner_text h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 78px;
    color: #FFF7F2;
    margin: 0 auto 45px;
    max-width: 620px;
}

.banner_slide .banner_text ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_slide .banner_text ul li {
    padding: 0 15px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
}

.banner_slider .swiper-button-next {
    right: 100px;
}

.banner_slider .swiper-button-prev {
    left: 100px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
}

.swiper-button-next:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 18px;
    background: url(../images/right-arrow.svg);
    transform: translate(-50%, -50%);
    background-size: 10px;
}

.swiper-button-prev:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 18px;
    background: url(../images/left-arrow.svg);
    transform: translate(-50%, -50%);
    background-size: 10px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    filter: invert(1);
}

.about_left {
    max-width: 640px;
    margin-left: auto;
    padding-right: 50px;
}

.services_box .services_img {
    width: 100%;
    height: 250px;
}

.services_box .services_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_box .services_text {
    position: relative;
    background: var(--bg_light);
    padding: 0 24px 30px;
    z-index: 9;
}

.services_box .services_text:before {
    content: "";
    position: absolute;
    left: 0;
    top: -181px;
    width: 100%;
    height: 183px;
    background: url(../images/shape-light.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
}

.services_box .services_text img {
    margin-top: -70px;
    filter: brightness(1);
}

.services_box:hover .services_text {
    background: var(--primary);
    color: #fff;
}

.services_box:hover .services_text:before {
    background: url(../images/shape-orange.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.services_box:hover .services_text img {
    filter: brightness(22);
}

.services_box:hover .services_text p {
    color: #fff;
}

.services_box .services_text p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 96px;
}

.product_category_img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.product_category_box {
    position: relative;
}

.product_category_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    transform: scale(1);
}

.product_category_box .product_title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
}

.product_category_box .product_title h5 {
    margin: 0;
    color: #FFFFFF;
}

.product_category_box:hover .product_category_img img {
    transform: scale(1.08);
}

.video_box {
    position: relative;
}

.thumbnail_img {
    width: 100%;
    height: 500px;
}

.thumbnail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_box .play_btn_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video_box .play_btn_wrap .play_btn {
    background: #fff;
    border: 0;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#video_modal .modal-header {
    padding: 0;
    border: 0;
}

#video_modal .modal-body iframe {
    margin-bottom: -7px;
}

#video_modal .modal-header .btn-close {
    padding: 0;
    margin: -26px 0 0 auto;
    opacity: 1;
    filter: invert(1);
}

#video_modal .modal-dialog {
    margin: 4.75rem auto;
}

.video_right p {
    color: #FFFFFF;
    opacity: 0.7;
}

.video_right ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.video_right ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFF7F2;
    width: 50%;
    padding-left: 35px;
    margin: 0 0 15px;
    position: relative;
}

.video_right ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 7px;
    width: 22px;
    height: 12px;
    background: url(../images/check.svg);
}

.fabrics_type_box {
    position: relative;
}

.fabrics_type_box .fabrics_img {
    height: 420px;
    width: 100%;
    overflow: hidden;
}

/* .fabrics_type_box.big .fabrics_img {
    height: 420px;
} */
.fabrics_type_wrap .row .col-md-6 {
    width: 33.333%;
}

.fabrics_type_wrap .row .col-md-6:nth-child(5n+1) .fabrics_img,
.fabrics_type_wrap .row .col-md-6:nth-child(5n+2) .fabrics_img {
    height: 300px;
}

.fabrics_type_wrap .row .col-md-6:nth-child(5n+1),
.fabrics_type_wrap .row .col-md-6:nth-child(5n+2) {
    width: 50%;
}

.fabrics_type_box .fabrics_img img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    transform: scale(1);
    object-fit: cover;
}

.fabrics_type_box:hover .fabrics_img img {
    transform: scale(1.08);
}

.fabrics_type_box .fabrics_text {
    padding: 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.fabrics_text h6 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;

}

.fabrics_text p {
    color: #fff;
}

.fabrics_text a.btn_arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fabrics_text a.btn_arrow:hover {
    background: #fff;
}

.fabrics_text a.btn_arrow img {
    filter: brightness(22);
}

.fabrics_text a.btn_arrow:hover img {
    filter: brightness(1);
}

.testimonial_box {
    padding: 24px;
}

.testimonial_box>p {
    margin: 0 0 24px;
}

.testimonial_box .user_wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial_box .user_name:after {
    content: "";
    position: absolute;
    right: -70px;
    top: 50%;
    width: 50px;
    height: 35px;
    background: url(../images/quate.svg);
    transform: translate(0, -50%);
}

.user_wrap .user_img img {
    width: 78px;
    height: 78px;
    object-fit: cover;
}

.user_name {
    padding-left: 20px;
    position: relative;
}

.user_name h6 {
    font-weight: 600;
    margin: 0;
}

.user_name p {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #1F1A17;
    opacity: 0.7;
}

.testimonial_slider_wrap .swiper-button-next,
.testimonial_slider_wrap .swiper-button-prev {
    background: var(--secondry);
}

.testimonial_slider_wrap .swiper-button-next:hover,
.testimonial_slider_wrap .swiper-button-prev:hover {
    background: var(--primary);
}

.testimonial_slider_wrap .swiper-button-next:hover:after,
.testimonial_slider_wrap .swiper-button-prev:hover:after {
    filter: inherit;
}

.testimonial_slider {
    padding-bottom: 95px;
}

.testimonial_slider_wrap .swiper-button-next {
    bottom: 0;
    top: inherit;
    left: 52%;
    transform: translate(-50%, 0);
}

.testimonial_slider_wrap .swiper-button-prev {
    bottom: 0;
    top: inherit;
    left: 48%;
    transform: translate(-50%, 0);
}

.contact_left {
    padding-right: 30px;
    max-width: 640px;
    margin-left: auto;
}

.contact_map iframe {
    margin-bottom: -7px;
}

.address_box {
    display: flex;
}

.address_box .icon {
    width: 40px;
}

.address_box .address_text {
    width: calc(100% - 40px);
    position: relative;
    border-right: 1px solid #E9E2DC;
    padding-right: 35px;
}


.address_box .address_text p {
    margin: 0;
    transition: 0.5s ease;
}

.address_box .address_text a:hover p {
    color: var(--primary);
}

.footer_menu {
    padding: 80px 0;
}

.footer_logo_wrap {
    padding-bottom: 60px;
}


.copyright p {
    margin: 0;
    color: #D2D3D5;
    text-align: center;
}

.newsletter_wrap h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
    margin: 0 0 30px;
}

.newletter_form .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    border-bottom: 1px solid #3B3B3C;
    color: #fff;
    padding: 10px 0;
    border-radius: 0;
}

.newletter_form .form-control:focus {
    border-bottom: 1px solid var(--primary);
}

.newletter_form .form-group {
    position: relative;
    margin: 0 0 25px;
}

.newletter_form .form-group .submit_btn {
    position: absolute;
    right: 0;
    top: 9px;
    background: transparent;
    border: 0;
    filter: brightness(22);
}

.newletter_form .form-group .submit_btn:hover {
    filter: brightness(1);
}

.newsletter_wrap {
    padding-right: 60px;
}

.copyright_text {
    padding: 24px 0;
    border-top: 1px solid #2A2B2C;
}

.footer_right h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #F9F9F9;
    margin: 0 0 60px;
}

.footer_link h5 {
    color: #E36212;
    margin: 0 0 24px;
}

.footer_link ul li a {
    color: #D2D3D5;
    margin: 0 0 12px;
    display: inline-block;
}

.footer_link ul li a:hover {
    color: var(--primary);
}

.footer_link ul li a img, .footer_link ul li a i {
    margin-right: 10px;
}


.form-group.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group.checkbox label {
    position: relative;
    cursor: pointer;
    color: #96999F;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.form-group.checkbox label a {
    color: #D2D3D5;
}

.form-group.checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #96999F;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-group.checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-group.checkbox input:checked+label:before {
    border-color: var(--primary);
}

.inner_banner {
    padding: 80px 0;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.inner_banner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #FFF7F2;
    margin: 0 0 15px;
}

.inner_banner h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 78px;
    color: #FFF7F2;
    margin: 0;
    text-transform: uppercase;
}

.vision_wrapper {
    background: url(../images/vision-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.vision_box {
    background: var(--bg_light);
    padding: 36px;
    transition: 0.5s ease;
}

.vision_box:hover {
    background: var(--primary);
}

.vision_box .icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    margin: 0 0 24px;
}

.vision_box:hover .icon {
    background: var(--bg_light);
}

.vision_box .icon img {
    filter: brightness(22);
}

.vision_box:hover .icon img {
    filter: brightness(1);
}

.vision_box h5 {
    color: #1F1A17;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.vision_box p {
    color: rgba(31, 26, 23, 0.7);
    opacity: 0.7;
    margin: 0;
}

.vision_box:hover h5,
.vision_box:hover p {
    color: #fff;
}


/* product page css */

.product_wrapper .filters {
    text-align: center;
    margin-top: 50px;
}

.product_wrapper .filters ul {
    padding: 0 0 5px;
    display: flex;
    align-items: center;
    overflow: auto;
}

.product_wrapper .filters ul li a {
    list-style: none;
    display: inline-block;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: rgba(31, 26, 23, 0.7);
    background: #fff;
    margin: 0 4px;
    white-space: nowrap;
}

.product_wrapper .filters ul li.active {
    background: var(--primary);
    color: #fff;
}

.product_wrapper .filters-content {
    margin-top: 50px;
}

.product_wrapper .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}

.product_wrapper .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}

.product_gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 60px;
}

.product_gallery .product_main {
    width: calc(100% - 320px);
    margin-right: 30px;
    height: 600px;
}

.product_gallery .product_thumb {
    width: 290px;
    height: 600px;
}


.product_thumb .swiper-slide {
    height: auto !important;
    cursor: pointer;
}

.product_gallery .product_main .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.product_gallery .product_thumb .swiper-slide img {
    width: 100%;
    height: 142px;
    object-fit: cover;
}

.product_thumb .swiper-button-prev {
    top: 20px;
    transform: rotate(90deg) translate(0, 50%);
    left: 50%;
}

.product_thumb .swiper-button-next {
    top: inherit;
    bottom: 0;
    transform: rotate(90deg) translate(0, 50%);
    left: 50%;
}

.product_thumb .swiper-button-prev,
.product_thumb .swiper-button-next {
    background: rgba(255, 255, 255, 0.4);
}

.product_thumb .swiper-button-prev:hover,
.product_thumb .swiper-button-next:hover {
    background: #fff;
}

.product_thumb .swiper-button-prev:after,
.product_thumb .swiper-button-next:after {
    filter: invert(1);
}

.product_description h5 {
    color: #E36212;
    margin: 0 0 15px;
}

.description_text {
    margin-bottom: 35px;
}

.description_text ul li {
    margin: 0 0 6px;
}

.video_inner .thumbnail_img {
    height: 400px;
}

.video_inner .play_btn_wrap .play_btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.video_inner .play_btn_wrap .play_btn:hover {
    background: #fff;
    color: var(--primary);
}

.video_inner .video_box {
    margin-bottom: 24px;
}

.contact_form .form-control {
    border: 1px solid rgba(31, 26, 23, 0.3);
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
    outline: 0;
    padding: 22px 20px;
}

.contact_form textarea.form-control {
    height: 150px;
}

.contact_form .form-group {
    position: relative;
    margin: 0 0 30px;
}

.contact_form .form-group label {
    display: inline-block;
    position: absolute;
    left: 30px;
    top: -12px;
    padding: 0 10px;
    background: #fff7f2;
}

.radio_button_wrap {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid rgba(31, 26, 23, 0.3);
    border-radius: 4px;
}

.radio_button_wrap label {
    width: 33.333%;
    color: rgba(31, 26, 23, 0.7);
}

.radio_button_wrap label span {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    display: block;
    padding: 20px;
    text-align: center;
}

.radio_button_wrap label input {
    position: absolute;
    top: -20px;
}

.radio_button_wrap input:checked+span {
    background-color: var(--primary);
    color: #F7F7F7;
}

.radio_button_wrap label:nth-child(2) {
    border-left: 1px solid rgba(31, 26, 23, 0.3);
    border-right: 1px solid rgba(31, 26, 23, 0.3);
}

.our_team_wrapper .title p {
    max-width: 1000px;
    margin: 0 auto;
}

.team_member_box {
    background: #FFFFFF;
    border: 1px solid rgba(227, 98, 18, 0.1);
}

.team_member_box .member_img {
    width: 100%;
    
    overflow: hidden;
}

.team_member_box .member_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s ease;
}

.team_member_box:hover .member_img img {
    transform: scale(1.08);
}

.team_member_box .member_detail {
    padding: 24px;
}

.team_member_box .member_detail h6 {
    color: #1F1A17;
    margin: 0 0 10px;
}

.team_member_box .member_detail h6 span {
    font-weight: 500;
    color: var(--primary);
    font-size: 18px;
}


.team_member_box .member_detail p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 8;
    overflow: hidden;
    height: 190px;
}

.team_member_box .member_detail ul.social {
    display: flex;
    align-items: center;
}

.team_member_box .member_detail ul.social li {
    margin-right: 15px;
}

.team_member_box .member_detail ul.social li a img {
    transition: 0.5s ease;
}

.team_member_box .member_detail ul.social li a:hover img {
    filter: grayscale(1);
}

.why_us_box {
    background: #FFFFFF;
    box-shadow: 0px 0px 48px rgba(227, 98, 18, 0.2);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: 0.5s ease;
}

.why_us_box:hover {
    box-shadow: 0px 0px 55px rgba(227, 98, 18, 0.4);
}

.why_us_box img {
    margin: 0 0 24px;
}

.why_us_box h6 {
    margin: 0 0 8px;
}

.why_us_box p {
    margin: 0;
}

.blog_box {
    background: #FFFFFF;
    border: 1px solid rgba(227, 98, 18, 0.1);
}

.blog_box .blog_img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.blog_box .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    transform: scale(1);
}

.blog_box:hover .blog_img img {
    transform: scale(1.08);
}

.blog_box .blog_content {
    padding: 24px;
    transition: 0.5s ease;
}

.blog_box .blog_content h6 {
    margin: 0;
    color: var(--secondry);
}

.blog_box .blog_content h5 {
    margin: 0 0 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.blog_box .blog_content .btn_light {
    background: #fff;
    padding: 11px 0;
}

.blog_box:hover .blog_content {
    background: var(--primary);
}

.blog_box:hover .blog_content .btn_light {
    background: #fff;
    color: var(--primary);
    padding: 11px 25px;
}

.blog_box:hover .blog_content h6 {
    color: #fff;
}

.blog_box:hover .blog_content h5 {
    color: var(--secondry);
}

.blog_box:hover .blog_content p {
    color: #FFF7F2;
}

.blog_box .blog_content .btn_light:hover img {
    filter: brightness(1);
}

.blog_detail_img {
    position: relative;
}

.blog_detail_img .date {
    position: absolute;
    left: 0;
    bottom: 45px;
    background: #fff;
    padding: 16px 36px;
}

.blog_detail_img .date p {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #1F1A17;
}

.blog_detail_img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.blog_detail_wrapper h2 {
    margin: 35px 0 15px;
    color: var(--primary);
}

.search_box_wrap {
    position: relative;
}

.search-icon {
    font-size: 18px;
    color: #000;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
    outline: 0;
}

.search-toggle .search-icon.icon-close {
    display: none;
}

.search-toggle.opened .search-icon.icon-search {
    display: none;
}

.search-toggle.opened .search-icon.icon-close {
    display: block;
}

.search-container {
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-height: 0;
    overflow: hidden;
    background-color: #eee;
}

.search-container.opened {
    max-height: 50px;
}

.search-container input[type="text"] {
    outline: none;
    font-size: 16px;
    margin: 0;
    width: 300px;
    background-color: inherit;
    border: 0;
    padding: 10px;
}

.search-container .search-icon {
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 12px;
}

.search-container {
    position: absolute;
    right: 0;
    z-index: 99;
    top: 44px;
}

.send_enquiry_form.contact_form .form-group label {
    background: #fff;
}

.contact_form.send_enquiry_form .form-control {
    padding: 14px 20px;
}
.whatsapp-app {
    bottom: 3%;
}
.google-app, .ios-app, .whatsapp-app {
    position: fixed;
    z-index: 2147483646;
    right: 38px;
}
.top-main-block {
	    width: 100%;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #e9e9e8;
    padding: 4px 0;
}
.top-main-block a {
	    color: #333;
}
.top-main-block a span {
	color: #e36212;
    font-weight: 500;
}