/*
Name: Camson Industries
Author: Dzyner9
Author URI: instagram.com/dzyner9
Version: 1.0-042024
*/

* {
  padding: 0px;
  margin: 0px;
  --bs-gutter-x: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
	color:#4d897d;
  text-shadow: 2px 1px 1px #000;
  font-style: italic;
  -webkit-text-stroke: 1px #1a443c;
}

/*h1::before{
  content: "\f35a";
  font-family: 'Fontawesome';
  line-height: 36px;
  font-weight: 100;
  margin-right: 12px;
}*/
h2 {
  margin-bottom: 40px;
  font-size: 32px;
	color:#4d897d;
  text-shadow: 2px 1px 1px #000;
  font-style: italic;
  -webkit-text-stroke: 1px #1a443c;
}

.ba-lines::before {
  content: ' ';
  width: 2%;
  height: 2px;
  background-color: #000;
  display: inline-block;
  margin-right: 20px;
  border: 2px solid #4d897d;
}

.ba-lines::after {
  content: ' ';
  width: 2%;
  height: 2px;
  background-color: #000;
  display: inline-block;
  margin-left: 20px;
  border: 2px solid #4d897d;
}

.site-logo a img {
  width: 200px;
  height: auto;
}

body {
  font-family: 'Urbanist', 'sans-serif' !important;
  font-size: 17px;
  letter-spacing: .5px;
}
.products-row{
  display: flex;
}
p {
  margin: 20px auto;
  padding: 20px 0px;
  line-height: 25px;
}
.page-content p{
	padding: 5px 0px;
	margin: 5px auto;
}
.page-content img{
	width: 95%;
	height: auto;
}
a {
  text-decoration: none;
}

.topbar {
  min-height: 45px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 600;
  background-color: #cfded7;
}

hr {
  border: 1px solid #b9b9b9;
  max-width: 70%;
  margin: 40px auto;
}

.social-links i {
  font-size: 20px;
  margin: 0px 10px;
  padding: 0px 10px;
}

.fa-facebook-f:hover {
  color: rgb(29, 55, 242);
}

.fa-instagram:hover {
  color: rgb(101, 4, 86);
}

.middle-bar {
  border-bottom: 4px solid #1d483f;
  background: #4d897d;
  /*#24b55c;*/
  box-shadow: 2px 2px 5px #a8a8a8;
  position: relative;
}

.main-nav-container,
.menu-main-header-menu-container {
  display: inline-flex;
  /*height: 40px;
    margin: auto;*/
}

.menu {
  margin: auto 0px;
}

.menu li {
  list-style: none;
  display: inline-flex;
}

.menu li a {
  text-decoration: none;
  padding: 0px 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 38px;
}

.menu-item {
  position: relative;
}

.current_page_item,
.current_page_ancestor {
  background-color: #1d483f;
}

.current_page_item a,
.current_page_ancestor a {
  color: #cfded7 !important;
}

.menu-item li a:hover,
.menu-item:hover a:not(.sub-menu li a) {
  color: #cfded7 !important;
}

.menu-item-has-children::after {
  content: "\f140";
  font-family: 'Dashicons';
  line-height: 38px;
  font-weight: 900;
	color: #fff;
}

.sub-menu {
  background-color: #eee;
  position: absolute;
  top: 100%;
  left: 0px;
  box-shadow: 2px 2px 16px #b9b9b9;
  display: none;
  margin: 0 -1000em;
  padding: 0.5em 1000em;
  text-align: left !important;
  border-bottom: 4px solid #1d483f;
  z-index: 999999;
}

.menu-item:hover {
  background-color: #1d483f;
}

.sub-menu li a {
  font-size: 14px !important;
  min-width: 250px;
  color: #0d1e01 !important;
}

.sub-menu li:hover:not(.menu-item li a) {
  background-color: #1d483f;
}

.menu-item:hover .sub-menu {
  display: block;
}

/*---------- Responsive Menu ------------*/



.icon-menu {
  --gap: 3px;
  --height-bar: 3.5px;
  --pos-y-bar-one: 0;
  --pos-y-bar-three: 0;
  --scale-bar: 1;
  --rotate-bar-one: 0;
  --rotate-bar-three: 0;
  width: 30px;
  flex-direction: column;
  gap: var(--gap);
  cursor: pointer;
  position: relative;
  line-height: 38px;
  z-index: 9999;
}

.bar {
  position: relative;
  height: var(--height-bar);
  width: 100%;
  border-radius: .5rem;
  background-color: #245430;
}

.bar--1 {
  top: var(--pos-y-bar-one);
  transform: rotate(var(--rotate-bar-one));
  transition: top 200ms 100ms, transform 100ms;
}

.bar--2 {
  transform: scaleX(var(--scale-bar));
  transition: transform 150ms 100ms;
}

.bar--3 {
  bottom: var(--pos-y-bar-three);
  transform: rotate(var(--rotate-bar-three));
  transition: bottom 200ms 100ms, transform 100ms;
}

.check-icon:checked+.icon-menu>.bar--1 {
  transition: top 200ms, transform 200ms 100ms;
}

.check-icon:checked+.icon-menu>.bar--3 {
  transition: bottom 200ms, transform 200ms 100ms;
}

.check-icon:checked+.icon-menu {
  --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
  --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
  --scale-bar: 0;
  --rotate-bar-one: 45deg;
  --rotate-bar-three: -45deg;
}

.icon-menu {
  display: none;
}

/* FIN ICON-MENU */
#mobile-menu-toggle {
  margin: auto;
}


@media (max-width: 740px) {

  #mobile-menu-toggle {
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: 999;
    width: fit-content;
  }

  .menu-main-header-menu-container .menu {
    height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .icon-menu {
    display: flex;
  }

  .check-icon:checked~.menu-main-header-menu-container .menu {
    height: fit-content;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .menu {
    position: absolute;
    top: 40px;
    right: -15px;
    z-index: 99;
    background-color: #cfded7;
    box-shadow: 2px 5px 16px lightgray;
    overflow-y: scroll;
    width: 300px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow-x: clip;
    transition: all .2s ease-in-out;
  }

  .menu li {
    display: block;
  }

  .sub-menu {
    display: block;
    left: 10px;
    background-color: #eee0;
    position: inherit;
    box-shadow: none;
    border-bottom: none;
  }

  .sub-menu li {
    border-top: 0.5px solid #245430;
  }

  .current_page_item {
    background-color: #fff0;
  }

  .current_page_item a,
  .current_page_ancestor a {
    color: #245430 !important;
    font-weight: bold;
  }

  .menu li a {
    font-size: 18px;
    padding: 0px;
	  color: #1d483f;
  }

  .menu-item {
    margin: 2px 30px;
    line-height: 50px;
  }

  .menu-item:hover {
    background-color: transparent;
    color: #245430;
    font-weight: bold;
  }

  .current_page_item::before,
  .current_page_ancestor::before,
  .current-menu-item::before {
    content: '\f0da';
    font-family: 'FontAwesome';
    margin-right: 15px;
  }

  .menu-item-has-children::after {
    display: none;
  }

  .menu-item-has-children a:not(.sub-menu li a):after {
    content: "\f140";
    font-family: 'Dashicons';
    line-height: 38px;
    font-weight: 900;
    margin-left: 20px;
  }

  .sub-menu li:hover:not(.menu-item li a) { background-color: transparent; }

  .menu-item li a:hover,
  .menu-item:hover a:not(.sub-menu li a) {
    color: #337543 !important;
    font-weight: bold;
  }

  .current_page_ancestor {
    background-color: transparent;
  }

  .current_page_item,
  .current-menu-item {
    background-color: transparent;
    border-bottom: 2px solid #245430;
  }

  .current-menu-item a {
    color: #337543 !important;
    font-weight: bold !important;
  }
.product-category-section .product-category-img img{
    width: 90% !important;
    }
}

/*---------^ Responsive Menu ^-----------*/

.slider {
  width: 100%;
}

.btn-container {
  width: 100%;
  text-align: center;
  margin: 40px auto;
}

.about-section {
  background-image: url(https://camsonindustries.com/wp-content/uploads/2024/06/about-element.png);
  background-repeat: no-repeat;
  background-position: 50px 20px;

}

button,
.btn {
  background-color: #4d897d;
  color: #fff;
  line-height: 30px;
  padding: 5px 15px;
  border: 2px solid transparent;
  font-size: 16px;
  border-radius: 5px;
  transition: all .6s ease-in-out;
}

.btn-lg,
.wpcf7-submit {
  background-color: #4d897d;
  color: #fff;
  text-decoration: none;
  line-height: 40px;
  padding: 20px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: all .6s ease-out;
}
.btn-lg-back {
  background-color: #4d897d;
  color: #fff;
  text-decoration: none;
  line-height: 40px;
  padding: 20px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: all .6s ease-out;
}
button::after,
.btn::after,
.btn-lg::after,
.wpcf7-submit::after {
  content: "\f101";
  font-family: 'Fontawesome';
  line-height: 36px;
  font-weight: 100;
  margin-left: 12px;

}
.btn-lg-back::before{
  content: "\f3e5";
  font-family: 'Fontawesome';
  line-height: 36px;
  font-weight: 100;
  margin-right: 12px;

}

button:hover,
.btn:hover,
.btn-lg-back:hover,
.btn-lg:hover,
.wpcf7-submit:hover {
  background-color: #cfded7;
  color: #4d897d;
  cursor: pointer;
	border: 2px solid #4d897d;
}

.animatedcounters {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 5px black;
}

.fp-counter-awards::after,
.fp-counter-customers::after,
.fp-counter-products::after {
  content: '+';
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 5px black;
}

.counter-box {
  display: block;
  margin: 50px auto;
  width: 100%;
}

.counter-box i::before {
  font-size: 80px;
  color: #fff;
  text-shadow: 2px 2px 5px black;
}

.counter-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 5px black;
}

.text-center {
  text-align: center;
}

.spacer-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.divider {
  width: 70%;
  border-top: 1px solid grey;
  margin: 50px auto;
}
.divider-nomargin {
  width: 70%;
  border-top: 1px solid grey;
	margin: 0px auto;
}


.distribution-network {
  background-color: #cfded7;
  padding: 50px 0px;
  min-height: 500px;
}

#intro-section {
  background-image: url(img/camson-tilted-square.png);
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 450px;
  animation-name: fadeINleft;
}

.distribution-network {
  background-image: url(img/connected-dots-network-1.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.network-map {
  background-image: url(img/camsonn-india-map-1.png);
  height: 25em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.post-thumbnail {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 8px solid #1d483f;
  position: relative;
}

.crumbs {
  background-color: #eee;
  padding: 0px 20px;
  color: #245430;
  min-height: 50px;
}

.crumbs a {
  color: #1d483f;
}

.breadcrumbs {
  line-height: 50px;
}

.breadcrumb_last {
  font-weight: bold;
}

.pp-title {
  color: #fff;
  background-color: #1d483f;
  padding: 10px 30px;
  position: absolute;
  bottom: 0px;
  left: 10%;
  border-radius: 10px 30px 0px 0px;
  border-top: 2px solid #fafafa;
  font-size: 35px;
}

.fp-post-box {
  min-height: 150px;
  min-width: 150px;
  background-color: #dadada;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  border: 1px solid gray;
  box-shadow: 1px 1px 4px #000;
  margin: 10px;
  float: left;
  transition: background-size 500ms ease;
}

.fp-post-box:hover {
  background-size: 120% 120% !important;
}

.fp-post-box h4 {
  color: #fff;
  background-color: #0000007a;
  text-shadow: 2px 2px 5px #000;
  width: 100%;
  padding: 10px 0px;
}

#iso-cert {
  width: 90%;
  margin: 10px;
}

.postbox-container {
  width: 95%;
  margin: auto;
  padding: 0px 15px;
}

.post-row {
  display: flex;
  margin: 35px auto;
  text-align: center;
}

.blog-post-box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid gray;
  height: 520px;
  position: relative;
  transition: all 500ms ease;
}

.blog-post-box .post-thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.blog-post-box:hover, .product-container:hover {
  box-shadow: 2px 2px 5px gray;
  border-radius: 10px;
}

.post-meta {
	color: #245430;
  display: flex;
  height: 50px;
  font-size: 14px;
	align-items: center;
  padding: 2px 20px;
}

.post-meta a {
  color: #868686;
  margin-left: 10px;
  align-content: center;
}

.post-meta ul {
  list-style: none;
  margin-left: 5px;
}

.blog-post-box h3, .product-box h3 {
  color: #1d483f;
  background: #d7d7d73b;
  padding: 10px 20px;
  border-radius: 9px 9px 0px 0px;
  height: 50px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.blog-post-box p {
  font-weight: 400;
  padding: 20px;
  color: #000;
  margin: auto;
  text-shadow: 1px 1px 4px #fff;
}

.post-overlay-gradient {
  background: #00000012;
  height: 60%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  z-index: 0;
}

.product-container{
  margin: 5px;
  width: 24%;
  height: 450px;
  border: 1px solid grey;
}
.product-container .product-box .product-thumb{
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 280px;
  background-color: #cfded7;
}

.counters {
  background-color: #4d897d;
}

.content-area {
  background-image: url(https://camsonindustries.com/wp-content/uploads/2024/06/products-elements.png);
  background-repeat: no-repeat;
  background-position: 50% 5px;
  background-size: 60%;
}

.vishwas-camson-ka img{
    width: 100%;
}

#latest-news {
  background-image: url(img/dotted-news-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.registration-certification {
  background-color: #cfded7;
}

.page-sidebar{
    background-color: #f7f7f7;
}
.page-sidebar-title{
    margin: 20px 10px;
}
.page-sidebar ul li a{
    color: #245430;
}
.page-sidebar ul{
    margin-left: 30px;
}
.page-sidebar ul li{
    margin: 20px auto;
}
.page-sidebar li a:hover{
    font-weight: bold;
}
.children{
    margin-left: 20px;
  font-size: 15px;
}
#top {
  border: 2px solid #4d897d;
  box-shadow: 2px 2px 7px grey;
}

#top p {
  margin: auto;
}

.wpcf7 {
  padding: 20px;
  background-color: #eee;
  border: 1px solid #c8c8c8;
  border-radius: 15px;
}

.wpcf7 input,
.wpcf7-textarea {
  width: 100%;
  line-height: 40px;
  border: none;
  font-size: 20px;
  border-radius: 5px;
  padding-left: 10px;
}

.wpcf7 p {
  margin: 10px auto;
  padding: 10px 0px;
}
.product-img img{
  max-width: 98%;
  transition: 0.6s ease-in-out;
}
.product-img:hover img{
	transform: scale(1.5);
}
.product-img{
  background-color: #cfded7;
	text-align: center;
	overflow: hidden;
}
.product-details{
  background-color: #eee;
  display: grid;
  align-items: center;
}
.product-details table{
  width: 90%;
  margin: auto;
  line-height: 30px;
}
.product-details table td{
  background-color: #D9D9D9;
  padding: 5px;
	text-align: center;
	width: 49%;
}
.product-category-section{
    position: relative;
    margin-top: 110px ;
}
.product-category-title{
    position: absolute;
    top: -51px;
  left: 4%;
  background-color: #fff;
  padding: 10px;
  border: 4px solid #4d897d;
  border-radius: 20px;
  box-shadow: 2px 2px 4px gray;
}
.product-category-section .product-category-img img{
    width: 60%;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid gray;
  margin: 2px auto;
}

footer {
  background-color: #eeeeee;
  border-top: 14px solid #4d897d;

}

.upper-footer {
  min-height: 300px;
}

.footer1 {
  background-color: #dfdfdf;
  padding: 10px;
}

.footer2 {
  margin-left: 20px !important;
}

.footer2 ul,
.footer3 ul {
  margin-left: 20px;
}

.footer2 ul li,
.footer3 ul li {
  font-size: 16px;
  margin: 10px 20px;
  list-style: circle !important;
}

.footer2 ul li a,
.footer3 ul li a {
  color: #868686;
}

.footer2 ul li a:hover,
.footer3 ul li a:hover {
  color: #4d897d;
  font-weight: bold;
}
#custom_html-10{
	margin-left: 20%;
}
.copyright {
  font-size: 12px;
  padding: 20px 0px;
}

#copyright-url {
  letter-spacing: 2px;
}

@media (max-width: 740px) {

  h1,
  h2 {
    font-size: 27px;
    margin: 0px auto;
    text-align: center;
    max-width: 90%;
  }

  .pp-title {
    border-radius: 10px 30px 0px 0px;
  }

  .ba-lines::after {
    content: ' ';
    width: 4%;
    height: 2px;
    background-color: #000;
    display: inline-block;
    margin-left: 5px;
    border: 1px solid #71DB89;
  }

  .ba-lines::before {
    content: ' ';
    width: 4%;
    height: 2px;
    background-color: #000;
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #71DB89;
  }

  .content-area {
    background-size: 90%;
  }

  .post-row , .products-row {
    display: block;
    margin: 35px auto;
  }
	.page-sidebar{
	    width:90% !important;
	    margin: auto;
	    
	}
  .postbox-container {
    width: 95%;
    margin: 35px auto;
    padding: 0px;
  }
.product-container{
  	width: 90%;
	margin: 30px auto;
}
  .footer1 {
    margin-top: 60px !important;
    margin-bottom: 50px;
  }
	#custom_html-10{
	margin-left: 0px;
}
}