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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
}


/***** Font Files *****/

@font-face {
    font-family: 'capture-font-side';
    src: url(../font/Capture_it.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'Proxima-font-side';
    src: url(../font/Proxima-Regular.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 11px 30px;
    border: unset;
    border-radius: 4px;
    color: #ffffff;
    z-index: 1;
    background: #ff6c46;
    position: relative;
    font-size: 16px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-family: 'Proxima-font-side';
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 4px;
    background-color: #113045;
    z-index: -1;
    transition: all 250ms;
    border: 1px solid #fff;
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'capture-font-side';
    font-size: 82px;
    line-height: 80px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 12px;
}

h2 {
    font-family: 'capture-font-side';
    font-size: 72px;
    line-height: 1.2;
    color: #000000;
    font-weight: 400;
    margin: 0 0 6px;
}

h3 {
    font-family: 'capture-font-side';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 28px;
}

h4 {
    font-family: 'capture-font-side';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 400;
    margin: 0 0 8px;
    text-transform: uppercase;
}

h5 {
    font-family: 'capture-font-side';
    font-size: 30px;
    line-height: 1.2;
    color: #ff6c46;
    font-weight: 500;
    margin: 0 0 0px;
}

h6 {
    font-family: 'Proxima-font-side';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 0px 23px 10px 23px;
    font-size: 18px;
    font-family: 'Proxima-font-side';
    text-transform: uppercase;
}
.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #f36c49;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */
header {
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 10px;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.header-icon-cert i {
    color: #fff;
    font-size: 20px;
}
.banner-img img {
    width: 100%;
    height: 100vh;
}
.dis-block{
    display: block;
}
.banner_img {
    position: absolute;
    top: 110px;
    right: 0;
    width: 63%;
    z-index: 0;
}

.banner_img img {
    height: 95vh;
    width: 100%;
}
.banner-img-sd {
    position: absolute;
    top: 30%;
    left: 0;
    width: 42%;
    z-index: 1;
}

.banner-slider-box {margin-top: 170px;}

.banner-img-sd img {
    height: 378px;
    width: 100%;
    border-radius: 0px 10px 10px 0px;
}

.banner-slider-sd {
    position: relative;
    z-index: 1;
}

.banner-slider-box p {
    color: #000;
    z-index: 1;
}
/* .banner-slider-sd .slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #ffffff00;
    border-radius: 40px;
} */
/* .banner-slider-sd .slick-active {
    opacity: 1;
    background: #f36c49 !important;
    height: 12px !important;
    
} */
/* .banner-slider-sd .slick-dots li button:before {
    content: '';
} */
.banner-slider-sd .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 8px;
    border-radius: 20px;
    background: #fff;
    content: '';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.banner-slider-sd .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #f36c49;

}
.banner-slider-sd .slick-dots li {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: unset;
}
.banner-slider-sd .slick-dots {
    position: absolute;
    bottom: -55px;
    display: block;
    width: 76%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: end;
}
section.about-sec {
    margin: 140px 0px 100px;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    margin-bottom: 30px;
    border-bottom: 5px solid #f36c49;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
}

.about-text-box {
    background: #ffffff;
    padding: 26px;
    margin-top: 160px;
    border-radius: 10px 10px 0px 0px;
    text-align: start;
}

.about-text {
    text-align: center;
}
.about-social-icon {
    background: #0f3f65;
    padding: 20px;
    position: absolute;
    width: 50%;
    left: 500px;
    bottom: 0;
    z-index: -1;
    height: 70%;
    display: flex;
    align-items: end;
    border-radius: 20px;
}

.about-social-icon ul {
    display: flex;
    margin-bottom: 0px;
    gap: 10px;
}

.about-social-icon ul li a i {
    color: #fff;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text-box p {
    text-align: justify;
}
section.our-sculptor-sec {
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 70px;
}



.our-sculptor-top-heading {
    text-align: center;
    margin-bottom: 30px;
}

section.our-sculptor-sec:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/our-sculptor-bg-img.png);
    z-index: -1;
}
.our-sculptor-box-text {
    text-align: center;
}

.our-sculptor-box-img img {
    margin-bottom: 16px;
}

.our-sculptor-box-text h4 {
    color: #fff;
}

.our-sculptor-center-btm-text {
    text-align: center;
    padding-top: 50px;
    border-top: 2px solid #fff;
    margin-top: 40px;
}

.our-sculptor-center-btm-text h2 {
    color: #fff;
    margin-bottom: 20px;
}
.our-portfolio-top-heading {
    text-align: center;
    margin-bottom: 20px;
}

.our-portfolio-slider {
    margin-bottom: 30px;
}

section.our-portfolio-sec {
    margin-bottom: 100px;
}
.our-portfolio-slider .slick-prev:before {
    content: '';
    position: absolute;
    background-image: url(../images/our-portfolio-slider-left-icon.png);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}
.our-portfolio-slider .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(../images/our-portfolio-slider-right-icon.png);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}
.our-portfolio-slider-box img {
    width: 100%;
}
.our-portfolio-slider .slick-next {
    right: 25px;
}
.our-portfolio-slider .slick-prev {
    left: -12px;
    z-index: 1;
}

.our-portfolio-slider .slick-active {
    opacity: 1;
}
/*Our Testimonial Start*/

.alex-farnandes ul li img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 3px solid #134c7a;
    border-radius: 20px;
    margin-top: -50px;
}
.alex-farnandes h2 {
    font-size: 15px;
    color: #ffc107;
    margin-top: 10px;
    margin-bottom: 0;
}
.alex-farnandes ul li h3 {
    font-size: 26px;
    margin-bottom: 0px;
}
.alex-farnandes ul li span {
    font-size: 24px;
    color: #ff6c46;
    font-family: 'capture-font-side';
}
.alex-farnandes ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.our-testimonial-sec .slick-slide {
    margin: 60px 20px 0;
}
.our-testimonial-sec .slick-active {
    opacity: 1.5;
}
.our-test-items-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.alex-farnandes-icon i {
    font-size: 50px;
    color: #7f7f7f;
}
.our-testimonial-items p {
    margin-bottom: 0;
    line-height: 30px;
    font-weight: 500;
}
.our-testimonial-items {
    border: 1px solid #d6d3d3;
    padding: 0px 30px 35px;
    border-radius: 20px;
    position: relative;
}
.our-testimonial-items:after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 10px;
    height: 0px;
    width: 180px;
    border-bottom: 3px solid #ff6c46;
   
}
.our-testimonial-silder .slick-dots {
   
    bottom: -65px;
    
}

.our-testimonial-silder .slick-dots li button:before {
    width: 50px;
    height: 8px;
    content: '';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #696969;
    opacity: 1;
    border-radius: 50px;
}
.our-testimonial-silder .slick-dots li.slick-active button:before {
    opacity: 2 !important;
    color: black;
    background: #ff6c46;
}
 .our-testimonial-silder .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 20px;
    padding: 0;
    cursor: pointer;
}
/*Our Testimonial End*/

.our-testimonial-sec {
    margin-bottom: 100px;
}


/*Footer Start*/

.footer-sec {
    /* background-image: url(../images/footer-back.jpg); */
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    padding-top: 80px;
    background: #123855;
}
.copy-right-row p {
    margin-bottom: 0;
    color: #fff;
}
.footer-social-icons li a {
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.ftr-logo-box a img {
    width: 90%;
    margin-bottom: 20px;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7489%) hue-rotate(119deg) brightness(108%) contrast(100%); */
}
.footer-sec h3 {
    font-size: 22px;
    color: #ffff;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Proxima-font-side';
}
.footer-sec h3:before {
    content: "";
    position: absolute;
    background: #f36c49;
    width: 70px;
    height: 5px;
    bottom: -15px;
}
.contact-info-box ul {
    line-height: 45px;
    margin-bottom: 0;
    margin-top: 35px;
}
.newletter-box input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    padding: 0 15px;
    border: none;
    margin-bottom: 20px;
}


.newletter-box button {
    width: 65%;
    height: 60px;
    border-radius: 5px;
    border: none;
    background: #a7a376;
    color: #fff;
}
.copy-right-row {
    text-align: center;
    background: #f36c49;
    padding: 20px 0;
    margin-top: 30px;
}


.contact-info-box ul li a {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}
.contact-info-box ul li a i {
    font-size: 18px;
}
.quick-links-box ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 55px;
}
.quick-links-box ul {
    line-height: 45px;
}
.ftr-logo-box p {
    font-size: 14px;
    color: #fff;
    width: 90%;
}
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    margin-top: 40px;
}


/*Footer End*/

.banner-text-sd {
    position: relative;
    z-index: 1;
}
.banner_img.inner-banner-img img {
    height: 470px;
}
.banner-img-sd.banner-img-sd-inner {
    top: 30%;
}

.banner-img-sd.banner-img-sd-inner img {
    height: 270px;
}
.banner-img.inner-banner-img img {
    height: 90vh;
}
section.our-sculptor-sec.our-sculptor-inner-sec {
    padding: 70px 0px 60px;
}

section.our-sculptor-sec.our-sculptor-inner-sec:before {
    height: 100%;
}
.our-sculptor-center-btm-text.our-sculptor-center-inner {
    padding-top: 0;
    margin-top: 0;
    border-top: unset;
}
.portfolio-inner-imgtwo img {
    width: 100%;
}

.portfolio-inner-imgtwo {
    margin-bottom: 20px;
}
.portfolio-top-heading {
    text-align: center;
    margin-bottom: 20px;
}

section.portfolio-sec-sd {
    margin: 100px 0px;
}



/*Inner Contact Us End*/

.services-detail-button a {
    padding: 15px 30px !important;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    background: #6fcbf4;
}

.services-detail-button {
    text-align: center;
    margin-top: 50px;
}



.fa-color {
    color: #e51921;
    font-size: 80px;
}

.contact_page_sidbar h4 {
    color: #000;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0px;
    font-size: 18px;
}

.contact_page_sidbar i {
    font-size: 30px;
    margin: 0 20px 0 0;
    width: 35px;
}

.contact_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e51921;
    color: #ffffff;
    border-radius: 0;
    margin: 0 10px 0 0;
    font-size: 22px;
}

.contact_social a:hover {
    background-color: #e51921;
    color: #fff;
}

.contact_map iframe {
    width: 100%;
    height: 600px;
}

.contact-left img {
    width: 100%;
}

ul.contact_page_sidbar li i {
    color: #000;
}   

ul.contact_page_sidbar a {
    font-weight: 500;
    font-size: 15px;
    color: #8b8a8a;
    text-decoration: none;
}

.icons ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-text ul {
    margin-bottom: 40px;
}

ul.contact_page_sidbar h6 {
    line-height: 22px;
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-form {
    border-radius: 15px;
    padding: 50px 35px;
    border: 2px solid #eeeeee;
}
.contact-form-title h2 {
    margin-bottom: 25px;
}

.contact-form-title h4 {
    color: #000;
    font-size: 36px;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid #e3e3e3;
    border-radius: 5px;
}

.contact-form input::placeholder {
    color: #000;
     font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 18px 80px;
    border-radius: 5px;
    resize: none;
    border: 2px solid #e3e3e3;
}

.contact-submit button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 17px;
    background: none;
}

.contact-form input::placeholder {
    font-size: 14px;
    line-height: 14px;
    color: #9d9a9a;
    border-radius: 5px;
    margin-bottom: 0px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.contact-form textarea::placeholder {
    font-size: 14px;
    line-height: 14px;
    border-radius: 5px;
    color: #9d9a9a;
    margin-bottom: 0px;
}

section.contact_page_main.pt-8.pb-8 {
    padding: 100px 0;
    background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
    margin: 0 !important;
    margin-top: 40px !important;
}

.contact_page_sidbar p {
    margin-bottom: 0;
}

.cont-1 h3 {
    color: #333;
    font-size: 52px;
}



.cont-1 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

i.fas.fa-phone-alt.fa-color.fa-2x {
    transform: rotate(5deg);
}

.icons ul li a i {
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 5px;
}



.con-form {
    padding: 20px 50px;
}

section.contact-us {
    padding: 100px;
}

.btn-contact a {
    background: #194376;
    padding: 10px 80px;
    border: none;
    border-radius: 5px;
    color: #fff;
}


.map-col {
    padding: 0;
}

section.contact-us .row {
    align-items: baseline;
}

.btn-contact button {
    padding: 10px 50px;
    background: #f36c49;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    color: #ffff;
}
.main-bar-text-silder-items.inner h1 {
    font-size: 60px;
}
.contact-form-title h3 {
    margin-bottom: 15px;
}
section.contact-us.inner h3 {
    font-size: 44px;
    color: #000;
}

/*Inner Contact Us End*/

/* InnerPage Shop/art start */
.showinglist p {
    color: #666666;
    font-family: poppins;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

.catogeriesbox {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 0;
    background: #f36c49;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
}

.frequently-list ul {
    margin-bottom: 50px;
}

.frequently-list ul li a {
    color: #575757;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 15px 0 15px 18px;
    border: 1px solid #00000024;
    background: unset;
    font-family: 'Poppins', sans-serif;
    text-transfaorm: capitalize;
    margin: 0;
    background: transparent;
}

.frequently-list ul li label {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    display: block;
    margin: 9px 0 9px 40px;
    background: unset;
    font-family: roboto;
    background: transparent;
    display: flex;
    align-items: center;
    font-family: 'Proxima-font-side';
}

section.product-page-sec.all-section {
    padding: 100px 0px 0px;
}

.catogeriesbox.mt-4 h4 {
    color: #ffff;
}

.catogeriesbox h4 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Poppins';
}

.frequently-list.frequently-list1 ul li a {
    color: #000;
    font-weight: 600;
}

.showinglist {
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: end;
}



/* Dropdown container */
.dropdown {
    position: relative;

    width: 100%;
}

/* Dropdown button styling */
.dropdown-button {
    background-color: transparent;
    color: #000;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-family: poppins;
    text-transform: uppercase;
    border: 1px solid #00000024;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: block;
    position: unset;
    /* background-color: #f9f9f9; */
    min-width: 100%;
    /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); */
    z-index: 1;
}

/* Dropdown content ul styling */
.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content ul li {
    padding: 0;
}

.dropdown_button {
    position: relative;
}

.dropdown-content ul li a {
    text-decoration: none;
    color: black;
    display: block;
    background: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Proxima-font-side';
    font-weight: 400;
    transition: 0.3s ease-in-out;
}

/* Change background color on hover */
.dropdown-content ul li a:hover {
    background-color: #ddd;
    transform: scale(0.98);
    transition: 0.3s ease-in-out;
}

.dropdown_btn {
    position: relative;
}

.dropdown_btn i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-10px, -50%);
    font-size: 20px;
}



.frequently-list1 ul li input {

    padding: 0;

    height: initial;

    width: initial;

    margin-bottom: 0;

    display: none;

    cursor: pointer;

}



.frequently-list1 ul li label {

position: relative;

font-weight: 400;
}





.frequently-list1 ul li label:before {

    content: '';

    -webkit-appearance: none;

    background-color: transparent;

    border: 1px solid #c4c4c4;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);

    padding: 10px;

    display: inline-block;

    position: relative;

    vertical-align: middle;

    cursor: pointer;

    margin-right: 10px;

}



.frequently-list1 ul li input:checked+label:after {

    content: '';

    display: block;

    position: absolute;

    top: 4px;

    left: 9px;

    width: 6px;

    height: 14px;

    border: solid #000;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}



.frequently-list1 ul li:not(:last-child) {

    margin-bottom: 15px;

    font-family: 'Nova Square';

}

.frequently-list1 {
    border: 1px solid #00000024;
}

.frequently-list1 ul {
    margin: 0;
    padding: 10px 0;
}

.al-cent select {
    background-color: transparent;
    color: #000;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-family: poppins;
    text-transform: uppercase;
    border: 1px solid #00000024;
    font-weight: 600;
}


.al-cent .row {
    align-items: center;
}

.show p {
    text-align: end;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
}

.shop_sec .art_box_text h6 {
    font-size: 13px;
}

.shop_sec .art_box_text h5 {
    font-size: 17px;
}


.shop_sec .art_box_image img {
    height: 290px;
}


.shop_sec .box2:before {
    width: 18px;
    height: 111.9%;
    right: 0;
    transform: translatex(100%) skewy(-9deg);
    top: -13.5%;
    background: #0029e5;
    content: '';
    position: absolute;
}

.shop_nav ul.pagination {
    gap: 10px;
}


.shop_nav .page-link:focus {
    z-index: 3;
    color: #fff;
    background-color: #0029e5;
    outline: 0;
    box-shadow: unset;
}

.shop_nav .page-link:hover {
    z-index: 3;
    color: #fff;
    background-color: #13364f;
    outline: 0;
    box-shadow: unset;
}

section.shop_sec {
    margin: 100px 0px;
}

.shop_nav .page-link {
    padding: 6px 15px;
    background-color: transparent;
    color: #000;
    font-family: 'Proxima-font-side';
    font-size: 16px;
    font-weight: 500;
}
.al-cent h4 {
    color: #000;
}
.al-cent .our-sculptor-box {
    margin-bottom: 30px;
}

/* InnerPage Shop/art end */


/* InnerPage Cart start */


.add-to-cart {

  position: relative;

  padding: 120px 0px;

}



.add-to-cart thead {

background-color: #f36c49;

color: #fff;

border-radius: 0px;
}



.add-to-cart .table>thead>tr>th {

  border-bottom: 0;

  padding-left: 20px;

  padding-bottom: 25px;

  padding-top: 25px;

  text-align: left;

}



.table-space {

  display: flex;

  align-items: center;

}



.add-to-cart thead tr th {

  font-size: 20px;

  color: #fff;

  font-weight: 400;

  line-height: 20px;

  text-transform: uppercase;

  font-family: poppins;
}



.add-to-cart thead tr th:first-child {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}



.add-to-cart thead tr th:last-child {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}



.table-space h3 {

text-transform: uppercase;

font-size: 17px;

color: #666666;

margin-bottom: 5px;

font-family: 'Proxima-font-side';

font-weight: 400;

line-height: 30px;
}



.table-space span {

  font-size: 16px;

  text-transform: uppercase;

  font-weight: 500;

  color: #000;

  font-family: 'Cerebrisans Regular';

}



.product-img {

  display: inline-block;

  width: 100%;

  height: auto;

  border-radius: 10px;

  margin-right: 20px;

}



.no-space {

  display: block;

  margin-left: 15px;

}



.product-img img {

  width: 90%;

  border-radius: 9px;

  border: 2px solid #cbcbcb;

  margin: 10px 0;

  height: 141px;

  object-position: top;

}



.add-to-cart input {

  width: 100%;

  text-align: center;

  height: 59px;

  border-radius: 6px;

  border: 1px solid #eeeeee;

  font-size: 23px;

  color: #a2a1a1;

  font-weight: 500;

  margin-top: 24px;

  background-color: #f7f7f7;
}



.add-to-cart a {

font-size: 18px;

display: block;

text-align: center;

padding-top: 9px;

color: rgba(0, 0, 0, 0.50);

font-weight: 400;

text-decoration: none;

color: #a2a1a1;

font-family: 'Proxima-font-side';
}



.add-to-cart h4 {

  font-size: 18px;

  font-weight: 700;

  color: #666666;

  text-align: center;

  margin-top: 40px;

  /* font-family: 'Roboto'; */

  /* font-family: 'Montserrat'; */

  font-family: "Bai Jamjuree", sans-serif;

}



.table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}



tr.space {

  border-bottom: 1px solid #ccc;

}



a.remove {

background: #000000;

color: #fff;

font-size: 28px;

padding: 0px 15px;

border: 1px solid #000000;

margin-top: 25px;

height: 46px;

display: flex;

align-items: center;

justify-content: center;

border-radius: 6px;
}



.proceed a {

color: #000000;

text-align: left;

font-size: 20px;

font-family: 'Proxima-font-side';

font-weight: 400;

text-transform: capitalize;

display: block;

margin: 0 0 20px 0;
}



.proceed i {

  margin-left: 10px;

}



.proceed .checkout-btn {

background-color: #13364f;

border: none;

padding: 16px;

border-radius: 0;

width: 100%;

font-family: 'Montserrat';

font-size: 18px;

font-weight: 300;

margin-top: 4px;

border-radius: 10px;

text-align: center;

text-transform: uppercase;

color: #fff;

font-family: 'Proxima-font-side';
}



.or-amazon {

  margin-top: 50px;

  position: relative;

  border: 1px solid #000;

  /* top: 25px; */

  padding: 30px 50px;

  border-radius: 5px;
}



.or-amazon p {

width: fit-content;

font-size: 18px;

font-family: 'Proxima-font-side';

position: absolute;

background: #fff;

top: -18px;

left: 50%;

padding: 2px 7px;

color: #000;

display: block;

text-transform: uppercase;

transform: translateX(-50%);

border: 1px solid #000;

border: transparent;
}



.or-amazon img {

  width: 80%;

}



.or-amazon a {

  text-decoration: none;

  text-align: center;

}



.total-section {

  border: 1px solid #e2dfdf;

  padding: 27px 40px;

  /* background-color: #f7f7f7; */
}



.total-section li {

font-size: 20px;

padding-bottom: 20px;

font-family: 'Proxima-font-side';

color: #757272;

font-weight: 400;

text-transform: uppercase;
}



li.color-change {

  /* color: #ffac1c; */

  /* text-transform: uppercase; */

  /* font-size: 32px; */

  /* font-family: 'Roboto'; */

  /* font-weight: 500; */

  /* margin: 0; */

  /* font-family: 'AGENCYB'; */
}



.total-section li span {

  float: right;

  font-weight: 400;
}



.ship-estimate {

  padding: 10px 40px;

  margin-top: 10px;

  border: 1px solid #e2dfdf;

  /* background-color: #f7f7f7; */
}



.ship-estimate ul {

  margin-top: 20px;

  margin-bottom: 50px;

}



.ship-estimate li {

/* font-size: 23px; */

color: #757272;

/* margin-bottom: 5px; */

/* font-family: 'resgak-light'; */

/* font-weight: 600; */

/* color: #ffac1c; */

text-transform: uppercase;

font-size: 20px;

font-family: 'Proxima-font-side';

/* font-weight: 500; */

/* margin: 0 0 10px 0; */

/* font-family: 'AGENCYB'; */
}



.ship-estimate .grey-style {

color: #757272;

font-size: 20px;

font-family: 'Proxima-font-side';

font-weight: 400;

text-transform: uppercase;
}

div#printOptions .d-flex {
  justify-content: space-between;
}
.art_box_image a img {
    height: 160px;
    width: 100%;
    object-fit: contain;
}

/* InnerPage Cart end */


/*----------checkout-page----*/


.guest p {
    font-size: 15px;
    font-family: 'Proxima-font-side';
    color: black;
    font-weight: 500;
    text-align: start;
}

.rdio-btn ul {
    display: flex;
    margin-bottom: 20px;
}



.rdio-btn ul li:first-child {
    margin-right: 65px;
}

.checkout-main label {
    color: #7e7e7e;
    font-weight: 500;
    font-size: 14px;
    padding-left: 30px;
    font-family: 'Poppins';
}


.form-p p {
    font-size: 16px;
    font-family: 'Proxima-font-side';
    color: #000000;
    margin-top: 10px;
    margin-bottom: 13px;
    font-weight: 500;
    text-align: start;
}

.form-p1 p {
    font-family: 'Poppins';
    margin-top: 10px;
    margin-bottom: 13px;
    color: #7e7e7e;
    font-weight: 500;
    font-size: 14px;
    text-align: start;
}

.checkout-main input[type="text"],
input[type="password"] {
    border-radius: 0;
    width: 75%;
    margin-bottom: 20px;
    background-color: transparent;
    border-color: #C0C0C0;
    position: relative;
    padding: 12px 10px;
}

.passwor-div {
    position: relative;
}

.passwor-div button {
    position: absolute;
    right: 68px;
    top: 1px;
    background-color: var(--bluel);
    border: 0;
    padding: 12px 34px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Proxima-font-side';
    background: #f36c49;
    border-radius: 0px 3px 3px 0px;
}

.form-p1 a {
    background-color: var(--bluel);
    border-radius: 7px;
    padding: 10px 59px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
    background: #13364f;
    font-family: 'Poppins';
}

.checkout-main #collapseOne {
    padding: 45px 20px 30px;
}



.rdio-btn ul li .form-check label {
    padding: 0;
}



.rdio-btn ul li .form-check {
    margin-right: 30px;
}


.chk-bx .form-check label {
    padding-left: 10px;
}

.passwor-div input {
    width: 87%;
}



.guest {
    margin-bottom: 30px;
}

.chk-bx .form-check .form-check-input {
    border-radius: 0;
    border-width: 1px;
    border-color: #f36c49;
    margin-top: 8px;
    background: transparent;
}

.rdio-btn input[type="radio"] {
    border-color: #195485;
    width: 20px;
    height: 20px;
    border-width: 1px;
    margin-right: 10px;
}

.chk-bx {
    margin-bottom: 20px;

}

.birth-form input[type="text"] {
    width: 88%;
}

.form-pp p {
    font-family: 'Poppins';
    font-size: 13px;
    color: #7e7e7e;
    margin: -21px;
    text-align: start;
}

.add-txttf input[type="text"] {
    width: 100% !important;
}

.add-txttf label {
    padding-left: 0;
    display: block;
}

.add-txttf select {
    margin-bottom: 20px;
    background-color: #F7F7F7 !important;
    border-color: #C0C0C0;
    position: relative;
    width: 100%;
    height: 38px;
    padding-left: 10px;
    border-radius: 0;
    padding-right: 10px;
}

#flush-collapseTwo {
    padding: 30px 20px;
}

.add-txttf .form-check-input {
    border-radius: 0;
    border-width: 2px;
    border-color: #939598;
    margin-bottom: 30px;
}

#flush-collapseThree {
    padding: 30px 20px;
}

div#flush-collapseThree1 {
    padding: 30px 20px;
}

.row.payment-img {
    align-items: end;
}

.checkout-main .accordion-button {
    padding: 22px 20px;
    font-size: 19px;
    text-transform: uppercase;
    color: #000;
    /* background-color: #E1E1E1; */
    border: 1px solid #C0C0C0;
    border-radius: 0;
    margin-bottom: 20px;
    font-family: 'Proxima-font-side';
    border-radius: 6px;
}

.checkout-main .accordion-button::after {
    display: none;
}

.checkout-main {
    padding: 80px 0;
}

/*  .checkout-main .accordion-button:not(.collapsed){
    background-color: var(--blued);
    border: 1px solid #01773b;
  }*/

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-collapse.collapse.show {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.checkout-main .accordion-item {
    border: 1px solid #fff;
    margin-bottom: 0;
    background: transparent;
}

.checkout-main .accordion-button:not(.collapsed) {
    margin-bottom: 0px;
    transition: 0.3s ease-in-out;
    padding: 15px 11px;
    color: #fff;
    background: #f36c49;
    border: none;
    font-family: 'Poppins';
    font-size: 20px;
}

.payment-div img {
    height: 40px;
    object-fit: scale-down;
}

.checkout-side-div-1 {
    border: 1px solid #C0C0C0;
    padding: 30px 0px;
    margin-bottom: 30px;
}

.item-div h5 {
    color: #999595;
    font-weight: 500;
    font-size: 15px;
    padding-left: 30px;
    margin-bottom: 18px;
    font-family: 'Proxima-font-side';
    line-height: 23px;
    text-transform: capitalize;
}

.checkout-side-div-1 hr {
    width: 100%;
    margin: auto;
    border-color: #C0C0C0;
}

.checkout-side-div-1 .row:last-child {
    padding-top: 20px;
}

.checkout-side-div-1 .row:first-child {
    padding-bottom: 20px;
}

.item-div {
    padding-left: 20px;
}



.checout-security {
    border: 1px solid #C0C0C0;
    padding: 30px 35px;
    margin-bottom: 17px;
    border-radius: 10px;
}

.checout-security ul li i {
    font-size: 28px;
    margin-right: 30px;
    width: 20px;
    color: #000;
}

.checout-security ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}


.checout-security ul li span {
    color: #999595;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto';
}

.field-sett {
    display: grid;
    width: 100%;
    grid-template-columns: 86% auto;
    align-items: center;
}

.checout-security ul li:last-child {
    margin-bottom: 0;
}


.form-check-input:checked {
    background-color: #195485;
    border-color: #195485;
}

.table-space .art_box_image img {
    height: 100px;
}

.table-space .art_box_image a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 0;
    /* background: #e1ded7; */
}


.checkout-main .accordion-button {
    background: transparent;
}

.exhib_sec1::before {
    display: none;
}

/* InnerPage Aboutus end */





/* Product Detail Page Start */

section.product-detail-page {
    position: relative;
    padding: 80px 0 0;
}

.product-detail-head ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0 50px;
}

.product-detail-head ul i {
    color: #ffc107;
}

.product-detail-head ul span {
    color: #ff6c46 !important;
    padding-left: 15px;
    font-size: 15px;
}

ul.cost-detail h5 {
    font-size: 30px;
    color: #ff6c46;
    font-family: 'Proxima-font-side';
}

ul.cost-detail span {
    font-size: 24px;
    color: #868686;
    text-decoration: line-through;
    padding-left: 30px;
}

.product-details-title p {
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px 0;
}

.product-detail-head h2 {
    font-size: 60px;
    font-weight: 500;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0 0;
    border-bottom: 1px solid #cccbcb;
    padding-bottom: 35px;
    gap: 20px;
}



.btn-1.buy-btn {
    background: #13364f;
    color: #fff;
}

.product-btn a {
    width: 280px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border-radius: 10px;
}

section.product-detail-page .row {
    align-items: center;
}

.productdtl-mn-fr.slick-initialized.slick-slider img {
    height: 500px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-details-title ul li {
    list-style: initial;
    color: #ffffff70;
}

ul.cost-detail li {
    list-style: none;
}

.product-cate p {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 35px;
    color: #000;
}

.product-cate {
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    width: 150px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 60px;
    margin-right: 20px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff;
    background-color: #edc36c;
    border-color: 0;
}

.input-number {
    width: 80px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    background-color: #fff0;
    color: #000;
    border: 0;
}

.input-number,
.input-number-decrement,
.input-number-increment {
    /* border: 1px solid #fff; */
    height: 40px;
    user-select: none;
}

.input-number-decrement,
.input-number-increment {
    width: 30px;
    line-height: 38px;
    background: transparent;
    color: #a2a1a1;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #000; */
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #ddd;
}

.input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.quan {
    margin-top: 20px;
    display: inline-block;
    background: #fff;
    border: 1px solid #7878783b;
}

a.btn1.crt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    background: #fff;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #cccbcb;
    text-transform: uppercase;
    font-family: 'Proxima-font-side';
}

a.btn1.buy-btn {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 0;
    margin-top: 30px;
    height: 60px;
}

section.product-sec.pr-pg-1 {
    padding: 0 0 90px;
}

.product-head-pg {
    margin-bottom: 50px;
    text-align: left;
    border-bottom: 2px solid #ffffff78;
}


/* Product Detail Page End */


/* Description Product Detail Css */

.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    width: 200px;
    height: 70px;
    background-color: transparent;
    font-size: 20px;
    border-radius: 0;
    font-weight: 300;
    color: #000;
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: capitalize;
}

.description li.nav-item .nav-link.active {
    border: 0;
    background-color: #ff6c46;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0;
    font-size: 20px;
}

.rev-btn {
    display: inline-block;
}

.description {
    padding: 40px 0 80px;
    position: relative;
}

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

button.btn1.tabs-btn {
    font-size: 16px;
    padding: 10px 50px;
    margin-top: 20px;
    display: block;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.description .tab-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    padding: 10px 0;
}

.prd-det-page-review-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prd-det-page-review-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prd-det-page-review-box-container {
    display: block;
}

.prd-det-page-review-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.prd-det-page-reviews {
    color: #f9d71c;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
}

.prd-det-page-review-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 25px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.productdetailportion img {
    width: 100%;
    object-fit: none;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;
    isolation: isolate;
    background: transparent;
}

.nav-tabs {
    margin-bottom: 30px;
}

.rev-btn h6 {
    font-size: 30px;
    margin-bottom: 20px;
}


/* Description Product Detail Css */
/*book start*/
section.book form input {
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
    color: #000;
}
section.book form select {
    background: #fff url(../images/arrow.png) no-repeat right;
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    -webkit-appearance: auto;
}
section.book form textarea {
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    resize: none;
    border-radius: 6px;
    height: 200px;
    color: #000;
}

section.book {
    padding: 150px 0px 100px;
}
section.book form input::placeholder {
    color: #000;
}
.text-center button {
    background: #ff6c46;
    width: 40%;
    padding: 12px;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.ankar a:hover {
    background-color: #039199;
}
a.btn-1:hover {
    background-color: #000;
}
section.inn-banner img {
    width: 100%;
}
/*book end*/