/*!
Theme Name: Garry Null Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: garry
*/


:root {
  --sidebar-width: 280px;
  --menu-font-size: 15px;
  --menu-item-gap: 20px;
  --shop-btn-font-size: 16px;
  --gap: 10px;
}
@media (min-width: 1366px) {
  :root {
    --sidebar-width: 280px;
    --menu-font-size: 15px;
    --menu-item-gap: 20px;
  }
}
@media (min-width: 1440px) {
  :root {
    --menu-font-size: 16px;
    --menu-item-gap: 20px;
    --gap: 15px;
  }
}
@media (min-width: 1600px) {
  :root {
    --sidebar-width: 330px;
    --menu-item-gap: 30px;
    --gap: 20px;
  }
}

body {
  margin: 0;
  padding: 0;
  color: #656565;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #656565;
  overflow-x: hidden;
}

p {
  font-size: 18px;
  color: #5a6572;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #195192;
}
a:hover {
  color: #000;
}
.entry-content a:visited {
  color: #c4111a !important;
}
img {
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: 45px;
  font-weight: 600;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 36px;
}

h5 {
  font-size: 30px;
}

h6,
.h6{
	font-size: 24px;
	color: #195192;
	font-family: "Poppins", sans-serif;
	line-height: 1.2;
}

h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: #195192;
	margin-bottom: 1rem;
}

.container {
  max-width: 1200px !important;
}

.big-text {
  font-size: 26px;
  color: #0d294a;
  font-weight: 300;
  line-height: 1.4;
}

.read-more a {
  color: #2368b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.read-more a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  margin-left: 10px;
  transition: all 0.5s ease;
}
.read-more a:hover {
  color: #c4111a;
}
.read-more a:hover::after {
  margin-left: 20px;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 25px;
}

.btn-primary {
  background-color: #2368b8;
  border-color: #2368b8;
}

.pt {
  padding-top: 90px !important;
}

.pb {
  padding-bottom: 90px;
}

.py {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.g-30 {
  --bs-gutter-x: 30px !important;
  --bs-gutter-y: 30px !important;
}

/*========================================= Common End ============================================*/
/*========================================= Header Start ============================================*/
.logo {
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid #d5d5d5;
  min-width: var(--sidebar-width);
}

.head-middle {
    padding:0 20px;
	min-width: calc(100vw - var(--sidebar-width) - 20px);
}

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--menu-item-gap);
	justify-content: flex-end;
}
.main-menu > li{
	position: relative;
}
.main-menu > li > a {
  color: #0d294a;
  font-weight: 500;
  font-size: var(--menu-font-size);
  padding: 0 0 12px;
  position: relative;
}
.main-menu > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #c4111a;
  transition: all 0.5s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-menu > li > a:hover {
  color: #2368b8;
}
.main-menu > li > a:hover::after,
.main-menu > li.current-menu-parent a::after,
.main-menu > li.current-menu-ancestor a::after{
  width: 100%;
}
.main-menu > li ul{
	list-style: none;
	position: absolute;
	left: 0;
	top: 37px;
	opacity: 0;
	visibility: hidden;
	padding-left: 0;
	width: 300px;
	z-index: 10;
}
.main-menu > li:hover > ul{
	opacity: 1;
	visibility: visible;
}
.main-menu > li ul li{
	position: relative;
}
.main-menu > li ul li ul{
	left: 100%;
	top: 0;
}
.main-menu > li ul li:hover > ul{
	visibility: visible;
	opacity: 1;
}
.main-menu li ul li a{
	display: block;
	background-color: #fff;
	padding: 8px 10px;
	border-top: 1px solid #ddd;
	border-left: 2px solid #195192;
}
.main-menu > li ul li a:hover,
.main-menu > li ul li.current-menu-parent > a{
	background-color: #195192;
	color: #fff;
}

.head-right {
  display: flex;
  align-items: center;
	justify-content: flex-end;
  gap: var(--gap);
}

.head-search {
  border: none;
  background-color: #2368b8;
  height: 55px;
  transition: all 0.5s ease-in;
	padding: 0 7px;
	color: #fff;
}
.head-search:hover {
  background-color: #195192;
}

.shop-btn {
  border: none;
  background-color: #c4111a;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 500;
}
.shop-btn a{
	color: #fff;
	display: flex;
	align-items: center;
}
.shop-btn span.icn {
  height: 100%;
  display: inline-block;
  padding: 0 13px;
  border-left: 1px solid #d8242d;
  line-height: 55px;
  margin-left: 15px;
}
.shop-btn img {
  margin-right: 5px;
}
@media screen and (max-width: 1500px) {
  .shop-btn span.text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1279px) {
  .shop-btn span.text {display: none;}
.shop-btn{padding-left: 10px;}
.shop-btn span.icn{margin-left: 10px;}
	.main-menu{gap: 10px;}
}
@media screen and (max-width: 1366px) {
  .shop-btn span.text {
    font-size: 14px;
	  display: none;
  }
}

.menu-btn,
.close-btn,
.menu-sub-btn{
  display: none;
}

@media (max-width: 1200px) {
  .logo {
    border-right: none;
    text-align: left;
    padding: 10px var(--gap);
  }
  .main-nav {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  background-color: #0d294a;
	  width: 80%;
	  height: 100%;
	  z-index: 5;
	  transition: all .5s ease;
	  overflow-x: scroll;
  }
	.main-nav.open{
		right: 0;
	}
	.main-menu{
		display: block;
	}
	.main-menu > li > a{
		display: block;
		color: #fff;
		padding: 10px 10px;
	}
  .menu-btn {
    display: block;
    background-color: #0d294a;
    color: #fff;
    border: none;
    font-size: 25px;
    width: 45px;
    height: 45px;
  }
	.close-btn{
		display: block;
		border: none;
		background-color: #2368b8;
		width: 45px;
		height: 45px;
		color: #fff;
	}
	.menu-sub-btn{
		position: absolute;
		top: 1px;
		right: 0;
		background: #fff;
		color: #0d294a;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px solid #ddd;
	}
	.main-menu > li ul{
		position: relative;
		left: 0;
		top: 0;
		opacity: 1;
		visibility: visible;
		display: none;
		width: 100%;
	}
	.main-menu > li ul li ul{left: 0;}

}
.inner-banner {
  background-color: #d3e6fc;
  padding: 10px 0;
}
.inner-banner h1 {
  color: #195192;
  font-size: 36px;
  font-weight: 600;
}

/*========================================= Header End ============================================*/
/*================================================= Footer ==========================================*/
.footer {
  background-color: #0d294a;
  padding: 120px 0 90px;
}

.social-foot {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-foot li a {
  width: 35px;
  height: 35px;
  padding: 5px;
  background-color: #c4111a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s ease;
	border: 1px solid #c4111a;
}
.social-foot li svg{
	fill: #fff;
}
.social-foot li a:hover {
  color: #c4111a;
  background-color: #fff;
}
.social-foot li a:hover img{
	filter: brightness(0) saturate(100%) invert(24%) sepia(57%) saturate(4859%) hue-rotate(344deg) brightness(75%) contrast(113%);
}
.social-foot li a:hover svg{
	fill: #c4111a;
}
.copyright {
  color: #fff;
}

.sitemap-link {
  letter-spacing: 2px;
  color: #8ebaee;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px solid #8ebaee;
}
.sitemap-link:hover {
  color: #c4111a;
  border-bottom: 1px solid #c4111a;
}

.foot-title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.foot-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-menu li {
  margin-bottom: 10px;
}
.foot-menu li a {
  color: #fff;
}
.foot-menu li a:hover {
  color: #c4111a;
}

/*================================================= Footer End ==========================================*/
.sidebar-menu {
  width: var(--sidebar-width);
  background-color: #2368b8;
  height: 100%;
  padding: 30px 20px;
  max-height: 800px;
  overflow-y: auto;
}
.sidebar-menu h6{
	text-align: center;
	color: #fff;
}

.sid-menu {
  padding-left: 17px;
  margin: 0;
}
.sid-menu > li {
  list-style-image: url(assets/images/list.png);
  position: relative;
  margin-bottom: 12px;
}
.sid-menu > li:last-child{
	margin-bottom: 0;
}
.sid-menu > li > a {
  color: #fff;
  text-transform: capitalize;
  font-size: 18pxpx;
}
.sid-menu > li > a:hover {
  color: #8bc1ff;
}
.sid-menu > li.open .sub-btn {
  rotate: 90deg;
}
.sid-menu > li.open > a {
  color: #8bc1ff;
}
.sid-menu > li > ul {
  display: none;
  padding-left: 17px;
  padding-top: 15px;
}
.sid-menu > li > ul > li {
  list-style: circle;
  color: #fff;
  margin-bottom: 10px;
}
.sid-menu > li > ul > li::marker {
  font-size: 20px;
}
.sid-menu > li > ul > li > a {
  color: #fff;
  text-transform: capitalize;
}
.sid-menu > li > ul > li > a:hover {
  color: #8bc1ff;
}
.sid-menu .sub-btn {
  color: #fff;
  position: absolute;
  right: -15px;
  top: -5px;
  width: 35px;
  height: 35px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-sidebar{
	background-color: #2368b8;
	padding: 20px 15px;
}
.page-sidebar h6{
	color: #fff;
	text-align: center;
}

.home-banner {
  min-width: calc(100vw - var(--sidebar-width));
  background-image: url(assets/images/bannerbg.jpg);
  background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
  height: 100%;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 80px;
}
.home-banner .ban-content {
  position: relative;
  z-index: 1;
  max-width: 535px;
}
.home-banner h1 {
  font-size: 100px;
  font-weight: 700;
  color: #195192;
  line-height: 1;
}
.home-banner h4 {
  color: #c4111a;
  font-size: 36px;
  font-weight: 600;
}
.home-banner .gary-img {
  position: absolute;
  bottom: 0;
  right: 30px;
  max-height: 90%;
}

.home-vitamin {
  background-image: url(assets/images/body-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
}

.img-top-left {
  position: relative;
  padding-top: 25px;
}
.img-top-left::after {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  left: -25px;
  background-color: #c4111a;
  z-index: -1;
}

.vit-box h6 {
  color: #0d294a;
}
.vit-box p {
  font-size: 18px;
  color: #5a6572;
}

.gary-product {
  padding: 20px;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.gary-product::after {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-color: #c4111a;
  position: absolute;
  left: 0;
  top: 0;
}
.gary-product img {
  position: relative;
  z-index: 1;
}

.key-box h6 {
  position: relative;
  color: #0d294a;
	padding-left: 30px;
}
.key-box h6::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: #c4111a;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 2px;
}

.home-cd {
  padding-bottom: 200px !important;
}

.home-product {
  margin-top: -140px;
}

.book-box {
  padding: 30px 25px;
  box-shadow: 0 0 35px #dbdbdb;
  height: 100%;
}
.book-box h6 {
  border-bottom: 3px solid #4774a8;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.list:not(.color) li a {
	color: #5a6572;
}
.list:not(.color) li a:hover{
	color: #2368b8;
}
.list li {
  position: relative;
  padding-left: 15px;
}
.list li:not(:last-child) {
  margin-bottom: 20px;
}
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #c4111a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.foot-cta .container {
  background-image: url(assets/images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -55px;
  position: relative;
}
.foot-cta h4 {
  text-align: center;
  color: #fff;
  font-weight: 300;
}
.foot-cta h4 a {
  font-weight: 600;
  color: #539cf0;
}
.foot-cta h4 a:hover {
  color: #0d294a;
}
.foot-cta h4 i {
  font-size: 25px;
  color: #539cf0;
}

.blog-box {
  border: 1px solid #ccd3db;
  margin-bottom: 30px;
}
.blog-box .date {
  display: inline-block;
  background-color: #c4111a;
  color: #fff;
  font-size: 16px;
  padding: 2px 5px;
}
.blog-box h6 {
  font-weight: 600;
  margin-top: 5px;
}
.blog-box .meta {
  font-size: 14px;
  font-weight: 500;
  color: #1c344f;
}
.blog-box .meta i {
  color: #2368b8;
}
.blog-box .meta a {
  color: #1c344f;
}
.blog-box .meta a:hover {
  color: #c4111a;
}
.blog-box a.read-more {
  color: #c4111a;
  font-size: 14px;
}
.blog-box a:hover {
  color: #2368b8;
}
.blog-box .post-info {
  padding: 20px;
  border-bottom: 1px solid #ccd3db;
}


.blog-box .post-cont {
  padding: 20px;
}
.blog-box .post-cont.excpt p {
  max-height: 200px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

}

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a, .nav-links span {
  padding: 8px 12px;
  border: 1px solid #d1d4d8;
  font-size: 15px;
}
.nav-links a:not(:last-child), .nav-links span:not(:last-child) {
  border-right: none;
}
.nav-links span {
  background-color: #2368b8;
  color: #fff;
}
.nav-links a:last-child, .nav-links a:first-child {
  color: #c4111a;
}


/*==========================================Contact Page=====================================*/
.cont-info{
	display: flex;
	align-items: center;
	gap: 60px;
}
.cont-info .cont-box{
	display: flex;
	gap: 20px;
}
.cont-info .cont-box .icn{
	min-width: 55px;
	height: 55px;
	box-shadow: 0 0 10px #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #c4111a;
	font-size: 25px;
}
.cont-info .cont-box span{
	font-size: 14px;
}
.cont-info .cont-box a{
	color: #0d294a;
	font-weight:  500;
}
.gary-contact{
	height: 100%;
}
.gary-contact img{
	border: 7px solid #c4111a;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
/* .contact-form{
	padding: 30px 0;
} */
.contact-form br{
	display: none;
}
.contact-form .wpcf7-not-valid-tip{
	font-size: 14px;
}
.wpcf7-response-output{
	margin-top: 20px !important;
}
.contact-form input,
.contact-form textarea{
	width: 100%;
	height: 100%;
	height: 50px;
	background: transparent;
	border: 1px solid #a2b3c6;
	padding: 15px 15px;
	outline: none;
	margin-top: 20px;
	color: #000;
	font-weight: 500;
}
.contact-form input[type="text"]{
	margin-top: 0;
}

.contact-form textarea{
	height: 80px;
	padding: 5px 15px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
	font-size: 15px;
	font-weight: lighter;
	color: #000;
	font-weight: 500;
	opacity: 1;
}
.form-help{
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	font-style: italic;
	color: #2368b8;
}
.art-box{
	box-shadow: 0 0 12px #ddd;
	position: relative;
}
.art-box figure{
	margin-bottom: 0;
}
.art-box figure img{
	width: 100%;
	height: 230px;
	object-fit: cover;
}
.art-box h6{
	padding: 22px 15px;
	color: #0d294a;
	position: relative;
}

.art-box h6::after{
	content: '\f061';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	position: absolute;
	right: 15px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #c4111a;
	color: #fff;
	font-size: 14px;
	top: 50%;
	transform: translatey(-50%);
}
.art-box .wp-block-button a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}


.search-modal .search-form{
	display: flex;
}

.search-modal input[type='search']{
	width: 100%;
	height: 50px;
	padding:  15px;
	outline: none;
}
.search-modal input[type='submit']{
	border:none;
	background-color: #000;
	height: 50px;
	color: #fff;
	border-radius: 0;
	padding: 0 15px;
	
}
.search-modal .modal-dialog{
	padding-top: 100px;
}
.search-modal .modal-content{
	border-radius: 0;
}
.search-modal .modal-body{
	padding:  40px 30px;
	position: relative;
}
.search-modal .modal-body .btn-close{
	position: absolute;
	top: 5px;
	right: 5px;
}
.breadcrumb{
	display: flex;
	align-items: center;
	gap: 5px;
}
.breadcrumb a,
.breadcrumb span{
	font-size: 14px;
}
.breadcrumb i{
	font-size: 14px;
}

.full-video iframe{
	width: 100%;
}

@media(max-width:991px){
	body{font-size: 16px;}
	h2{font-size: 30px;}
	h4{font-size: 25px;}
	.py{padding-top: 40px !important; padding-bottom: 40px !important;}
	.pt{padding-top: 40px !important;}
	.pb{padding-bottom: 40px !important;}
	.big-text{font-size: 20px; font-weight: 400;}
	
	.home-product{margin-top: 40px;}
	
	.head-right .social-foot{display: none;}
}

@media(max-width:767px){
	body{font-size: 16px;}
	h2{font-size: 30px;}
	h4{font-size: 25px;}
	.py{padding-top: 40px !important; padding-bottom: 40px !important;}
	.pt{padding-top: 40px !important;}
	.pb{padding-bottom: 40px !important;}
	.big-text{font-size: 20px; font-weight: 400;}
	.g-5, .gx-5{--bs-gutter-x: 1.5rem;}
	.g-5, .gy-5{--bs-gutter-y: 1.5rem;}
	.g-30{--bs-gutter-x: 1.5rem !important;}
	
	.foot-cta .container{margin-bottom: 0; background-size: cover;}
	.footer{padding: 30px 0;}
	
	.logo{min-width: auto; padding: 10px 0 10px 10px;}
	.logo img{max-width: 150px; }
	.head-search{height: 45px; width: 45px;}
	.shop-btn{padding-left: 10px; height: 45px;}
	.shop-btn span.icn{border-left: none; line-height: 45px; margin-left: 0; padding: 0 5px;}
	
	.sidebar-menu{width: 100%; max-width: none; padding: 20px; display: none;}
	.sidebar-page{display: none;}
	.sid-menu > li{margin-bottom: 10px;}
	.sid-menu > li > a{font-size: 18px;}
	.img-top-left::after {display: none;}
	.img-top-left{padding-top: 0px;}	
	.home-product{margin-top: 40px;}
	.cont-info{flex-wrap: wrap; gap: 20px;}
	.head-search span{display: none;}
}









/* 13-8-24 */
.shop-list{
z-index: 1;
}
@media (max-width: 1280px) {
	.g-30, .gx-5{
		--bs-gutter-x: 1.5rem !important;
		--bs-gutter-y: 1.5rem !important;
	}
}
@media (max-width: 1400px) {
	.home-banner{padding-left: 40px;}
	.home-banner h1{font-size: 60px;}
	.home-banner .ban-content{max-width: 400px;}
}
@media (max-width: 1200px) {
	.home-banner{padding: 30px; display: block; padding-bottom: 0; min-height: auto; width: 100%; background-repeat: no-repeat; background-size: cover;}
	.home-banner h1{font-size: 60px;}
	.home-banner .ban-content{max-width: 400px;}
	.home-banner .gary-img{position: relative; right: auto; width: 100%; max-width: 380px; max-height: auto; display: block; margin: 0 auto;}
}



.populist li{
	margin-bottom: 10px;
}

.ac-notice {
  color: #d3e6fc;
  font-size: 15px;
  display: flex;
  flex-direction: column;
}