/* GENERAL STYLING START ----------------------------*/
.container {
  width: 100%;
  height: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.row {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* GENERAL STYLING END ------------------------------*/


/* HEADER START -------------------------------------*/
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 120px;
  /*background: rgba(0,0,0,0.5);*/
  background: #333645;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.admin-bar .site__header,
#wpadminbar .site__header {
	margin-top: 32px;
}
.main {
	margin-top: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.site__branding {
	width: 300px;
	margin-bottom: 10px;
}
.site__branding img{
	width: 50%;
	height: auto;
}
.navigation__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 15px;
}
.main-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
  
  #mobile__primary-menu,
  #primary-menu {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  
  #primary-menu li {
    margin-right: 36px;
  }
  
  .hidden-menu-item {
      display: none;
  }
  
  .mobile__primary-menu-link:link,
  .mobile__primary-menu-link:visited,
  .mobile__primary-menu-link:focus,
  .mobile__primary-menu-link:active,
  .primary-menu-link:link,
  .primary-menu-link:visited,
  .primary-menu-link:focus,
  .primary-menu-link:active {
    text-decoration: none;
    outline: none;
    text-transform: uppercase;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .primary-menu-link:hover {
    color: #B5B5B5;
      font-weight: 600;
  }
  
  
  #mobile__primary-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  #mobile__primary-menu li {
    padding: 10px;
  }
  
  .calling_time_text {
    color: #B5B5B5;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    margin-bottom: 10px;
    margin-top: 0;
  }
  
.tablet.phone__call-btn {
	display: none;
}

.phone__call-btn:link,
.phone__call-btn:visited,
.phone__call-btn:focus,
.phone__call-btn:active,
.mobile__call-btn:link,
.mobile__call-btn:visited,
.mobile__call-btn:focus,
.mobile__call-btn:active {
	/*color: #303133;*/
	color: #fef8ee;
	text-decoration: none;
	outline: none;
	font-size: 16px;
	/*background-color: #97D0E7;*/
	background-color: #ffaa06;
	padding: 8px 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 600!important;
	font-family: 'Montserrat', Sans-serif!important;
	border-radius: 8px;
}
a.phone__call-btn:hover,
a.mobile__call-btn:hover {
	-webkit-box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
	box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
	color: #333645;
}
.phone__call-btn span:before,
.mobile__call-btn span:before {
	font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f879"!important;
    font-size: 16px;
    /*color: #303133;*/
	color: #fef8ee;
	padding-right: 15px;
	transition: all 0.3s;
}
.phone__call-btn:hover span:before,
.mobile__call-btn:hover span:before {
	color: #333645;
}
.mobile__call-btn {
    margin: 14px 30px auto auto;
}
.mobile__call-btn span:before {
	padding-right: 5px;
}

.cart-contents {
  position: relative;
  display: flex !important;
  flex-flow: column nowrap;
  justify-content: center;
  background-color: #ffaa06;
  padding: 8px 18px;
  margin-left: 15px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cart-contents:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;	
    content: "\f290"!important;
    font-size: 16px;
    color: #fff;
}
.cart-contents:hover:before {
  color: #303133;
}
.cart-contents:hover {
    text-decoration: none;
	  -webkit-box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
    box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
    color: #303133;
}
.cart-contents-count {
	position: absolute;
  top: 15px;
  right: 1px;
  transform: translateY(-105%) translateX(25%);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 12px;
	line-height: 22px;
	height: 22px;
  width: 22px;
	vertical-align: middle;
	text-align: center;
	color: #fff;
    	background: #303133;
    	border-radius: 50%;
    	padding: 1px;  
}
header .mobile__cart-btn {
    padding-bottom: 35px;
    margin-left: auto;
    padding-right: 30px;
}
.desktop__cart-btn,
.mobile__cart-btn {
	display: block;
}
.desktop.cart__btn {
    padding: 8px 20px;
    background: #f6d793;
    margin-left: 20px;
    color: #303133;
}
.desktop.cart__btn:hover {
    -webkit-box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
    box-shadow: 0 0 0 0 #fff, inset 6em 3.5em 0 0 #fff;
    color: #303133;
}
  
  .mobile__menu-toggler {
    display: none;
  }
  
  .mobile__menu-toggler {
    width: 50px;
    cursor:pointer;
	  padding-bottom: 18px;
  }
  
  .mobile__menu-toggler span{
    background: #ffaa06;
    height: 2px;
    margin: 5px 0;
    -webkit-transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
    -o-transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  
  .mobile__menu-toggler span:nth-of-type(1){
    width:50%;
  }
  
  .mobile__menu-toggler span:nth-of-type(2){
    width:100%;
  }
  
  .mobile__menu-toggler span:nth-of-type(3){
    width:75%;
  }
  
  .mobile__menu-toggler.open span:nth-of-type(1){
    -webkit-transform-origin:bottom;
    -ms-transform-origin:bottom;
    transform-origin:bottom;
    -webkit-transform:rotatez(45deg) translate(4px,0px);
    -ms-transform:rotate(45deg) translate(4px,0px);
    transform:rotatez(45deg) translate(4px,0px);
    width: 52%;
  }
  
  
  .mobile__menu-toggler.open span:nth-of-type(2){
    -webkit-transform-origin:top;
    -ms-transform-origin:top;
    transform-origin:top;
    -webkit-transform:rotatez(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotatez(-45deg)
  }
  
  
  .mobile__menu-toggler.open span:nth-of-type(3){
    -webkit-transform-origin:bottom;
    -ms-transform-origin:bottom;
    transform-origin:bottom;
    width:52%;
    -webkit-transform: translate(21px,-4px) rotatez(45deg);
    -ms-transform: translate(21px,-4px) rotate(45deg);
    transform: translate(21px,-4px) rotatez(45deg);
  }
  
.mobile__menu-wrapper {
    position: fixed;
    z-index: 500;
    top: -32px;
    left: 0;
    margin-top: -115%;
    padding: 20px 15px 50px 15px;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #333645;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.mobile__menu-wrapper #primary-menu{
	display: block;
	padding-left: 0;
}
.mobile__menu-wrapper .mobile__menu ul li{
    margin-right: 0!important;
	padding: 10px 0;
}
.mobile__menu-wrapper .mobile__menu ul li a{
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
  .mobile__menu {
    margin-bottom: 20px;
	text-align: center;
  }
  
  /*.mobile__menu-wrapper.open {
    margin-top: 0;
  }*/
  
  .mobile__menu-wrapper p {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
  }
/*#site-navigation .menu-item a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
.menu-item a:hover::after, .menu-item a.active-nav::after {
  width: 100%;
  background: #fff;
}
#site-navigation .menu-item a:hover{
}*/
.sub-menu{
	display:none;
	position: relative;
	background-color: #333645;
	margin-left: -10px;
	z-index: 99;
	/*border-bottom: 1px solid white;
	border-top: 1px solid white;
	margin-bottom: -10px;*/
}
.sub-menu li{
	list-style-type:none;
	margin: 10px;
	z-index: 99;
	padding: 2px!important;
}
#site-navigation .menu-item-has-children {
	display: flex;
}
#site-navigation .menu-item-has-children:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f107';
	color: #fff;
	margin-left: 10px;
}
  #site-navigation .menu-item-has-children:hover .sub-menu {
      display: block;
      width: auto;
      padding-left: 10px;
      padding-top: 5px;
      padding-bottom: 5px;
      /*background-color: #f4f4f4;*/
      position: absolute;
      z-index: 99;
  }
  /*#site-navigation ul li:hover > ul {
      display: block;
      margin-top: 10px;
      z-index: 99;
  }*/
#site-navigation ul li a {
	position: relative;
	/*color: #fff;*/
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}
#site-navigation ul li a:hover {
  color: #ffaa06;
}
  
  #mobile__primary-menu .click-menu {
    float: right;
    width: 20px;
    /*height: 30px;*/
    position: absolute;
    /*top: -5px;*/
    right: 4px;
  }
  #mobile__primary-menu .click-menu::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    position: absolute;
    left: 3px;
    top: -20px;
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    color: #fff;
    content: '\f105';
  }
/*
.mobile__menu-wrapper .click-menu.clicked-menu-item::after {
    transform: rotate(90deg);
  }
.mobile__menu-wrapper .menu-item-has-children {
      text-align: center;
  }
.mobile__menu-wrapper .menu-item-has-children .sub-menu {
      position: inherit;
      text-align: center;
	}
*/
.mobile__menu-wrapper .menu-item-has-children .arrow {
    float: right;
    color: #fff;
	cursor: pointer;
	margin-top: 5px;
}
/* HEADER END ---------------------------------------*/


/* MEDIA QUERIES START ------------------------------*/
@media only screen and (max-width: 1330px) {
    .site__header {
    	padding: 0 20px;
    }
}

@media only screen and (min-width: 993px) {
    .mobile__menu-wrapper{
    	display: none;
    }
	.mobile__cart-btn {
		display: none;
	}
	.mobile__call-btn {
		display: none;
	}
}

@media only screen and (max-width: 992px) {
	.navigation__wrapper{
      display: none;
	}
    .mobile__menu-toggler {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
    }
}

@media only screen and (max-width: 768px) {
	.zigzag__section .row {
		padding: 0;
	}
	.zigzag__image-one,
	.zigzag__image-two {
		width: 100%;
	}
	.zigzag__image-one {
		order: unset;
	}
	.zigzag__image-one img {
		float: none;
	}
	.zigzag__text-col {
		width: 100%;
		padding: 20px 0;
	}
}

@media only screen and (max-width: 412px) {
	.site__header {
		/*height: 85px;*/
		padding: 0 14px;
	}
	/*.main {
		margin-top: 85px;
	}*/
	.site__branding {
		width: 200px;
    margin-bottom: 10px;
	}
}

@media only screen and (max-width: 350px) {
	.site__branding {
		width: 200px;
	}
}
/* MEDIA QUERIES END --------------------------------*/

