/******** Google Fonts ********/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&family=Rubik:wght@400;500;600&family=Urbanist:wght@400;500;600;700;800&display=swap');
/** ****** Color Scheme ****** **/
:root {
  --clr-primary: #EAEAEA;
  --clr-sky-200:#007A99;
  
  --clr-white: #ffffff;
  --clr-white-200: #E6E6E6;
  --clr-black: #000000;
  --clr-black-100: #222D35;
  --clr-black-200: #242424;
  --clr-black-300: #333;
   --clr-black-400: #D5D5D5;
  --ff-primary: 'DM Sans', sans-serif;
  --ff-body: 'Urbanist', sans-serif;
  --ff-rub:  'Rubik', sans-serif;
}
/** ****** CSS Resets ****** **/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}
button:focus{outline: none;border: none;}
a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
input{
  outline: none;
}
body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: 16px;
  line-height: 1.5;
}

p {
  font-weight: 400;
  margin-bottom: 0;
  color: var(--clr-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/** ****** Utility Classes ******* */
.header-sec.fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:#fff;
  box-shadow: 0px 0px 8px 2px rgba(124,124,124,0.5);
  z-index: 99;
}
.fixed-top {
  background-color: var(--clr-black-200) !important;
  position: fixed !important;
}

@media only screen and (max-width: 991px) {
  /* .container {
    --bs-gutter-x: 1rem;
  } */
}

.overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.72);
  z-index: 0;
  backdrop-filter: blur(190px);
  top: 0;
  left: 0;
  opacity: 0.72;
}



[class^=section__] {
  position: relative;
  z-index: 3
}

/* Theme Classes */
.bg-gradient {
  background-image: linear-gradient(238deg, #0a1e22 0%, #3C3C3C 100%) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.clr-text {
  color: var(--clr-black-200);
}

/** ****** Custom Properties ******* */
.custom-pad {
  padding: 100px 0;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-black-100);
  color: var(--clr-white);
  border: none;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 0px 36px;
  height: 45px;
  border-radius: 0px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 1.05px;
  font-family: var(--ff-primary);
  /* background-image: linear-gradient(160deg, #42BBFF 0%, #0372A3 100%); */
}
.custom-button.color {
  background-color: var(--clr-accent);
}

/* Basic Button Hover */
.custom-button:hover {
  /* background-image: linear-gradient(160deg, #0372A3 0%, #42BBFF 100%) !important; */
  color: var(--clr-white) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--clr-accent);
}

.cb-white:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.custom-button_form {
  background-color: transparent;
  padding: 0;
  font: inherit;
  /* add custom-button fonts */
  color: inherit;
  /* add custom-button color */
  text-transform: inherit;
  /* add custom-button text-transform */
  border: none;
}

.custom-heading {
  margin-bottom: 32px;
}

.custom-heading h3 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
  /* color: var(--clr-black-200); */
}

.custom-heading h3::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 1px;
  background-color: var(--clr-accent);
  bottom: 0;
  border-radius: 8px;
}

.custom-heading.text-center h3::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}

.custom-heading span {
  border-radius: 20px;
  border: 2px solid var(--clr-accent);
  background: #f2f2f4;
  padding: 7px 22px;
  color: var(--clr-accent);
  font-size: 20px;
  line-height: 24px;
  font-family: var(--ff-body);
  margin-bottom: 24px;
  display: inline-flex;
}

.custom-heading h6 {
  font-size: 22px;
  color: var(--clr-white);
  text-transform: uppercase;
  line-height: 26px;
  font-family: var(--ff-body);
  font-weight: 400;
}

.owl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.owl-dot span {
  display: inline-flex;
  width: 20px;
  height: 4px;
  background-color: var(--clr-white-200);
}

.owl-dot.active span {
  width: 55px;
  background-color: var(--clr-accent);
}

.owl-nav {
  display: flex;
  justify-content: space-between;
}

.owl-nav>* {
  display: inline-flex;
  position: absolute;
  width: 35px;
  aspect-ratio: 1;
  background-color: #fff !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
}

.owl-nav>:hover {
  background-color: var(--clr-accent) !important;
  transition: all .5s ease-in-out;
  color: var(--clr-white) !important;
}

.owl-prev {
  left: 0;
}

.owl-next {
  right: 0;
}

.black-btn,
.white-btn {
    font-size: 16px;
    font-weight: 400;
    padding: 14px 25px;
    border-radius: 50px;
    transition: .5s ease-in-out;
    display: inline-block
}

.banner-part img,
.extra-large,
.factory img,
.header-sec .row,
.hede-main,
.location-content iframe,
.single_post iframe,
section.body-cont1 img {
    width: 100%
}

.header-sec,
.hede-main,
.top-head {
    position: relative
}

.black-btn,
.hed-rt a,
.white-btn {
    display: inline-block
}

.foot-add li i,
.foot-add ul li a i,
.footer-bottom li a i,
.sosal-icon ul li,
.top-bt i {
    margin-right: 10px
}

.beach-tow-sec .taitel-box,
.blogpagi,
.bt-foot p,
.certificate-box,
.demo,
.ft-product .taitel-box,
.ho-cont,
.marquee-box,
.ploneer-cont,
.susta-box,
section.certificate_sec ul {
    text-align: center
}

.banner-part .banner_text a,
.banner-part .banner_text h1,
.cert-cont h6,
.foot-box h6,
.footer-bottom li a,
.kickass_field lable,
.sustainable-sec h2,
header .cata-part ul li a,
header .menu-part ul li a {
    text-transform: uppercase
}

.black-btn {
    color: var(--clr-white);
    background: #888585
}

.side-btn-new .stick_con {
    background: #888585 !important
}

.side-btn-new .stick_con:hover {
    background: var(--clr-sky-200) !important
}

.black-btn:hover,
.white-btn:hover {
    background: var(--clr-sky-200);
    color: var(--clr-white)
}

.foot-add ul li a:hover,
.foot-box li a:hover,
.nav-manu li a:hover,
.top-bt:hover {
    color: var(--clr-sky-200)
}

.white-btn {
    color: var(--clr-black);
    background: #fff
}

.header-sec {
    width: 100%;
    background: #fff;
    padding: 20px 0
}

.header-sec.fixed .nav-top,
.nav-manu li a,
.nav-top {
    padding-top: 0
}

.header-sec.fixed,
.no-pad,
.post a.post_featured_link {
    padding: 0
}

.hede-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between
}

.logo {
    position: absolute;
    top: 50%;
    left:0px;
    transform: translateY(-50%);
  }
.head-nav {
    width: 100%
}

.top-head {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    padding-bottom:12px
}

.head-ser {
    width: 300px
}

.head-ser input {
    width: 100%;
    font-size: 16px;
    color: #9e9e9e;
    border: 1px solid #000;
    background: url(../images/ser-bg.png) center left 10px no-repeat;
    padding: 4px 10px 4px 40px;
    outline: 0;
    border-radius: 50px;
}

.head-ser::before {
    position: absolute;
    top: 0;
    left: 50px;
    height: 80%;
    width: 1px;
    background: #9e9e9e;
    content: ''
}

.banner-item,
.banner-part,
.banner-slider,
.factory,
.grid,
.grid figure,
.grid figure img,
.marquee,
.marquee-box,
.nav-manu li a,
.search-hold .modal-body,
.sujikhali,
.woman-tailer-cont {
    position: relative
}

.hed-rt {
    display: flex;
    align-items: center
}

.hed-rt a {
    margin-left: 20px
}

.marquee-box {
    width: 100%;
    display: block;
    height: 25px;
    overflow: hidden;
    padding: 5px 0
}

.hed-rt .black-btn{
    padding: 5px 25px;
}

.top-bt {
    padding: 4px 25px;
}

.marquee-box li a {
    font-size: 20px;
    color: var(--clr-black)
}

.nav-manu li a,
.top-bt {
    font-size: 16px;
    color: var(--clr-black);
    font-weight: 400;
    transition: .5s ease-in-out
}

.marquee {
    top: 5px;
    animation: 30s linear infinite marquee
}

#mobileview-de,
.custom__nav .nav-item.dropdown .dropdown-toggle::after,
.custom__nav .sub-menu-toggle.active .icon-plus,
.footer-bottom li a .fa-angle-right,
.head-ser-mb,
.head-ser::before,
.header-sec.fixed .marquee-box,
.hed-rt .fa-solid.fa-tag,
.mobileview,
.sub-menu-toggle .icon-minus,
.tab-content,
.tab-content-kids,
a#clickme {
    display: none
}

@keyframes marquee {
    0% {
        top: 0
    }
    100% {
        top: -200px
    }
}

.top-bt {
    border: 1px solid #000;
    border-radius: 50px
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 10px 24px 10px 48px !important
}

.top-bt:hover {
    border: 1px solid var(--clr-sky-200)
}

.nav-manu {
    justify-content: end
}

.main-nav .navbar-collapse {
    padding-top: 20px;
    justify-content: end
}

.nav-manu li a::before {
    position: absolute;
    box-sizing: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-sky-200);
    content: '';
    opacity: 0;
    transition: .5s ease-in-out;
    bottom: 0
}

.nav-manu li a:hover:before {
    opacity: 1
}

.nav-manu li {
    padding-left: 40px
}

.baech-cont h4 a:hover,
.baech-cont:hover h4 a,
.banner-text h2,
.banner-text h4,
.banner-text h5,
.pro-cont h5 a:hover,
.pro-cont:hover h5 a {
    color: var(--clr-white)
}

.banner-pic,
.banner-pic img,
.banner-sec,
.foot-box,
.woman-tailer {
    position: relative;
    width: 100%
}

.banner-slider {
    width: 100%
}

.banner-sec .carousel-control-next,
.banner-sec .carousel-control-prev {
    width: 40px
}

.banner-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%
}

.beth-left,
.beth-left img,
.ft-product,
.ho-tow,
.pro-pic,
.product-box,
.taitel-box,
.tb-sec,
.tb-wrap,
.tow-sec {
    position: relative
}

.banner-text {
    max-width: 590px
}

.banner-text h4 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px
}

.banner-text h2 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 15px
}

.banner-text h5 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 20px
}

.banner-text .black-btn,
.bath-cont .white-btn,
.con-add ul li,
.ho-cont .white-btn,
.maincontent_area ul.pagination li,
.page-numbers li,
header .menu-part ul li {
    display: inline-block
}

.ft-product {
    padding: 90px 0 50px;
    background: #fff
}

.taitel-box {
    padding-bottom: 0
}

.taitel-box h1,
.taitel-box h2 {
    font-size: 65px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 15px
}

.pro-cont h5,
.taitel-box h6 {
    font-weight: 400;
    color: var(--clr-black);
    text-align: center;
}

.taitel-box h6 {
    font-size: 21px;
    margin-bottom: 10px
}

.product-box {
    width: 100%;
    margin-top: 30px;
}

.pro-pic {
    overflow: hidden;


}

.pro-pic:hover img {
    transform: scale(1.1)
}

.Kids-img img,
.pro-pic img {
    height: 300px;
    object-fit: cover;
    width:100%;
    transition: 0.3s all ease-in-out;
}

.baech-cont,
.pro-cont {
    position: relative;
    width: 100%;
    padding: 15px;
    transition: .5s ease-in-out
}

.kids-text:hover,
.pro-cont:hover,
.tabs-kids-box .black-btn:hover {
    background: #000
}

.pro-cont h5 {
    font-size: 23px
}

.pro-cont h5 a {
    color: var(--clr-black);
    transition: .5s ease-in-out
}

.tb-wrap,
.tow-sec {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.tab-manu,
.tabs-kids-box {
    align-items: center;
    display: flex
}

.beth-left {
    width: 60%;
    height: 340px
}

.beth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ho-tow {
    width: 40%;
    height: 340px
}

.bath-cont,
.ho-cont {
    position: absolute;
    width: 400px;
    top: 50%;
    transform: translateY(-50%)
}

.tb-cont,
.tb-pic img,
.tb-right,
.tb-rt-pic {
    height: 100%
}

.ho-tow img,
.susta-bg img,
.tb-rt-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tb-cont h3,
.tow-sec h3 {
    font-size: 44px;
    color: var(--clr-white);
    margin-bottom: 20px;
    font-weight: 800
}

.tb-cont h6,
.tow-sec h6 {
    font-size: 21px;
    color: var(--clr-white);
    margin-bottom: 15px
}

.baech-cont h4,
.baech-cont h4 a,
.kids-text h4 a,
.tab-manu li a {
    color: var(--clr-black);
    text-align: center;
}

.bath-cont {
    left: 100px
}

.ho-cont {
    right: 100px
}

.tb-sec {
    width: 100%;
    padding: 50px 0 0;
    overflow: hidden
}

.tb-pic,
.tb-right {
    width: 50%;
    position: relative
}

.tb-pic img {
    width: 100%;
    position: relative
}

.tb-rt-pic {
    position: relative;
    width: 100%;
    object-fit: cover
}

.tb-cont {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 100px 30px 30px;
    width: 100%;
    transform: translateY(-50%);
    background: rgba(24, 24, 24, .5);
    opacity: 0;
    transition: .5s ease-in-out
}

.tb-pic:hover .tb-cont,
.tb-rt-pic:hover .tb-cont.mt,
.tb-rt-pic:hover .tb-cont.rt {
    opacity: 1;
    z-index: 2
}

.tb-box {
    position: relative;
    width: 100%;
    padding: 0 0 30px
}

.tab-manu {
    justify-content: center
}

.tb-cont.mt {
    margin-top: 0
}

.tab-manu li {
    margin-left: 6px
}

.tab-manu li a {
    font-size: 22px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 5px
}

.sosal-icon ul li a:hover,
.tab-manu li a:hover,
.tab-manu li.active a {
    color: var(--clr-white);
    background: var(--clr-sky-200)
}

.beach-tow-sec,
.certificate-sec,
.sustainable-sec {
    position: relative;
    width: 100%;
    padding: 80px 0
}

.beach-box {
    position: relative;
    width: 100%;
    margin-top: 25px;
}

.susta-bg,
.sustainable-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.Kids-img,
.beach-pic {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.beach-pic img {
    width: 100%;
    transition: .4s ease-in-out;
    height:300px;
    object-fit: cover;

}

.Kids-img:hover img,
.beach-pic:hover img {
    transform: scale(1.09)
}

.baech-cont:hover {
    background: var(--clr-black)
}

.baech-cont h4 {
    font-size: 20px;
    font-weight: 400
}

.susta-cont h5,
.susta-no,
.sustainable-sec h2 {
    color: var(--clr-white)
}

.sustainable-sec::before {
    content: '';
    background: rgba(13, 9, 9, .7)
}

.sustainable-sec .container-fluid {
    position: relative;
    z-index: 1
}

.susta-bg {
    z-index: -1
}

.sustainable-sec h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px
}

.susta-wrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 50px
}

.susta-box {
    border-radius: 10px;
    padding: 30px 10px 15px;
    position: relative;
    width: 15.5%;
    border: 1px solid var(--clr-white)
}

.susta-no {
    font-size: 78px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -2px;
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%)
}

.copy,
.footer-bottom li a {
    font-weight: 500;
    letter-spacing: 1px
}

.susta-img img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid var(--clr-white);
    margin: 0 auto
}

.susta-cont {
    padding-top: 25px
}

.susta-cont h5 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 40px
}

.ploneer-cont h3,
.ploneer-cont h6 {
    color: var(--clr-white);
    margin-bottom: 15px
}

.susta-cont p {
    font-family: var( --ff-primary);
    font-size: 14px;
    color: var(--clr-white);
    font-weight: 400;
    min-height: 90px
}

.rel-pro h3,
section.body-cont4 h3 {
    min-height: 43px;
    text-decoration: none
}

.ploneering-sec {
    position: relative;
    width: 100%;
    padding: 80px 0
}

.grid figure figcaption,
.grid figure figcaption>a,
.ploneering-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ploneering-bg img {
    width: 100%;
    height: 100%
}

.ploneer-cont {
    position: relative
}

.ploneer-cont h3 {
    font-size: 34px;
    font-weight: 800
}

.ploneer-cont h6 {
    font-size: 22px
}

.holesale-Kids-sec {
    position: relative;
    padding: 70px 0
}

.tabs-kids-box {
    justify-content: end
}

.tabs-kids {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 20px
}

.tabs-kids li a {
    font-size: 26px;
    color: var(--clr-black);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    color: #000
}

.tabs-kids li {
    margin-left: 5px
}

.tabs-kids li a:hover,
.tabs-kids li.active a {
    background: var(--clr-sky-200);
    color: #fff
}

.tabs-kids-box .black-btn {
    border-radius: 10px;
    background: var(--clr-sky-200)
}

.kids-box {
    position: relative;
    width: 100%;
    margin-top: 25px
}

.kids-text {
    padding: 15px;
    transition: .5s ease-in-out
}

.kids-text:hover h4 a,
.up-File .kickass_field lable,
.up-File .kickass_field lable span {
    color: #fff
}

.kids-text h4 {
    font-size: 22px;
    color: var(--clr-black)
}

.woman-tailer-lf,
.woman-tailer-rt {
    position: relative;
    width: 100%;
    padding: 0 15px
}

.tailer-box {
    position: relative;
    padding: 30px;
    background: #eaeaea;
    border-radius: 15px;
    margin-bottom: 20px
}

.featured img,
.foot-add ul li,
.tailer-icon {
    margin-bottom: 10px
}

.woman-tailer-cont h4 {
    color: var(--clr-black-100);
    font-size: 20px;
    font-family: var( --ff-primary);
    margin-bottom: 15px
}

.woman-tailer-cont p {
    font-family: Rubik, sans-serif;
    font-size: 13px;
    color: #555c63
}

.cert-cont h6,
.cert-cont p,
.our-clien h2 {
    font-family: var( --ff-primary)
}

.woman-tailer-pic {
    position: relative;
    height: 100%
}

.woman-tailor-img {
    position: absolute;
    top: 50px;
    left: 40px;
    width: 460px;
    z-index: 1
}

.woman-happy-lady {
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 230px;
}

.woman-medium-shot {
    position: absolute;
    width: 230px;
    right: 40px;
    bottom: 20px
}

.cert-icon,
.certificate-box {
    position: relative;
    border-radius: 100%;
    display: flex
}

.certificate-box {
    width: 280px;
    height: 280px;
    background: #dadada;
    margin: 0 auto 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.cert-icon {
    width: 110px;
    height: 110px;
    background: #fff;
    justify-content: center;
    align-items: center
}

.footer-sec,
.ourlogo-sec,
.sosal-icon {
    width: 100%;
    position: relative
}

.cert-cont {
    position: relative;
    padding-top: 15px
}

.cert-cont h6 {
    font-size: 14px;
    color: ver(--clr-black-300);
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #000
}

.cert-cont p {
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-black-300)
}

.ourlogo-sec {
    padding: 0 0 70px
}

.our-clien {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 3px solid #d7d7d7;
    height: 100%;
    justify-content: end;
    padding: 0 25px 0 0
}

.our-clien h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--clr-black);
    letter-spacing: .5
}

.ourlogo-sec .row:nth-child(2n) {
    flex-direction: row-reverse
}

.our-clien.certi {
    border-left: 3px solid #d7d7d7;
    border-right: inherit;
    justify-content: start;
    padding: 0 0 0 25px
}

.logo-slider .item img,
.logo-slider-cer .item img {
    max-width: 100% !important;
    width: auto !important;
    height: 100%
}

.logo-slider .item,
.logo-slider-cer .item {
    height: 100%
}

.footer-sec {
    background: #3c3c3c
}

.top-foot {
    position: relative;
    padding: 70px 0 50px;
    border-bottom: 1px solid #828282
}

.foot-add {
    padding: 20px 0;
    position: relative
}

.foot-add ul li {
    color: var(--clr-white)
}

.foot-add ul li a {
    font-size: 16px;
    color: var(--clr-white);
    display: flex;
    align-items: center
}

.foot-box h6,
.sosal-icon ul li a {
    font-size: 18px;
    color: var(--clr-white)
}

.butt-foot {
    position: relative;
    padding: 15px 0
}

.sosal-icon {
    padding-top: 15px
}

.sosal-icon ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.sosal-icon ul li a {
    background: var(--clr-black-300);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.foot-box h6 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px
}

.foot-box h6::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #fff;
    content: ''
}

.foot-box li {
    margin-bottom: 7px
}

.foot-box li a {
    font-size: 14px;
    color: var(--clr-white)
}

.foot-form .form-group input,
.foot-form .form-group select,
.foot-form .form-group textarea {
    border-radius: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #828282;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--clr-white);
    width: 100%
}

.foot-form .form-group select {
    outline: 0;
    -webkit-appearance: none;
    color: var(--clr-white)
}

.foot-form .form-group option {
    color: var(--clr-black-200)
}

.foot-form .form-group textarea {
    resize: none;
    outline: 0;
    height: 120px
}

.foot-form .form-group input::placeholder,
.foot-form .form-group select::placeholder,
.foot-form .form-group textarea::placeholder {
    color: var(--clr-white) !important
}

.foot-form .white-btn {
    font-family: var(--ff-primary);
    border: none;
    color: var(--clr-black)
}

.foot-add li,
.ns-loc {
    display: flex
}

.foot-add li i {
    padding-top: 5px
}

.bt-foot,
.tw-content,
section.pro-page {
    padding: 30px 0
}

.bt-foot p {
    font-size: 16px;
    color: var(--clr-white);
    padding-bottom: 0
}

.towels-manufacturer {
    position: relative;
    padding: 0 0 70px
}

.menu-part li a::after,
.menu-part li a::before,
.toptext {
    position: absolute;
    z-index: 1
}

.towels-manufacturer h3 {
    color: #212121;
    font-size: 22px;
    margin-bottom: 12px
}

.towels-manufacturer p {
    text-align: justify;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 25px;
    color: #333;
    font-weight: 600
}

.nav-top .navbar-nav li.active a {
    color: #007a99
}

.sus-button {
    text-align: center;
    padding-top: 40px
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0
}

.certificate-sec.innerpage {
    padding-top: 30px
}

.kickass_field p {
    margin-bottom: 5px
}

.towels-manufacturer h2 {
    color: #000;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 600
}

.toptext h3,
.woman-tailer h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800
}

.toptext {
    top: 30px;
    left: 30px;
    width: 100%
}

.toptext h3 {
    color: var(--clr-white);
    position: relative;
    z-index: 333
}

.woman-tailer h2 {
    color: var(--clr-black);
    text-align: center
}

body {
    font-size: 14px;
    color: #ccc;
    font-family: Raleway, sans-serif
}

img {
    max-width: 100%
}

input:focus,
select:focus,
textarea:focus {
    outline: 0
}

a,
a:hover {
    text-decoration: none
}

.faq_cus .panel-body p,
ul {
    margin: 0
}

li,
ol {
    list-style: none
}

.search-hold .modal-body input {
    border: none;
    width: 89%;
    background: 0 0;
    height: auto;
    margin: 0
}

.search-hold .modal-body button {
    background: #fff;
    border: 1px solid #fff;
    padding: 10px 40px;
    color: #000
}

.logo-part {
    padding-top: 6px
}

header {
    background: #5b5b5b;
    -webkit-box-shadow: 0 0 11px #dadada;
    box-shadow: 0 0 11px #dadada;
    margin-top: 50px
}

header .top-part {
    background-color: #696969
}

header .top-part .apply-text {
    margin-top: 1px;
    padding-left: 0;
    margin-bottom: 3px
}

header .top-part .apply-text li {
    display: inline-block;
    margin: 5px 11px
}

header .top-part .apply-text li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    text-transform: capitalize
}

header .top-part .media-top {
    float: right;
    padding-top: 4px
}

header .top-part .media-top li {
    display: inline-block;
    margin: 0 5px
}

header .top-part .media-top li a {
    font-size: 10px;
    display: block;
    color: #fff;
    border: 1px solid #fff;
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 53px;
    line-height: 24px
}

header .cata-part ul {
    margin-top: 28px
}

header .cata-part ul li {
    display: inline-block;
    position: relative
}

header .cata-part ul li a {
    color: #5a5a5a;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 500
}

header .cata-part ul li a span {
    padding: 3px;
    display: inline-block;
    vertical-align: middle
}

header .cata-part ul li a.cata-d {
    background: #d50105;
    color: #fff !important;
    padding: 8px;
    border-radius: 5px;
    margin-right: 15px
}

header .menu-part {
    background: #1d1d1d;
    margin-top: 15px
}

header .menu-part ul li a {
    color: #eee;
    padding: 17px 37px;
    display: inline-block;
    position: relative;
    z-index: 9999
}

.menu-part li a::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: .3s;
    transition: .3s
}

.menu-part li a:hover::before {
    opacity: 0;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
}

.menu-part li a:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.menu-part li a::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(255, 255, 255, .25);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(.5, .5);
    transform: scale(.5, .5)
}

.unset {
    position: unset
}

@media (min-width:769px) {
    #navigation li:hover ul.sub-menu {
        display: block
    }
    ul.sub-menu {
        position: absolute;
        z-index: 99999;
        width: 100%;
        left: 0;
        display: none
    }
    ul.sub-menu li {
        background: #2d2c2c;
        width: 25%;
        float: left;
        border: 1px solid #111
    }
    ul.sub-menu li a {
        font-size: 13px;
        display: table !important;
        width: 100%
    }
}

.search-hold,
header.sticky_menu .bottom-bar {
    padding: 0 !important
}

.search-hold .modal-dialog {
    width: 100%;
    margin: 0
}

.search-hold .modal-content {
    position: relative;
    border: none;
    border-radius: 0
}

.search-hold input[type=text] {
    border: none;
    color: #333;
    width: 100%
}

.footer-bottom {
    padding: 70px 0 0;
    background: #f1f1ef
}

#fullwidth_blog .post,
.blogpagi .pagination,
.footer-bottom .logo_f img {
    margin-bottom: 30px
}

.footer-bottom .logo_f p {
    font-size: 12px;
    color: #545454;
    line-height: 18px;
    margin-bottom: 20px
}

.footer-bottom .logo_f a {
    color: #545454
}

.footer-bottom h4 {
    color: #4d4d4d;
    margin: 5px 0;
    font-size: 14px;
    font-weight: 700
}

.footer-bottom li {
    margin-bottom: 8px;
    color: #545454
}

.footer-bottom li a {
    color: #4e4e4e;
    font-size: 13px;
    text-decoration: none
}

.copy {
    text-align: center;
    color: #353534;
    padding: 16px 0;
    margin-top: 40px;
    font-size: 12px
}

.kickass_field lable {
    font-size: 12px;
    position: absolute;
    height: 100px;
    overflow: hidden;
    left: 15px;
    width: 100%;
    top: 23px;
    text-align: left;
    color: #111;
    font-family: Lato, sans-serif;
    pointer-events: none;
    -webkit-transition: .2s .3s;
    transition: .2s .3s;
    font-weight: 300;
    letter-spacing: .5px
}

.kickass_field lable span {
    font-size: 10px;
    color: #111;
    clear: left;
    opacity: 1;
    font-weight: 400;
    display: block;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.kickass_field lable:after {
    width: 4px;
    content: '';
    height: 8px;
    border-bottom: 2px solid #28e011;
    border-right: 2px solid #28e011;
    -webkit-transform: translateX(-10px) rotate(45deg);
    transform: translateX(-10px) rotate(45deg);
    position: absolute;
    left: 120%;
    top: 28px;
    -webkit-transition: .2s;
    transition: .2s
}

.kickass_field input,
.kickass_field select,
.kickass_field textarea {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 1px solid #999;
    padding: 12px;
    border-radius: 5px;
    color: #000;
    margin-bottom: 15px
}

.kickass_field textarea {
    height: 100px !important
}

.kickass_field input:focus+lable,
.kickass_field textarea:focus+lable {
    color: #111;
    font-size: 10px;
    top: 10px;
    -webkit-transition: .2s;
    transition: .2s
}

.kickass_field input:focus+lable span,
.kickass_field textarea:focus+lable span {
    opacity: 1;
    -webkit-transition: opacity .1s .1s;
    transition: opacity .1s .1s
}

.kickass_field input:valid+lable,
.kickass_field textarea:valid+lable {
    font-size: 10px;
    top: 10px;
    color: #111
}

.kickass_field input:valid+lable::after {
    display: block;
    left: 90%
}

.footer-bottom input[type=submit] {
    background: #414141;
    padding: 9px 25px;
    border: none;
    color: #fff;
    font-size: 12px;
    float: left;
    border-radius: 5px;
    width: auto
}

.banner-part .banner_text {
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.banner-part .banner_text h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px
}

.banner-part .banner_text h3 span {
    display: table;
    width: 100%;
    margin-top: 10px
}

.up-File .modal-dialog,
section.body-cont1,
section.pro-page .pro-sec h3 {
    display: -webkit-box;
    display: -ms-flexbox
}

.banner-part .banner_text h1 {
    font-size: 35px;
    color: #fff;
    font-weight: 900;
    padding: 12px 0
}

.banner-part .banner_text a {
    border: 1px solid #fff;
    display: table;
    margin: 33px auto 0;
    background: #111;
    padding: 10px 35px;
    text-decoration: none;
    border-radius: 7px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .8px
}

section.body-cont1 {
    background: #f5f5f5;
    float: left;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bg_paralax,
section.body-cont2 {
    background-size: cover;
    background-attachment: fixed
}

section.body-cont1 h2 {
    color: #363636;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 2px
}

section.body-cont1 p {
    color: #232323;
    font-size: 14px;
    line-height: 25px
}

section.body-cont2 h2,
section.body-cont4 h2 {
    text-transform: uppercase;
    line-height: 33px;
    letter-spacing: .5px
}

section.body-cont1 a {
    display: table;
    color: #232323;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid #232323;
    margin-top: 19px
}

section.body-cont2 {
    clear: both;
    padding: 145px 0;
    background-position: center center;
    background-repeat: no-repeat
}

section.body-cont2 h2 {
    color: #313131;
    font-size: 26px;
    font-weight: 700
}

section.body-cont2 a {
    display: table;
    margin: 25px auto 0;
    background: #313131;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 35px
}

section.body-cont4 h2,
section.body-cont4 h2 a {
    color: #313131;
    font-size: 21px
}

section.body-cont3 {
    padding: 60px 0
}

section.body-cont3 a {
    width: 50%;
    display: inline-block;
    background: #fff;
    text-align: left;
    padding: 12px;
    border-radius: 6px
}

section.body-cont3 button.btn.btn-primary {
    background: #d63737;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    margin-left: -20px;
    display: inline-block;
    line-height: 45px;
    margin-top: -4px;
    padding: 0 35px;
    border-radius: 0 6px 6px 0
}

section.body-cont4 {
    padding: 40px 0
}

.pro-list .woocommerce-pagination,
section.body-cont4 .owl-carousel.ws.owl-theme {
    clear: both
}

section.body-cont4 h2 {
    font-weight: 700;
    margin-bottom: 7px
}

section.body-cont4 p {
    color: #545454;
    text-align: center;
    font-size: 16px;
    word-spacing: 1px;
    font-weight: 500;
    padding-bottom: 35px;
    padding-top: 5px
}

.rel-pro .item,
section.body-cont4 .item {
    padding: 0 15px
}

.bg_paralax .bg_text h2,
.bg_paralax .bg_text h3 {
    padding: 6px 0;
    text-transform: uppercase;
    color: #fff
}

section.body-cont4 h3 {
    color: #212121;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    font-weight: 400;
    letter-spacing: .5px
}

.rel-pro .owl-prev,
section.body-cont4 .owl-prev {
    width: 50px;
    height: 50px;
    background: url(../images/arrow.png) 0 0/100%;
    text-indent: 100px;
    overflow: hidden;
    position: absolute;
    top: 32%;
    right: -46px
}

.rel-pro .owl-next,
section.body-cont4 .owl-next {
    width: 50px;
    height: 50px;
    background: url(../images/arrow2.png) 0 0/100%;
    text-indent: 100px;
    overflow: hidden;
    position: absolute;
    top: 32%;
    left: -46px
}

.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    margin: 0 !important
}

.bg_paralax {
    overflow: hidden;
    position: relative;
    padding: 75px 0
}

.bg_paralax .bg_text {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto
}

.bg_paralax .bg_text h2 {
    font-size: 31px;
    font-weight: 600;
    text-shadow: 1px 1px 0 #000;
    margin: 0
}

.bg_paralax .bg_text h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px
}

.bg_paralax .bg_text a {
    display: table;
    margin: 25px auto 0;
    background: #fff;
    color: #111;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 35px
}

.bg_paralax:before {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .5)));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

section.body-cont2.color-2 h2 {
    color: #fff;
    text-shadow: 1px 1px 0 #333
}

section.body-cont2.color-2 a {
    background: #fff;
    color: #313131
}

.factory h2 {
    position: relative;
    color: #111;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0 0 15px
}

.add a,
.add h5,
.inner-ban-tx h2,
.pro-sec .call,
.pvt-form .tw-content h2,
.tw-content h2,
.up-File .modal-title,
.up-File input[type=submit],
section.certificate_sec h2,
section.pro-page .pro-sec a.call,
section.pro-page h2 {
    text-transform: uppercase
}

section.certificate_sec {
    padding: 60px 0;
    background: #f6f6f6
}

section.certificate_sec h2 {
    color: #313131;
    font-size: 28px;
    font-weight: 600;
    padding: 4px;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center
}

section.certificate_sec ul li {
    display: inline-block;
    width: 13%;
    margin: 0 30px
}

.tw-content h2 {
    color: #212121;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800
}

.tw-content h3 {
    color: #212121;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600
}

.tw-content h4 {
    color: #999
}

.tw-content p {
    text-align: justify;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 25px;
    color: #333
}

.tw-content h6 {
    font-size: 12px;
    color: #111;
    font-weight: 700;
    padding: 15px 0 0 !important
}

.con-add p,
ul.pvt li {
    position: relative;
    padding-left: 25px
}

.mt,
.tw-content ul {
    margin-top: 20px
}

.tw-content ul li {
    font-size: 16px;
    color: #111;
    line-height: 30px
}

.up-File {
    background: rgba(0, 0, 0, .9)
}

.up-File .modal-dialog {
    margin: 0 auto;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.up-File .modal-content {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .5))), url("../images//prodBanner3.jpg");
    background: linear-gradient(rgba(0, 0, 0, .5) 100%, rgba(0, 0, 0, .5) 100%), url("../images//prodBanner3.jpg");
    background-size: cover;
    border: none
}

.up-File .modal-title {
    margin: 0;
    line-height: 1.42857143;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.up-File button.close {
    background: #fff;
    opacity: 1;
    color: #333;
    width: 35px;
    height: 35px;
    font-size: 54px;
    text-shadow: none;
    line-height: 20px;
    font-weight: 300;
    padding-bottom: 8px
}

.up-File .kickass_field input,
.up-File .kickass_field select,
.up-File .kickass_field textarea {
    color: #fff;
    -webkit-box-shadow: 0 2px #fff;
    box-shadow: 0 2px #fff
}

.up-File .kickass_field input:valid+lable,
.up-File .kickass_field textarea:valid+lable {
    color: #fff
}

.fetchresult .post-item a .post-title h5,
.panel-group .panel-heading .panel-title,
.shareicon span,
.up-File .kickass_field input:focus+lable,
.up-File .kickass_field textarea:focus+lable,
ul.social_profiles li:hover a {
    color: #fff
}

.con-add h2,
.up-File .kickass_field {
    margin-bottom: 36px
}

.up-File input[type=submit] {
    display: table;
    margin: 12px auto 0;
    width: auto;
    background: #fff;
    height: auto;
    padding: 10px 35px;
    color: #111;
    font-weight: 700;
    font-size: 16px
}

.up-File input[type=file] {
    padding: 46px 0 26px
}

.inner-ban-tx {
    position: absolute;
    top: 0;
    width: 100%
}

.inner-ban-tx h2 {
    margin: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 1.5px
}

.add h3,
.rel-pro h3 {
    letter-spacing: .5px
}

ul.pvt {
    margin: 30px 0
}

ul.pvt li {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px
}

ul.pvt li i.fas.fa-square-full {
    position: absolute;
    left: 0;
    font-size: 7px;
    margin-top: 7px
}

.pvt-form .tw-content h2 {
    color: #212121;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700
}

.pvt-form input[type=submit],
.sig-form input[type=submit] {
    display: table;
    margin: 12px auto 0;
    width: auto;
    background: #111;
    height: auto;
    padding: 10px 35px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px
}

.con-add p {
    margin-bottom: 0;
    margin-top: 14px;
    text-align: left
}

.con-add p i.fas {
    position: absolute;
    left: 0;
    font-size: 16px;
    top: 5px
}

.con-add h4 {
    border-top: 1px solid #ccc;
    margin-top: 25px;
    padding-top: 12px;
    color: #363636;
    font-size: 19px;
    font-weight: 600
}

.add h3,
section.pro-page h2 {
    padding: 12px 0;
    text-align: center;
    background: #111
}

.add h3,
.add h5,
.big-img-decp h1,
.big-img-decp h4,
.rel-pro h3,
.sig-form h3 {
    font-weight: 700
}

.con-add ul {
    margin-top: 16px
}

.con-add ul li i.fab {
    color: #111;
    font-size: 20px;
    padding-right: 28px
}

.add {
    margin-top: 35px
}

.add h3 {
    color: #fff;
    margin-bottom: 25px
}

.add .panel-heading {
    color: #fff;
    background-color: #a0a0a0;
    border-color: #a0a0a0
}

.add a {
    display: table;
    width: 100%;
    text-align: center
}

.add h5 {
    color: #111;
    font-size: 15px;
    margin-bottom: 8px;
    margin-top: 28px
}

.add p {
    margin-bottom: 10px;
    margin-top: 0
}

.maincontent_area ul.pagination {
    width: 100%;
    text-align: center
}

.maincontent_area .pagination>.active>a,
.maincontent_area .pagination>.active>a:focus,
.maincontent_area .pagination>.active>a:hover,
.maincontent_area .pagination>.active>span,
.maincontent_area .pagination>.active>span:focus,
.maincontent_area .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #000;
    border-color: #000
}

.maincontent_area .pagination>li>a:focus,
.maincontent_area .pagination>li>a:hover,
.maincontent_area .pagination>li>span:focus,
.maincontent_area .pagination>li>span:hover {
    z-index: 2;
    color: #fff;
    background-color: #000;
    border-color: #000
}

section.pro-page h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

section.pro-page ul {
    background: #fff;
    -webkit-box-shadow: 0 3px 5px #dcdcdc;
    box-shadow: 0 3px 5px #dcdcdc
}

section.pro-page ul a {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #ccc;
    color: #111;
    display: inline-block;
    font-weight: 600
}

section.pro-page .pro-sec h3 {
    text-align: center;
    font-size: 15px;
    color: #fff;
    min-height: 57px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px 0 0;
    line-height: 20px;
    text-transform: capitalize;
    background-color: #111;
    border: 2px solid #ccc;
    padding: 5px
}

section.pro-page .pro-sec a.call {
    display: table;
    margin: 0 auto 30px;
    color: #111;
    font-size: 13px
}

.big-img-decp h1 {
    margin: 0;
    font-size: 20px;
    color: #111
}

.big-img-decp h4 {
    margin: 20px 0;
    color: #111;
    font-size: 15px
}

.big-img-decp p {
    color: #111;
    text-align: justify;
    line-height: 26px;
    margin-top: 10px
}

.big-img-decp a {
    font-size: 11px;
    color: #111;
    margin-top: 25px
}

.sig-form {
    margin-top: 36px
}

.sig-form h3 {
    color: #111;
    font-size: 20px;
    margin-left: 15px
}

.rel-pro {
    margin-top: 38px
}

.rel-pro h3 {
    color: #212121;
    font-size: 16px;
    margin-top: 12px;
    text-align: center
}

@media (max-width:767px) {
    #nav-icon0 {
        width: 30px;
        height: 24px;
        position: relative;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer
    }
    #nav-icon0 span {
        display: block;
        position: absolute;
        height: 2px;
        width: 50%;
        background: #fff;
        opacity: 1;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    #nav-icon0 span:nth-child(2n) {
        left: 50%;
        border-radius: 0 9px 9px 0
    }
    #nav-icon0 span:nth-child(odd) {
        left: 0;
        border-radius: 9px 0 0 9px
    }
    #nav-icon0 span:first-child,
    #nav-icon0 span:nth-child(2) {
        top: 0
    }
    #nav-icon0 span:nth-child(3),
    #nav-icon0 span:nth-child(4) {
        top: 10px
    }
    #nav-icon0 span:nth-child(5),
    #nav-icon0 span:nth-child(6) {
        top: 20px
    }
    #nav-icon0.open span:first-child,
    #nav-icon0.open span:nth-child(6) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    #nav-icon0.open span:nth-child(2),
    #nav-icon0.open span:nth-child(5) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
    #nav-icon0.open span:first-child {
        left: 0;
        top: 9px
    }
    #nav-icon0.open span:nth-child(2) {
        left: calc(50% - 5px);
        top: 9px
    }
    #nav-icon0.open span:nth-child(3) {
        left: -50%;
        opacity: 0
    }
    #nav-icon0.open span:nth-child(4) {
        left: 100%;
        opacity: 0
    }
    #nav-icon0.open span:nth-child(5) {
        left: 0;
        top: 19px
    }
    #nav-icon0.open span:nth-child(6) {
        left: calc(50% - 5px);
        top: 19px
    }
    a#clickme {
        width: 100%;
        height: auto;
        cursor: pointer;
        display: block !important;
        background: #111;
        padding: 13px 15px
    }
    span.pr-ct {
        float: right;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 19px;
        letter-spacing: .5px;
        line-height: 25px
    }
    div.mydiv {
        width: 100%;
        position: absolute;
        left: -100%;
        z-index: 999999999;
        top: 0
    }
    .cata {
        position: unset
    }
    .open {
        position: absolute !important;
        z-index: 999999999999;
        top: 7px;
        right: 0;
        overflow: hidden
    }
    .open span {
        background: #fff !important
    }
}

.pro-list h1,
.shareicon li {
    color: #111;
    font-weight: 700
}

.pro-list h1 {
    margin: 0 0 20px;
    letter-spacing: 2px;
    font-size: 20px
}

.cat-description h2,
.pro-list h2 {
    color: #111 !important;
    background: 0 0 !important;
    text-align: left !important
}

.pro-list h2 {
    width: auto;
    font-weight: 800 !important
}

.cat-description {
    padding: 40px 15px
}

.cat-description h2 {
    font-weight: 500 !important;
    font-size: 20px !important;
    margin: 10px 0 !important;
    text-transform: capitalize !important
}

.cat-description h3 {
    color: #666;
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px
}

.cat-description p {
    color: #545454;
    line-height: 28px
}

.cat-description p a {
    font-weight: 700;
    color: #545454
}

.cat-description p a:hover,
.single_post p a:hover {
    text-decoration: underline
}

.pvt-form h3 {
    color: #111;
    margin: 15px 0 15px 15px
}

.pvt-form h2 {
    margin-left: 15px
}

.sku_wrapper {
    display: block;
    margin-bottom: 5px
}

.product_meta {
    padding: 15px;
    background: #f3f3f3;
    border-bottom: 1px dashed #424242
}

.catalog_bg {
    background: #333;
    display: block;
    text-align: center;
    font-size: 10pt
}

.catalog_bg .catalog {
    background: #fff;
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 20px 80px;
    max-width: 500pt
}

.catalog_bg .catalog img {
    margin-bottom: 15px
}

.catalog_bg .catalog p {
    color: #111;
    padding-bottom: 10px;
    font-size: 12px
}

.catalog_bg .catalog h2 {
    color: #111;
    padding: 40px 0 20px;
    font-size: 28px;
    line-height: 36px;
    border-top: 1px solid #dedede;
    margin: 0
}

.single_post h1,
.tag-cat .catclass h3,
.tag-cat .tagclass h3 {
    color: #000;
    line-height: 30px;
    margin-top: 0;
    text-align: left;
    clear: both
}

.catalog_bg .catalog .catalogue-btn {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 14pt;
    letter-spacing: 0;
    display: block;
    color: #ffff;
    padding: 20px;
    overflow: hidden;
    width: 100%;
    background-color: #1285dd;
    border-style: solid;
    border-width: 0;
    border-color: #ddd;
    text-shadow: #1285dd 2px 2px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 20px
}

.catalog_bg .catalog .catalogue-btn:hover {
    background: #111
}

.single_post h1 {
    font-size: 24px
}

.single_post p a {
    color: #3F51B5;
    padding: 0
}

.tag-cat .catclass h3,
.tag-cat .tagclass h3 {
    font-size: 18px;
    padding: 15px 0 5px
}

.tag-cat .catclass li,
.tag-cat .tagclass ul li {
    list-style: none;
    display: inline-block;
    margin-right: 4px
}

.tag-cat .catclass li a,
.tag-cat .tagclass ul li a {
    text-decoration: none;
    color: #333;
    background: #dedede;
    text-align: center;
    display: block;
    padding: 3px 9px;
    font-size: 12px !important;
    margin-bottom: 4px;
    text-transform: capitalize
}

.comments-area h3 {
    font-size: 23px;
    font-weight: 600;
    border-bottom: 1px solid #777;
    padding-bottom: 6px;
    color: #111
}

.comments-area p {
    color: #111;
    margin: 15px 0
}

.pagination a,
.pagination span {
    margin: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .5em;
    min-width: 1em;
    display: inline-block;
    border-right: 1px solid #d3ced2;
    text-decoration: none
}

.comments-area p label {
    vertical-align: top;
    margin-bottom: 10px
}

.post ol li,
.post ul li {
    line-height: 26px;
    margin-bottom: 15px;
	margin-top: 15px;
    font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px
}

.comments-area p input,
.comments-area p textarea {
    width: 100%;
    padding: 15px
}

.comments-area .comment-form-cookies-consent input {
    display: inline-block;
    width: auto;
    padding-right: 10px
}

.comments-area .form-submit input {
    background-color: #222;
    border: 0;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 800;
    line-height: 1;
    padding: 1em 2em;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
    width: auto;
    font-size: 18px
}

.comments-area .form-submit input:hover,
.pro-sec .call:hover,
.top_small_msg p a:hover {
    background: #666
}

.pro-sec .call {
    width: auto;
    display: inline-block;
    margin: 11px auto;
    background: #333;
    color: #fff !important;
    font-size: 15px;
    padding: 12px 35px
}

.big-img img,
.woocommerce-page div.product div.images {
    width: 100% !important
}

.pagination {
    display: inline-block !important;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: 1px solid #d3ced2;
    border-right: 0;
    margin: 1px;
    width: auto !important
}

.pagination span {
    background: #ebe9eb;
    color: #8a7e88
}

.pagination a {
    color: #111
}

.pagination a:hover {
    color: #8a7e88
}

.single_sidebar select {
    width:100%;
    padding: 11px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto 20px;
    color: #111;
    background: #fff
}

.single_post h2,
.size-full {
    height: auto
}

.pro-listing {
    text-align: center;
    width: 70%;
    margin: 0 15%
}

.post ol,
.post ul {
    margin-left: 17px
}

.post ul li {
    list-style: disc;
    color: #111
}

.post ol li {
    list-style: decimal;
    color: #111
}

.pro-content {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 25px;
    color: #545454
}

.top_small_msg {
    background-color: #000;
    text-align: center
}

.top_small_msg p {
    padding: 8px 0;
    margin: 0;
    color: #fff
}

.top_small_msg p a {
    color: #fff;
    padding: 3px 15px;
    margin-left: 10px;
    background: #d50105
}

.breadcrumb-section {
    padding: 30px 0 0
}

.breadcrumb-section #breadcrumbs span {
    color: #212121;
    font-weight: 700
}

.breadcrumb-section #breadcrumbs span a {
    color: #212121;
    font-weight: 300
}

.pro-sec {
    min-height: 340px
}

.page-numbers li a,
.page-numbers li span {
    width: 100%;
    padding: 8px 10px !important;
    border-bottom: 1px solid #ccc;
    color: #111 !important;
    background: #ececec !important
}

.blogpagi .pagination a:before,
.page-numbers li a:before,
.share-buttons a:before {
    content: "" !important
}

.pro-sng-frm {
    color: #212121;
    padding: 0 0 10px 15px
}

.related .pro-sec h3 {
    font-weight: 300
}

.acc-ul {
    margin: 15px 0
}

.acc-ul li {
    list-style: none !important
}

.acc-ul li i {
    font-size: 8px;
    margin-right: 10px
}

.about_us h1,
.bulk_order .bulk_email h3,
.bulk_order .bulk_email p,
.contact_us_sec,
.contact_us_sec h3,
.contact_us_sec p,
.form-top,
.page-description h3,
.page-description h4,
.page-description p,
.panel-body h4,
.panel-group h5,
.private_area h1,
.pvt-form {
    color: #212121
}

.panel-group .panel-heading {
    background: #a0a0a0;
    color: #111;
    font-weight: 700
}

.inner-ban-tx h1 {
    margin: 15% 0 0;
    color: #fff;
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: left;
    text-shadow: 3px 2px 0 #000
}

.catalog_bg h1,
.catalog_bg h3 {
    margin-bottom: 20px;
    color: #212121
}

.arc-tit {
    margin-top: 60px
}

.blogpagi .pagination a,
.blogpagi .pagination span {
    padding: 12px !important;
    border-bottom: 1px solid #ccc;
    color: #111 !important;
    background: #fff !important
}

.catalog_bg {
    padding: 50px 20px
}

.catalog_bg .prgrss-bar {
    padding: 20px 0
}

.catalog_bg h1 {
    font-size: 26px;
    font-weight: 600
}

.catalog_bg .kickass_field {
    float: none
}

.catalog_bg input[type=submit] {
    background: #269abc;
    padding: 15px 0;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border: none;
    height: auto
}

.pro-cata-des {
    color: #212121;
    padding: 20px 15px 0;
    line-height: 24px;
    clear: both
}

#fullwidth_blog .col-lg-4 {
    min-height: 440px
}

.about_us {
    background: #eaeaea;
    padding-bottom: 50px
}

.about_us .about_content {
    background: #fff;
    padding: 25px
}

.about_us .about_content h2 {
    text-transform: none
}

.about_us img {
    float: right;
    padding-left: 25px;
    padding-bottom: 25px
}

.about_us p {
    margin: 7px 0
}

.bulk_order {
    background: #eee;
    margin-top: 55px
}

.bulk_order .bulk_email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 280px
}

.bulk_order .bulk_email .email_holder input[type=submit] {
    background: #666;
    border: none;
    width: 100px;
    text-transform: uppercase;
    color: #fff
}

.breadcrumb-section a,
.pro-page nav {
    color: #212121 !important
}

.pro-page nav a {
    color: #337ab7 !important
}

.sig-form h2 {
    text-align: center;
    margin-bottom: 20px !important
}

.private_area h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc
}

.private_area h3 {
    font-size: 20px
}

.loca input[type=submit] {
    width: auto;
    color: #fff;
    background: #d50105;
    padding: 7px 20px;
    margin: 0 auto;
    border: none;
    display: inherit
}

.country-overlay {
    position: relative;
    margin-bottom: 30px
}

.country-overlay h2 {
    position: absolute;
    top: 0;
    color: #fff !important;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 10px solid rgba(255, 255, 255, .3);
    margin: 0
}

.grid {
    margin: 0 auto 30px;
    float: left;
    width: 100%
}

.grid figure {
    float: left;
    overflow: hidden;
    background: #000;
    text-align: center;
    cursor: pointer
}

figure.effect-romeo {
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.grid figure img {
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: .5
}

figure.effect-romeo img {
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s, -webkit-transform .35s;
    -webkit-transform: translate3d(0, 0, 300px);
    transform: translate3d(0, 0, 300px)
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

figure.effect-romeo h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff
}

.grid figure h2 span {
    font-weight: 800
}

figure.effect-romeo p {
    padding: .25em 2em;
    font-size: 14px;
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
    position: absolute;
    top: 39%;
    text-align: center;
    left: 0;
    color: #fff;
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s, -webkit-transform .35s
}



figure.effect-romeo figcaption::after,
figure.effect-romeo figcaption::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #fff;
    content: '';
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s, -webkit-transform .35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

figure.effect-romeo:hover figcaption::after {
    opacity: .5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg)
}

figure.effect-romeo:hover figcaption::before {
    opacity: .5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg)
}

.Three-Easy-tx h3 {
    text-align: center;
    color: #212121
}

.diagonal {
    display: block;
    color: #fff !important;
    text-decoration: none !important;
    background: #1499d4;
    border: none;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 50px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-transform: uppercase;
    z-index: 1
}

.cus-btn,
.cus-btn2 {
    display: inline-flex
}

.diagonal:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 1000%;
    background: #3db7ed;
    z-index: -1;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: translateX(calc(20% - 25px)) translateY(10%) rotate(-45deg);
    transform: translateX(calc(20% - 25px)) translateY(10%) rotate(-45deg);
    -webkit-transform: translateY(10%) translateX(16%) rotate(-45deg);
    transform: translateY(10%) translateX(16%) rotate(-45deg);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.cus-btn2,
.cus-btn2:hover,
.loc-man-box img,
.loc-man-box:hover img {
    transition: .5s ease-in-out
}

.diagonal:hover::after {
    -webkit-transform: translateY(10%) translateX(-25px) rotate(-45deg);
    transform: translateY(10%) translateX(-25px) rotate(-45deg)
}

.sidebtn {
    position: fixed;
    right: -100px;
    top: 40%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    z-index: 99999999
}

.sidebtn .stick_con {
    background: #d50105;
    color: #fff;
    margin: 3px;
    padding: 9px;
    border-radius: 11px 10px 0 0;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700
}

#breadcrumbs {
    color: #666
}

.breadcrumb {
    margin-bottom: 0
}

.panel-body a {
    width: auto
}

.footer-address p {
    color: #4e4e4e;
    margin-top: 20px
}

.pro-breadcrumb .woocommerce-breadcrumb {
    color: #666 !important;
    font-weight: 600;
    margin-bottom: 0 !important
}

.pro-breadcrumb .woocommerce-breadcrumb a {
    color: #111 !important
}

.page-description h2 {
    color: #212121 !important;
    background: 0 0 !important;
    text-align: left !important
}

.cus-btn,
.headerfixed,
.headerfixed h3,
.loc-man-box,
.searchheding h1,
.sujikhali h1 {
    text-align: center
}

.breadcrumb-section {
    color: #212121;
    font-weight: 600
}

.blog_short_para {
    height: 140px
}

.post .featured img {
    height: 180px
}

.post_featured_link p {
    margin: 0 !important
}

.single_post img {
    height: auto !important
}

.internal_page {
    padding-bottom: 20px;
    margin-bottom: 20px
}

.sujikhali h1 {
    margin: 20px 0;
    color: #666;
    text-shadow: none
}

.product-categories {
    background: #f5f5f5 !important
}

.product-categories li a {
    padding-left: 25px !important;
    position: relative
}

.product-categories li a:before {
    content: ">";
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 600
}

.faq_cus {
    padding: 50px 0 10px
}

.faq_cus .panel-heading {
    background: #1d1d1d;
    color: #fff;
    padding: 15px
}

.faq_cus .panel-heading a {
    width: calc(100% - 25px);
    display: inline-block
}

.faq_cus .panel-heading h1:after {
    content: '\002B';
    color: #fff;
    float: right;
    margin-left: 5px;
    font-size: 30px;
    font-weight: 400;
    margin-top: -7px
}

.faq_cus .panel-body {
    background: #eee;
    color: #000
}

.cus-btn2 img {
    width: 15px !important
}

.cus-btn2 {
    background-color: #050522;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 0;
    gap: 9px;
    width: 100%;
    margin-top: 10px
}

.cus-btn2:hover {
    color: #fff;
    background-color: #010155
}

.cus-btn,
.cus-btn:hover {
    color: #484848
}

.cus-btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    margin: 16px auto 0;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    border: 1px solid #333;
    padding: 7px 0
}

.loc-man-box .title h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #404040;
    margin: 25px 0 4px
}

.loc-man-box {
    flex: 0 0 auto;
    width: 24%;
    box-shadow: 1px 1px 15px rgba(125, 125, 125, .21);
    padding: 20px 12px
}

.loc-man-box-wrap {
    gap: 14px;
    margin-bottom: 32px
}

.loc-man-box:hover img {
    transform: rotateY(3.14rad)
}

.loc-man-box img {
    transform: rotateY(0);
    width: 100%
}

@media (min-width:991px) {
    .custom__nav .dropdown-toggle+.caret,
    .sub-menu-toggle {
        display: none !important
    }
    .bottom-bar,
    .custom__nav {
        padding: 0
    }
    .custom__nav .nav-item.dropdown {
        position: unset !important
    }
    .custom__nav .nav-item.dropdown .dropdown-menu {
        display: flex !important;
        width: calc(100vw - 10%);
        text-align: center;
        left: 28%;
        flex-wrap: wrap;
        height: auto;
        overflow-y: unset;
        top:48px !important;
    }
    .custom__nav .menu-item-has-children.dropdown .dropdown-menu {
        background-color: var(--clr-blue-100);
        border-radius: 0;
        border-bottom: 2px solid var(--clr-primary);
        top: 100%;
        visibility: hidden;
        display: block;
        transform-origin: 50% 0;
        -webkit-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -moz-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -ms-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -o-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        transition: .3s ease-in-out;
        border: none !important;
        padding: 0;
        box-shadow: 1px 1px 20px rgba(0, 0, 0, .14);
        background-color: #f7f7f7
    }
    .custom__nav .menu-item-has-children.dropdown:hover .dropdown-menu {
        visibility: visible;
        display: unset;
        transition: .3s ease-in-out;
        opacity: 1;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%)
    }
    .custom__nav ul:not(.dropdown-menu) .nav-item {
        padding: 0 18px;
        display: flex;
        align-items: center;
        color: #fff !important;
        position: relative
    }
    .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link,
    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover {
        color: var(--clr-sky-200) !important;
        transition: .5s ease-in-out
    }
    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
        font-size: 16px !important;
        text-transform: uppercase;
        font-weight: 600;
        color: #fff;
        line-height: 40px !important;
        padding:0px !important;
        transition: .5s ease-in-out;
        position: relative
    }
    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link::before {
        position: absolute;
        content: '';
        width: 0%;
        height: 1px;
        background-color: var(--clr-sky-200);
        right: 0;
        bottom: 0px;
        transition: .5s ease-in-out;
        left: unset
    }
    .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link::before,
    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover::before {
        width: 100%;
        transition: .5s ease-in-out;
        left: 0;
        right: unset
    }
    .custom__nav .dropdown-toggle::after {
        display: inline-block !important
    }
    .custom__nav .dropdown .dropdown-menu .nav-item {
        padding: 0;
        width: 25%;
        flex: 0 0 auto;
        border-right: 1px solid #f2f2f2;
        text-align: center;
        justify-content: center
    }
    header.sticky_menu .bottom-bar .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
        line-height: 60px !important
    }

}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link::before,
.custom__nav .dropdown-toggle .caret {
    display: none !important
}


.offcanvas-header .btn-close {filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(328deg) brightness(105%) contrast(100%) !important;}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link {
    color: #333 !important;
    font-size: 14px !important;
    padding: 6px 0 !important;
    transition: .3s ease-in-out;
    line-height: 32px !important
}

.custom__nav .dropdown .dropdown-menu .nav-item:hover .nav-link {
    color: #fff !important;
    transition: .3s ease-in-out
}

.custom__nav .dropdown-menu .nav-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0
}

.custom__nav .dropdown-menu .nav-item:hover {
    background-color: var(--clr-sky-200);
}

.custom__nav .navbar-toggler {
    padding: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border: none !important
}

.custom__nav .navbar-toggler .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background-color: #fff;
    margin: 5px 0
}

.custom__nav .nav-item.dropdown .sub-menu-toggle {
    position: absolute;
    right: 0;
    top: 19px;
    transform: translateY(-50%);
    display: inline-flex;
    background-color: #068640;
    border: none;
    width: 28px;
    height: 25px;
    font-size: 16px !important;
    justify-content: center;
    align-items: center;
    color: #fff
}

.custom__nav .sub-menu-toggle.active .icon-minus,
.sub-menu-toggle .icon-plus {
    display: block
}

.custom__nav .nav-item.dropdown {
    position: relative;
    z-index: 1
}

.custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.5;
    transition: .5s ease-in-out
}

.custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link {
    color: var(--clr-sky-200)
}

.custom__nav ul:not(.dropdown-menu) .dropdown-menu {
    border: none;
    border-radius: 0;
    border-left: 1px solid var(--clr-sky-200);
    background-color: #f7f7f7;
    height: 260px;
    overflow-y: scroll
}

.custom__nav .dropdown-menu .nav-item {
    padding-left: 15px
}

.custom__nav .offcanvas-header {
    justify-content: flex-end;
    padding-bottom: 0
}

.navbar-brand img {
    height: 70px !important;
    object-fit: contain;
    padding: 7px 0
}

.custom__nav .dropdown-toggle+.caret {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background-color: var(--clr-sky-200);
    color: #fff;
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 4px;
    cursor: pointer
}

.custom__nav .dropdown-toggle+.caret::before {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\2b"
}

.custom__nav .dropdown-toggle+.caret.active::before {
    content: '\f068'
}

.search-hold .modal-body {
    background: #fff;
    padding: 5px
}

.search-hold .modal-body form {
    border: 1px solid #ddd
}

.search-hold .modal-body input {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 6px
}

.search-hold .modal-body input::placeholder {
    color: #000
}

.aws-container .aws-search-form.aws-show-clear.aws-form-active .aws-search-clear,
.aws-search-result .aws_no_result,
.post a.readmore:hover {
    color: #000
}

.aws-search-result ul li {
    font-size: 15px;
    font-weight: 500
}

.fetchresult .post-item {
    margin-bottom: 12px !important;
    padding: 0 10px
}

.fetchresult .post-item a {
    display: flex;
    align-self: center
}

.fetchresult .post-item a .post-title {
    margin-left: 10px
}

.fetchresult .post-item a img {
    width: 70px;
    height: 70px
}

.fetchresult {
    position: absolute;
    width: 56%;
    left: 0;
    background: var(--clr-sky-200);
    z-index: 999
}

.menu-part.affix {
    top: 50px
}

.headerfixed {
    z-index: 9;
    box-shadow: 2px 3px 4px #dedede;
    top: 0;
    margin-bottom: 8px;
    position: fixed;
    background: #fff;
    width: 100%
}

.headerfixed h3 {
    font-weight: 400;
    font-size: 18px;
    color: #000;
    font-family: Lato, sans-serif;
    vertical-align: middle;
    display: block;
    width: 100%;
    margin: 15px
}

.headerfixed h3 span {
    color: #fba026;
    font-weight: 600
}

.headerfixed a {
    color: #fff;
    background-color: #fc3a2c;
    border: 0 solid #4a47f2;
    border-radius: 0;
    font-size: 15px;
    padding: 12px 25px
}

.wpcf7-response-output {
    float: left;
    background: #000;
    color: #fff;
    padding: 10px
}

.post h2 a,
.readmore,
.single_sidebar li a {
    color: #212121;
    text-decoration: none
}

.fetchresult ul {
    padding-top: 15px
}

@media (max-width:1200px) and (min-width:1024px) {
    .loc-man-box {
        width: 32%
    }
}

@media (max-width:1024px) and (min-width:992px) {
    .loc-man-box {
        width: 32%
    }
}

@media (max-width:991.98px) {
    .loc-man-box {
        width: 32%
    }
}

@media (max-width:767.98px) {
    .loc-man-box {
        width: 48%;
        padding: 8px 5px
    }
    .loc-man-box-wrap {
        gap: 10px
    }
    .loc-man-box .title h4 {
        font-size: 14px;
        line-height: 17px;
        margin: 16px 0 4px
    }
    .cus-btn {
        font-size: 9px;
        line-height: 13px;
        padding: 5px 0;
        margin: 5px auto 0
    }
    .cus-btn2 {
        font-size: 8px;
        padding: 8px 0;
        gap: 3px;
        margin-top: 6px
    }
    .cus-btn2 img {
        width: 9px !important
    }
}

.phnotfound {
    padding: 80px 0
}

.searchheding h1 {
    color: #000
}

.formbox {
    width: 800px;
    margin: 25px auto 0;
    background: #f9f9f9;
    padding: 25px
}

.formbox h1 {
    color: #000;
    font-size: 28px;
    margin-bottom: 35px
}

.formbox .form-control {
    height: 50px;
    border-radius: 0
}

.formbox .formtextarea {
    width: 100%;
    height: 80px;
    resize: none
}

.formbox .frmsubmit {
    border: 1px solid #000;
    font-size: 20px;
    border-radius: 0;
    background: #000;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700
}

.formbox .frmsubmit:hover {
    background: #fff;
    color: #000
}

ul.social_profiles li a {
    display: block;
    padding: 10px 15px;
    color: grey
}

ul.social_profiles li:hover {
    background: #262626
}

ul.social_profiles li:last-child {
    border-bottom: 0 solid #e6e6e6;
    padding-bottom: 5px
}

.maincontent_area {
    background: #eee
}

.welcome_widgets {
    margin-bottom: 80px;
    overflow: hidden
}

.post {
    background: #fff;
    padding: 20px
}

.post h2 {
    color: #111;
    font-size: 21px;
    line-height: 24px;
    text-align: left;
    clear: both;
    margin-top: 10px;
	margin-bottom: 10px;
	font-weight:bolder
}

.post h3 {
    color: #111;
    font-size: 19px;
    line-height: 24px;
    text-align: left;
    clear: both;
    margin-top: 10px;
	margin-bottom: 10px;
	font-weight:bolder
}
.post h2 a {
    padding: 0
}

.post hr {
    margin-bottom: 15px;
    margin-top: 15px
}

.post p.post_meta {
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase
}

.post p.post_meta .fa {
    margin-right: 8px
}

.post p {
    color: #111;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: justify;
	font-weight: 600;
	letter-spacing: 0.5px
}

.post a.post_featured_link iframe,
.post a.post_featured_link img {
    padding: 0;
    float: left
}

#fullwidth_blog {
    margin-top: 70px;
    overflow: hidden
}

.single_sidebar {
    background: #fff;
    float: left;
    margin-bottom: 30px;
    position: relative;
    width: 100%
}

.single_sidebar h1,
.single_sidebar h2 {
    background: #000;
    color: #fff;
    font-size: 19px;
    letter-spacing: .5px;
    margin-bottom: 15px;
    margin-top: 0;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700
}

.single_sidebar li a {
    font-size: 16px;
    letter-spacing: .5px;
	font-weight: bolder
}

.single_sidebar li {
    list-style: none;
    margin-bottom: 10px;
	border-bottom-style: dashed
}

.single_sidebar ul {
    margin-bottom: 30px;
    margin-top: 18px;
    padding: 0 15px
}

.single_sidebar .fa {
    float: left;
    margin-right: 14px;
    margin-top: 4px;
    position: relative;
    color: #000
}

@media (max-width:680px) {
    .formbox {
        width: auto
    }
}

@media (min-width:1600px) {
    .container {
        width: 1440px
    }
}

@media only screen and (max-width:991px) {
    .nav-top .navbar-toggler {
        border: none;
        background: 0 0;
        padding: 0;
        margin-right: 0;
        position: absolute;
        right: 0;
        top: -12px;
    }
    .nav-top .navbar-toggler .icon-bar {
        display: block;
        width: 34px;
        height: 5px;
        border-radius: 16px;
        background-color: #007a99;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        -webkit-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
        transition: .5s ease-in-out
    }
    .nav-top .navbar-toggler .icon-bar+.icon-bar {
        margin-top: 5px
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 100%;
        z-index: 11
    }
    .navbar-brand {
        padding-left: 15px
    }
    .navbar-toggler:focus {
        box-shadow: none
    }

    .custom__nav ul:not(.dropdown-menu) .nav-item.active > .nav-link {
        color: var(--clr-white);
      }

      .custom__nav ul:not(.dropdown-menu) .nav-item > .nav-link {
        color: #fff;
      }

      .nav-manu li a::before {display:none}
      .logo {
        position: absolute;
        top: 88px;
        left: 0px;
      }
}
div.wpcf7-validation-errors{
	clear:both;
}

.share-buttons {
    font-size: 0.7rem;
    line-height: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 60px;
    z-index: 2;
    position: relative;
    text-align: center;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
}

.share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(25% - 1px);
    margin-right: 1px;
}

.share-buttons svg {
    fill: #fff;
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.share-googleplus svg {
    width: 20px;
    height: 16px;
}

.share-buttons a {
    display: block;
    padding: 12px 12px 9px;
    text-align: center;
}

.share-buttons li:first-child a {
    border-radius: 3px 0 0 3px;
}

.share-buttons li:last-child a {
    border-radius: 0 3px 3px 0;
}

.share-twitter	{
    background: #1da1f2;
}

.share-facebook	{
    background: #3b5998;
}

.share-googleplus	{
    background: #db4437;
}

.share-pinterest	{
    background: #b5071a;
}

.bg_paralax {
    padding: 150px 0;
}
.cat-description{
    color: #111;
    line-height: 24px;
    text-align: justify;
    font-weight: 500;	
}


.aws-container .aws-search-field:focus {
    background-color: transparent!important;
}

.inc {
	 margin: auto;
	 display: flex;
	 justify-content: center;
	 width: 100%;
	     background: #f7f7f7;
    -webkit-box-shadow: 0 0 11px #dadada;
    box-shadow: 0 0 11px #dadada;
	 padding: 20px 0 20px;
	 align-items: flex-end;
	 text-align: center;
}
 .inc .colored {
	 display: flex;
	 align-items: center;
}
 .inc p {
	 color: #2e4591;
	 font-weight: bold;
	 margin-bottom: 0;
	 margin-left: 5px;
	 font-size: 21px;
}
 .inc h3 {
	 font-size: 25px;
	 margin-bottom: 0;
	 line-height: 32px;
	 font-weight: bold;
	 color:#000;
	 margin-top:0;
}
 .inc h4 {
	 font-size: 25px;
	 margin-bottom: 0;
	 font-weight: bold;
	 line-height: 0;
	 color: #c71c24;
	 	 margin-top:0;
}
 .inc h4 span:nth-child(1) {
	 color: #fc0;
}
 .inc h4 span:nth-child(2) {
	 color: #4646d6;
}
 .inc h4 span:nth-child(3) {
	 color: #000;
}



.banner-owl .owl-buttons .owl-prev, .banner-owl .owl-next {
    position: absolute;
    top: 40%;
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-indent: 120px;
    overflow: hidden;
    border-radius: 50%;
}
.banner-owl .owl-buttons .owl-prev::after, .banner-owl .owl-next::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-left: 3px solid #f15449;
    border-top: 3px solid #f15449;
    left: 5px;
    right: 0;
    margin: auto;
}
.banner-owl .owl-buttons .owl-prev::after {
    transform: rotate(-45deg);
}
.banner-owl .owl-buttons .owl-next::after {
    transform: rotate(135deg);
    left: auto;
    right: 18px;
}
.banner-owl .owl-buttons .owl-prev {
    left: 30px;
}
.banner-owl .owl-next {
    right: 30px;
}

/* top header new 22-06-2023 */
header .top-bar .row {
  display: flex;
  align-items: center;
}
header .top-bar .row [class^="col-"]:nth-child(2) {
  margin-left: auto;
}
header {
  z-index: 99;
  position: relative;
  padding: 0 !important; 
  margin-top: 0 !important; 
}
header .bottom-bar {
  background-color: #1d1d1d;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
}
header.sticky .bottom-bar {
  padding: 7px 0;
  transition: all 0.5s ease-in-out;
}
.sticky {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  left: 0;
}
header .top-bar {
  padding: 6px 0 !important;
  background-color: #3c3c3c !important;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
header.sticky .top-bar {
  padding: 3px 0 !important;
  transition: all 0.5s ease-in-out;
}
.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style-type: none;
}
.top-bar-right li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
}
.top-bar-right li a p {
  margin: 0;
}
.top-bar-right li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.mob-v {
        display :none !important;
}

.catalog-btn {
        overflow:hidden;
        background:linear-gradient(#fc3a2c,rgb(113,9,9));
        margin:3px;
        padding:10px 20px!important;
        border-radius:0;
        text-align:center;
        text-decoration:none;
        box-shadow:2px 1px 10px rgba(0,0,0,.64);
        width:100%;
        position:relative;
        transition:all 0.5s ease-in-out
}
.catalog-btn span:nth-child(2) {
        position:absolute;
        top:0;
        right:0;
        width:100%;
        height:2px;
        background:linear-gradient(to right,#161618,#fff);
        animation:animate1 2s linear infinite
}
@keyframes animate1 {
        0% {
                transform:translateX(-100%)
        }
        100% {
                transform:translateX(100%)
        }
}
.catalog-btn span:nth-child(3) {
        position:absolute;
        top:0;
        right:0;
        height:100%;
        width:2px;
        background:linear-gradient(to bottom,#161618,#fff);
        animation:animate2 2s linear infinite;
        animation-delay:1s
}
@keyframes animate2 {
        0% {
                transform:translateY(-100%)
        }
        100% {
                transform:translateY(100%)
        }
}
.catalog-btn span:nth-child(4) {
        position:absolute;
        bottom:0;
        right:0;
        width:100%;
        height:2px;
        background:linear-gradient(to left,#161618,#fff);
        animation:animate3 2s linear infinite
}
@keyframes animate3 {
        0% {
                transform:translateX(100%)
        }
        100% {
                transform:translateX(-100%)
        }
}
.catalog-btn span:nth-child(5) {
        position:absolute;
        top:0;
        left:0;
        height:100%;
        width:2px;
        background:linear-gradient(to top,#161618,#fff);
        animation:animate4 2s linear infinite;
        animation-delay:1s
}
@keyframes animate4 {
        0% {
                transform:translateY(100%)
        }
        100% {
                transform:translateY(-100%)
        }
}

/* .catalog-btn {
  background: linear-gradient(#fc3a2c,rgb(113, 9, 9));
  margin: 3px;
  padding: 8px 20px !important;
  border-radius: 11px 0px 11px 0;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.64);
  width: 100%;
  position: relative;
  transition: all 0.5s ease-in-out;
} */
header.sticky .top-bar .catalog-btn {
  padding: 5px 20px !important;
  transition: all 0.5s ease-in-out;
}
/* .catalog-btn:hover,
.catalog-btn:focus {
 color:#fff;
 background:#000
}
.catalog-btn::after {
 content:'';
 width:30px;
 height:30px;
 border-radius:100%;
 border:2px solid #00ffcb;
 position:absolute;
 z-index:99;
 top:50%;
 left:50%;
 transform:translate(-50%,-50%);
 animation:ring 1.5s infinite
}
@keyframes ring {
 0% {
  width:30px;
  height:30px;
  opacity:2
 }
 100% {
  width:200px;
  height:200px;
  opacity:0
 }
} */
.search-wrap .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.search-wrap .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
  padding: 0px 0px 0px 35px !important;
  line-height: 24px;
  font-size: 15px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #dfdfdf;
  color: #fff !important; 
}
.search-wrap .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:hover, .search-wrap .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus {
  background-color: transparent !important;
}
.search-wrap .dgwt-wcas-search-submit {
  margin: 0 !important;
  left: 0 !important;
  top: 0 !important;
}
.search-wrap .dgwt-wcas-search-submit svg {
  margin: 0 !important;
}
.search-wrap .dgwt-wcas-search-submit svg path, .search-wrap .dgwt-wcas-preloader.dgwt-wcas-close svg path {
  fill: #dfdfdf !important;
}

@media  (max-width: 991px)  {
  .top-bar-right li:last-child a p {display: none;}
  .top-bar-right li {margin: 0 !important;}
  .top-bar a span {margin-left: 0 !important;}
  .search-wrap .dgwt-wcas-search-form {max-width: unset;}
  .top-bar-right li a {padding: 0 14px;}
  .search-wrap .dgwt-wcas-search-wrapp {max-width: unset;min-width: unset;}
	.mob-v {
  display: unset !important;
}
.des-v {
  display: none !important;
}
}
@media  (max-width: 480px)  {
  .top-bar-right li a {font-size: 11px;}
  .catalog-btn {padding: 4px 13px !important;}
  header .top-bar {padding: 7px 0 !important;}
  .search-wrap .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {padding: 0px 0px 0px 25px !important;font-size: 12px;}
}


.side-btn-new {  position:fixed;  right:-88px;  top:50%;  z-index:9;  -webkit-transform:rotate(-90deg);  -moz-transform:rotate(-90deg); 
   -ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);  filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);  z-index:9 }
.side-btn-new .stick_con { color: #fff; margin: 3px; padding: 9px; border-radius: 11px 10px 0 0; width: 223px;
  text-align: center; text-transform: uppercase;  font-size: 14px; background: #c10000;
  text-decoration: none; font-weight: 500; letter-spacing: 0;}
  .side-btn-new .stick_con:hover{ background: #000;}


/* top header new 22-06-2023 */


/* top header new 09-08-2023 */
.concept-btn {
        position:relative;
        display:flex!important;
        justify-content:center!important;
        align-items:center!important;
        background:transparent;
        color:#fff;
        border:1px solid #fff;
        border-radius:8px 0 8px 0;
        transition:0.2s ease-in-out;
        padding:5px 20px!important
}
.concept-btn p {
        animation:typing 4s steps(12) infinite;
        display:inline-block;
        overflow:hidden;
        white-space:nowrap
}
@keyframes typing {
        0% {
                width:0
        }
        50% {
                width:100%
        }
        55%,
        65%,
        75% {
                opacity:1
        }
        60%,
        70% {
                opacity:0
        }
        80% {
                width:100%
        }
        100% {
                width:0
        }
}



/* top header new 09-08-2023 */

.tb-pic img {
    height: 600px;
    object-fit: cover;
  }
  .tb-rt-pic img {
    height: 300px;
    object-fit: cover;
  }

/* thankyou page */
.catalogBox{position: relative; width: 100%;}
.catalogBox img{width: 100%; position: relative;}
.catalogBox .df-book-title {
  bottom:0;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 5px;
  font-size: 17px;
  background: rgb(19, 24, 30);
  color: #fff;
  box-sizing: border-box;
  display: block;
  -moz-transition: .4s;
  -o-transition: .4s;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  text-align: center;

}
.catalogBox:hover .df-book-title{opacity: 1; z-index: 5;}

  .thankyou-text{padding: 30px; position: relative;}
.thankyou-text h3{font-size: 75px; color: #4AB5B8 !important; font-weight: 700; margin-bottom:10px ; line-height: 65px;}
.thankyou-text p{font-size: 22px; }
.catalog-sec {position: relative; padding: 30px 0;}
.catalog-sec h2{font-size: 31px; color: #000 !important; font-weight: 700; margin-bottom:10px ;}
.catalogBox img {
  width: 100%;
  position: relative;
  height: 300px;
}
.catalog-sec .modal-dialog{
	width:100% !important;
	height:100% !important;
		
}
.catalog-sec .modal-dialog .btn-close{
	position:absolute;
	top:20px;
	right:20px;
	z-index:99; background-image: url(https://www.oasisuniform.net/wp-content/uploads/2024/03/cross1.png);
	background-size: 100%;
  opacity: 1;
}

.fetchresult .post-item{margin-bottom:10px}
.fetchresult .post-item a{position:relative;display:flex; align-items:center; border-bottom: 1.5px solid #ffffff48;}
.fetchresult .post-item a img{width:70px; height:70px;}
.fetchresult .post-item:nth-child(1) a { padding-left: 0px; }
.fetchresult .post-item:nth-child(2) a { padding-left: 0px; }
.fetchresult:nth-child(1) .post-item {margin:0px;}
.fetchresult:nth-child(2) .post-item { margin:0px;}
.fetchresult .post-item .post-title h5{color:#fff; font-size:16px;}

.single_sidebar .product_list_widget li a{display: flex; align-items: center; }
.single_sidebar .product_list_widget li a img{width: 80px ; height: 80px; object-fit: contain;}
.single_sidebar .product_list_widget li a .product-title{font-size: 18px; padding-left: 10px; line-height: 23px;}
.content.single_post h3{margin: 10px 0; color: #000;}
.single_sidebar.author_bio .row{margin: 0;}
.single_sidebar.author_bio .wp-block-contact-form-7-contact-form-selector{padding: 20px 0 ;}
.single_sidebar.author_bio .wp-block-contact-form-7-contact-form-selector .black-btn{
    border-radius:50px !important ;color: var(--clr-white) !important;
    background: #888585 ; width: auto !important; margin: 0 auto;padding: 10px 25px;
    height: 40px;
}
.single_sidebar.author_bio .wp-block-contact-form-7-contact-form-selector .black-btn:hover{background: var(--clr-sky-200);}
element {
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 25px !important;
  background-color: #f9f9f9 !important;
  display: inline-flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 1px 1px 6px #9c9cd2;
  color: #000 !important; }

  .swiper-button-next::after {
    display: none;
  }

  .swiper-button-prev::after {
    display: none;
  }

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

  .logo img {
    height: 50px;
  }

  .tabs-kids-box .white-btn {
    color: var(--clr-white);
    background: #888585;
  }

  .custom__nav ul:not(.dropdown-menu) .nav-item:last-child{padding-right: 0 !important;}


  /* Add CSS to set a fixed height for the swiper container */
  /* .product-full-swiper {
    height: 300px; /* Adjust the height as needed */
  

/*location page css 15-04-2024*/

.tw-content h2 {
    color: #212121;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.loc-man-box {
    flex: 0 0 auto;
    width: 24%;
    box-shadow: 1px 1px 15px rgba(125,125,125,.21);
    text-align: center;
    padding: 20px 12px;
}

.loc-man-box {
    margin-bottom: 20px;
}
.loc-man-box img {
    transform: rotateY(0);
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.location_inner_content h1 {
    color: #212121;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.location_inner_content h2 {
    color: #212121;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.location_inner_content p {
    color: #111;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: justify;
    font-weight: 600;
    letter-spacing: .5px;
	text-align: justify;
}
.cus-btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #484848;
    margin: 16px auto 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
    border: 1px solid #333;
    padding: 7px 0;
}
.cus-btn2 {
    display: inline-flex;
    background-color: #050522;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 0;
    gap: 9px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.5s ease-in-out;
}
.loc-man-box .title h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #404040;
    margin: 25px 0 4px;
}
.loc-man-box img {
    transform: rotateY(0);
    transition: all 0.5s ease-in-out;
    width: 100%;height: 300px;
}
section.location_inner_content {
    padding-bottom: 20px;
}
.location_inner_content .country-overlay {
    position: relative;
    margin-bottom: 30px;
}
.country-overlay img {
    width: 100%;
}
.location_inner_content .country-overlay h2 {
    position: absolute;
    top: 0;
    color: #fff !important;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
    display: flex;
    -webkit-box-align: center;
/*    -ms-flex-align: center;*/
    align-items: center;
    -webkit-box-pack: center;
/*    -ms-flex-pack: center;*/
    justify-content: center;
    border: 10px solid rgba(255, 255, 255, .3);
    margin: 0;
}

.loc-man-box:hover img {
    transform:rotateY(3.14rad);
    transition:all .5s ease-in-out
  }
  .cus-btn2:hover {
    color:#fff;
    background-color:#010155;
    transition:all .5s ease-in-out
  }
  figure.effect-romeo h2 {
    -webkit-transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
    transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
    position: absolute;
    top: 47%;
    left: 0;
    width: 100%;
    color: #fff;
  }
  .grid {
    margin:0 auto 30px;
    float:left;
    width:100%
  }
  figure.effect-romeo {
    perspective:1000px
  }
  .grid figure {
    float:left;
    overflow:hidden;
    background:#000;
    text-align:center;
    cursor:pointer; width: 100%;
  }
  .grid figure img {
    display:block;
    min-height:100%;
    max-width:100%;
    opacity:.5
  }
  figure.effect-romeo img {
    -webkit-transition:opacity .35s,-webkit-transform .35s;
    transition:opacity .35s,-webkit-transform .35s;
    transition:opacity .35s,transform .35s;
    transition:opacity .35s,transform .35s,-webkit-transform .35s;
    -webkit-transform:translate3d(0,0,300px);
    transform:translate3d(0,0,300px)
  }
  .grid,
  .grid figure,
  .grid figure img {
    position:relative;
    width: 100%;
    
  }
  .grid figure figcaption,
  .grid figure figcaption>a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
  }
  .grid figure figcaption {
    padding:2em;
    color:#fff;
    text-transform:uppercase;
    font-size:1.25em;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
  }
  figure.effect-romeo figcaption:after,
  figure.effect-romeo figcaption:before {
    position:absolute;
    top:50%;
    left:50%;
    width:80%;
    height:1px;
    background:#fff;
    content:'';
    -webkit-transition:opacity .35s,-webkit-transform .35s;
    transition:opacity .35s,-webkit-transform .35s;
    transition:opacity .35s,transform .35s;
    transition:opacity .35s,transform .35s,-webkit-transform .35s;
    -webkit-transform:translate3d(-50%,-50%,0);
    transform:translate3d(-50%,-50%,0)
  }
  figure.effect-romeo:hover figcaption:before {
    opacity:.5;
    -webkit-transform:translate3d(-50%,-50%,0) rotate(45deg);
    transform:translate3d(-50%,-50%,0) rotate(45deg)
  }
  figure.effect-romeo:hover figcaption:after {
    opacity:.5;
    -webkit-transform:translate3d(-50%,-50%,0) rotate(-45deg);
    transform:translate3d(-50%,-50%,0) rotate(-45deg)
  }
  figure.effect-romeo h2 {
    -webkit-transform:translate3d(0,-50%,0) translate3d(0,-150%,0);
    transform:translate3d(0,-50%,0) translate3d(0,-150%,0);
    position:absolute;
    top:47%;
    left:0;
    width:100%;
    color:#fff
  }
  figure.effect-romeo p {
    position:absolute;
    top:60%;
    left:0;
    width:100%;
    color:#eaeaea;
    padding:0 5%;
    font-size:14px
  }
  .Three-Easy-tx h3 {
    text-align:center;
    color:#212121
  }
  .demo {
    text-align:center;
    padding:0 15px 10px 0
  }
  .mt {
    margin-top:20px
  }
  .diagonal {
    display:block;
    color:#fff!important;
    text-decoration:none!important;
    background:#1499d4;
    border:none;
    color:#fff;
    font-weight:600;
    letter-spacing:.5px;
    line-height:50px;
    overflow:hidden;
    padding:0;
    position:relative;
    text-transform:uppercase;
    z-index:1
  }
  .diagonal:after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:500%;
    height:1000%;
    background:#3db7ed;
    z-index:-1;
    -webkit-transform-origin:0% 0%;
    transform-origin:0% 0%;
    -webkit-transform:translateX(calc(20% - 25px)) translateY(10%) rotate(-45deg);
    transform:translateX(calc(20% - 25px)) translateY(10%) rotate(-45deg);
    -webkit-transform:translateY(10%) translateX(16%) rotate(-45deg);
    transform:translateY(10%) translateX(16%) rotate(-45deg);
    -webkit-transition:-webkit-transform .3s;
    transition:-webkit-transform .3s;
    transition:transform .3s;
    transition:transform .3s,-webkit-transform .3s
  }
  .diagonal:hover:after {
    -webkit-transform:translateY(10%) translateX(-25px) rotate(-45deg);
    transform:translateY(10%) translateX(-25px) rotate(-45deg)
  }
  .grid figure figcaption:hover h2 {
    top:50%;
    transition:all .3s ease-in-out 0s
  }
  .grid figure figcaption:hover p {
    top:55%;
    transition:all .3s ease-in-out 0s
  }

  .grid figure figcaption:hover h2 {
    opacity: 1;
  } 
  .contact_us_sec h2{
   margin-bottom: 10px;
  }
  .contact_us_sec h3{
    margin-bottom: 15px;
   }
   .tw-content iframe{margin-bottom: 15px;}
   .contact_us_sec input[type="submit"]{
    display: table;
  margin: 12px auto 0;
  width: auto;
  background: #111;
  height: auto;
  padding: 10px 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
   }
   .contact_us_sec p {margin-bottom: 15px !important;}

.post img {
  padding: 0 !important;
    height: auto;
    margin: auto;
    width: auto;
}

.cusform {
    margin-left:auto;
    margin-right:auto;
    width: auto;
    height: auto;
    padding:30px;
    border: 1px solid rgba(0,0,0,.2);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: rgba(0, 0, 0, 0.5); 
    -moz-box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
    box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
    overflow: hidden; 
	background:#2d3b36;
}

.cusform textarea{
    background: #2d3b36; 
    width: auto;
    height: 200px;
    border: 1px solid rgba(255,255,255,.6);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; 
    display:block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size:18px;
    padding-left:45px;
    padding-right:20px;
    padding-top:12px;
    margin-bottom:20px;
    overflow:hidden;
	margin-left: auto;
    margin-right: auto;
	color: #fff;
}

.glowf{
	text-shadow: 0 0 10px #fff;;
  text-align: center;
  color:#fff;
	margin: 20px 0;
	font-size: 20px;
}

.cusform input {
    height: 48px;
    border: 1px solid rgba(255,255,255,.4);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; 
    display:block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size:18px;
    padding-left:20px;
    padding-right:20px;
    margin-bottom:20px;
	    margin-left: auto;
    margin-right: auto;
	color: #fff;
	background: #2d3b36;
}

.cusform input[type=submit] {
    cursor:pointer;
}

.cusform input.name {
    background: rgba(255, 255, 255, 0.4) no-repeat scroll 16px 16px; 
    padding-left:45px;
}

.cusform input.email {
    background: rgba(255, 255, 255, 0.4) no-repeat scroll 16px 20px;
    padding-left:45px;
}

.cusform input.message {
    background: rgba(255, 255, 255, 0.4) no-repeat scroll 16px 16px;
    padding-left:45px;
}

.cusform ::-webkit-input-placeholder {
    color: #fff;
}

.cusform :-moz-placeholder{ 
    color: #fff; 
}

.cusform ::-moz-placeholder {
    color: #fff;
}

.cusform :-ms-input-placeholder {  
    color: #fff; 
}

.cusform input:focus, .cusform textarea:focus { 
    background-color: rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px 1px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 5px 1px rgba(255,255,255,.5);
    box-shadow: 0 0 5px 1px rgba(255,255,255,.5);
    overflow: hidden; 
}

.bttn {
    width: 138px;
    height: 44px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #253737;
    background: #416b68;
    background: -webkit-gradient(linear, left top, left bottom, from(#6da5a3), to(#416b68));
    background: -webkit-linear-gradient(top, #6da5a3, #416b68);
    background: -moz-linear-gradient(top, #6da5a3, #416b68);
    background: -ms-linear-gradient(top, #6da5a3, #416b68);
    background: -o-linear-gradient(top, #6da5a3, #416b68);
    background-image: -ms-linear-gradient(top, #6da5a3 0%, #416b68 100%);
    padding: 10.5px 21px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: rgba(255,255,255,0.1) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
    -moz-box-shadow: rgba(255,255,255,0.1) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
    box-shadow: rgba(255,255,255,0.1) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
    text-shadow: #333333 0 1px 0;
    color: #e1e1e1;
}

.bttn:hover {
    border: 1px solid #253737;
    text-shadow: #333333 0 1px 0;
    background: #416b68;
    background: -webkit-gradient(linear, left top, left bottom, from(#77b2b0), to(#416b68));
    background: -webkit-linear-gradient(top, #77b2b0, #416b68);
    background: -moz-linear-gradient(top, #77b2b0, #416b68);
    background: -ms-linear-gradient(top, #77b2b0, #416b68);
    background: -o-linear-gradient(top, #77b2b0, #416b68);
    background-image: -ms-linear-gradient(top, #77b2b0 0%, #416b68 100%);
    color: #fff;
 }

.bttn:active {
    margin-top:1px;
    text-shadow: #333333 0 -1px 0;
    border: 1px solid #253737;
    background: #6da5a3;
    background: -webkit-gradient(linear, left top, left bottom, from(#416b68), to(#416b68));
    background: -webkit-linear-gradient(top, #416b68, #609391);
    background: -moz-linear-gradient(top, #416b68, #6da5a3);
    background: -ms-linear-gradient(top, #416b68, #6da5a3);
    background: -o-linear-gradient(top, #416b68, #6da5a3);
    background-image: -ms-linear-gradient(top, #416b68 0%, #6da5a3 100%);
    color: #fff;
    -webkit-box-shadow: rgba(255,255,255,0) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
    -moz-box-shadow: rgba(255,255,255,0) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
    box-shadow: rgba(255,255,255,0) 0 1px 0, inset rgba(255,255,255,0.7) 0 1px 0;
   }

.lochome {
  display: grid;
  grid-template-columns: 45% 50%;
  place-items: center;
  gap: 50px;
  background: rgb(67, 69, 112);
  background: radial-gradient(
    circle,
    rgba(67, 69, 112, 1) 3%,
    rgba(35, 36, 57, 1) 60%
  );
  overflow: hidden;
  padding: 130px 80px;
}

.description {
  color: #fff;
  padding: 0 50px;
}

.description h1 {
  font-family: "Tilt Neon", sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.gradient-text {
  font-family: "Tilt Neon", sans-serif;
  background-image: linear-gradient(
    90deg,
    rgb(118, 167, 63) 0%,
    rgb(51, 143, 118) 40%,
    rgb(55, 141, 167) 50%,
    rgb(117, 152, 242) 70%,
    rgb(144, 118, 236) 100%
  );
  color: transparent;
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
}

.description p {
  font-family: "Tilt Neon", sans-serif;
  font-size: clamp(1.5rem, 1vw, 2rem);
  color: #FFF;
  line-height: 1.5;
  margin-bottom: 30px;
}

#form {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
	    border-radius: 5px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5), inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    padding: 10%;
}

.description input {
  padding-inline-end: 10px;
  padding-inline-start: 10px;
  background-color: transparent;
  outline: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
	width:100%;
}

.description input::placeholder {
  color: rgb(117, 152, 242);
  opacity: 0.5;
  font-weight: 500;
}

.description input[type="email"] {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1rem;
}

.description input[type="email"]:focus {
  border: transparent;
  outline: 2px dotted rgb(117, 152, 242);
  outline-offset: -3px;
}

.description input[type="text"] {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1rem;
}

.description input[type="text"]:focus {
  border: transparent;
  outline: 2px dotted rgb(117, 152, 242);
  outline-offset: -3px;
}

.description .wpcf7-response-output {
	display:none !important;
}
.banner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  max-width: max-content;
  background: linear-gradient(
    90deg,
    rgb(118, 167, 63) 0%,
    rgb(51, 143, 118) 40%,
    rgb(55, 141, 167) 50%,
    rgb(117, 152, 242) 70%,
    rgb(144, 118, 236) 100%
  );
  background-size: 200%;
  background-position: left;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  padding: 8px 8px;
  border-radius: 5px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in;
	margin-top: 18px;
}

.banner-btn:hover {
  background-position: right;
}

.users-color-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.locitem {
  max-width: 200px;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s linear 1 forwards;
  animation-delay: calc(0.2s * var(--i));
  opacity: 0;
}

.locitem:nth-child(1) {
  background-color: #67d7e1;
  border-radius: 50% 50% 0 50%;
}

.locitem:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.locitem:nth-child(3) {
  background-color: #fe7519;
  border-radius: 0 50% 0 0;
}

.locitem:nth-child(4) {
  border-radius: 50% 0 0 50%;
}

.locitem:nth-child(5) {
  border-radius: 50%;
}

.locitem:nth-child(6) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 0;
}

.locitem:nth-child(7) {
	background-color: #fcd659;
  border-radius: 0 0 0 50%;
}

.locitem:nth-child(8) {
  background-color: #fe7519;
  border-radius: 0 0 50% 50%;
}

.locitem:nth-child(9) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 50%;
}

.locitem:nth-child(10) {
  border-radius: 50%;
}

.locitem:nth-child(11) {
  background-color: #fcd659;
  border-radius: 50% 0 50% 50%;
}

.locitem:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#imgdrop {
	box-shadow: 10px 5px 5px #b79f8e;
	width: 50%;
}
