@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html, body {
	padding:0;
	margin: 0;
	font-family: "PT Sans", sans-serif;
    font-weight: 400;
	font-size: 15px;
	margin-top: 0 !important;
}

html {
	margin-top: 0 !important;
}

img {
	max-width: 100%;
}
a {
	text-decoration: none;
}

ul{
    padding:0;
    margin: 0;
}

.button-style {
    color:#042A42;
    font-size: 19px;
    line-height: 21px;
    text-transform: capitalize;
    display:inline-block;
    padding: 16px 34px;
    border:1px solid transparent;
    border-radius: 11px;
    transition:all 0.5s ease-in-out;
    text-align: center;
}
.button-style svg {
    margin-left: 13px;
    transition:all 0.5s ease-in-out;
}

.outline-button {
    border-color:#042A42;
}
.outline-button:hover {
    color:#042A42;
}
.outline-button:hover svg path {
    fill:#042A42;
}
.outline-button:hover svg {
    transform: translateX(8px);
}

.fill-button {
    background: #042A42;
    color:#fff;
}

.fill-button svg path {
    fill:#fff;
}

.fill-button:hover {
    background: transparent;
    border-color:#042A42;
    color:#042A42;
}

.fill-button:hover svg path {
    fill:#042A42;
}

.fill-button:hover svg {
    transform: translateX(8px);
}

.fill-button-green {
    background: #A9CE38;
    color:#042A42;
}

.fill-button-green svg path {
    fill:#042A42;
}

.fill-button-green:hover {
    background: transparent;
    border-color:#A9CE38;
    color:#A9CE38;
}

.fill-button-green:hover svg path {
    fill:#A9CE38;
}

.fill-button-green:hover svg {
    transform: translateX(8px);
}

/*----header Start----*/

.main_header {
    padding: 35px 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu {
    margin-right: auto;
    margin-left: 35px;
    cursor: pointer;
}
.menu span {
    font-size: 14px;
    text-transform: uppercase;
    color:#042A42;
}

.header-cart {
    position: relative;
    z-index: 1;
}

#mini-cart-count {
    position: absolute;
    top: -6px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: #004990;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.bottom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #004990;
    z-index: 99;
    -webkit-clip-path: circle(0 at 100% 40px);
    clip-path: circle(0 at 100% 40px);
    transition: -webkit-clip-path .5s;
    transition: clip-path .5s;
    transition: clip-path .5s, -webkit-clip-path .5s;
}

.bottom-header.slide {
    -webkit-clip-path: circle(100%);
    clip-path: circle(100%);
}

.full-header-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.footer-header {
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 22px 0;
}
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 34px 0;
}

.menu-logo {
    margin-right: 83px;
}

.menu-logo img {
    filter: brightness(0) invert(1);
}

.menu-header .link {
    margin-right: auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}

.menu-product-list {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(367px, 1fr));
    gap:11px;
}

.menu-product-list li .inner {
    border-radius: 19px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 508px;
}

.menu-product-list li .inner:after {
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height: 345px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 74.57%);
    z-index:2;
}

.menu-product-list li .inner figure {
    margin-bottom: 0;
}

.menu-product-list li .inner figcaption {
    position: absolute;
    bottom:0;
    left:0;
    z-index: 5;
    padding: 33px 22px;
}

.menu-product-list li .inner figcaption h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 39px;
    color: #042A42;
}

.menu-product-list li .inner figcaption .woocommerce-Price-amount {
    font-weight: 700;
    font-size: 25px;
    line-height: 36px;
    color: #A9CE38;
}

.menu-product-list li .inner figcaption .button-style {
    font-size: 15px;
    padding: 10px 24px;
}

.menu-product-list li .inner figcaption .button-style svg {
    margin-left: 4px;
}

.address-meta-list {
    padding: 0 0 0 40px;
    margin: 0;
    list-style: none;
}

.address-meta-list li {
    margin-bottom: 50px;
}

.address-meta-list li h5 {
    font-weight: 700;
    font-size: 21px;
    line-height: 27px;
    color: #F2DB7E;
    margin-bottom: 9px;
}

.address-meta-list li a {
    font-weight: 400;
    font-size: 21px;
    line-height: 27px;
    color: #FFFFFF;
    display: block;
}

/*--- home page---*/

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-section:after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height: 201px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 88.38%);
    z-index: -1;
}

.hero-section_mobile {
 display: none;
}


.hero-heading {
    font-weight: 700;
    color:#004990;
    font-size: 47px;
    line-height: 61px;
    margin-bottom: 16px;
}

.hero-heading span {
    color:#A9CE38;
}

.hero-content {
    color:#626262;
    font-size: 20px;
    line-height: 33px;
}

.psp-section {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.home-psp-list {
    padding:0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap:14px;
    list-style: none;
}

.home-psp-list li {
    background: #EDEAE2;
    color: #042A42;
    font-size: 24px;
    line-height: 36px;
    padding: 27px 30px;
    border-radius: 17px;
    display: flex;
    gap: 13px;
    align-items: center;
}
.home-psp-list li p {
    margin-bottom: 0;
    line-height: 1.2;
}

.home-psp-list li:nth-child(2) {
    background: #F2DB7E;

}

.home-psp-list li:nth-child(3) {
    background: #A9CE38;
}

.home-psp-list li:last-child {
    background: #FB8686;
}

.benefits_section {
    padding-top: 99px;
    padding-bottom: 97px;
}

.section-heading {
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    color: #004990;
}

.content-style {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: #626262;
}

.benefits-list {
    padding:0;
    margin: 68px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap:22px;
    list-style: none;
}

.benefits-list li .inner {
    background: #FFF9E2;
    border-radius: 19px;
    padding:36px;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition:all 0.4s ease-in-out;
}
.benefits-list li:hover .inner {
    box-shadow: 0 0 12px rgb(0 0 0 / 12%);
}


.benefits-list li:nth-child(3):hover .inner figure:after {
    background: rgba(251, 134, 134, 0.5);
}

.benefits-list li:nth-child(2):hover .inner figure:after {
    background: rgba(160, 198, 84, 0.5);
}

.benefits-list li:hover .inner figure:after {
    background: rgba(242, 219, 126, 0.5);
}

.benefits-list li .inner h3 {
    color:#042A42;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
}

.benefits-list li .inner p {
    margin-bottom: 0;
    color:#042A42;
    font-size: 16px;
    line-height: 28px;
    
}

.benefits-list li .inner figure {
    width:66px;
    height:66px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2DB7E;
    border-radius: 50%;
    transition:all 0.5s ease-in-out;
}

.benefits-list li .inner figure:after {
    content:"";
    position: absolute;
    border-radius: 50%;
    top:50%;
    left:50%;
    width:89px;
    height: 89px;
    background: rgba(242, 219, 126, 0.17);
    z-index: -1;
    transform: translate(-50%, -50%);
    transition:all 0.5s ease-in-out;


}

.benefits-list li:nth-child(2) .inner {
    background: #F2FFCB;
}
.benefits-list li:nth-child(2) .inner figure {
    background: #A9CE38;
}

.benefits-list li:nth-child(2) .inner figure:after {
    background: rgba(160, 198, 84, 0.17);
    transition:all 0.5s ease-in-out;
}

.benefits-list li:nth-child(3) .inner {
    background: #FFEBEB;
}
.benefits-list li:nth-child(3) .inner figure {
    background: #FB8686;
}
.benefits-list li:nth-child(3) .inner figure:after {
    background: rgba(251, 134, 134, 0.17);
}

.benefits-list li:last-child .inner-last {
    background-color: #F4F4F4;
    background-image: url('../img/fill-line.svg');
    background-repeat: repeat-x;
    background-position: center center;
    border-radius: 19px;
    padding:36px;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition:all 0.4s ease-in-out;
}

.benefits-list li:last-child:hover .inner-last .fill-button{
    background: transparent;
    border-color: #042A42;
    color: #042A42;
}

.benefits-list li:last-child:hover .inner-last .fill-button svg path {
    fill:#042A42;
}

.benefits-list li:last-child:hover .inner-last .fill-button svg {
    transform: translateX(8px);
}

.image-content-section {
    background:#EDEAE2;
    border-top-left-radius:31px;
    border-top-right-radius:31px;
    padding: 73px 0;
    overflow: hidden;
}

.line-design {
    position: relative;
    z-index: 1;
}


.line-design:after{
    content:"";
    position: absolute;
    right:0;
    top:0;
    height:100%;
    background: url(../img/Group-14.svg);
    background-repeat:no-repeat ;
    background-size:cover;
    max-width: 377px;
    width:100%;
    z-index: -1;
    opacity: 0.6;
}

.line-design:before{
    content:"";
    position: absolute;
    left:0;
    top:0;
    height:100%;
    background: url(../img/left-line.svg);
    background-repeat:no-repeat ;
    background-size:cover;
    max-width: 377px;
    width:100%;
    z-index: -1;
    opacity: 0.6;
}

.product-custom-image {
    max-width: 699px;
    height: 556px;
    border-radius: 19px;
    overflow: hidden;
    flex:0 0 699px;
}

.product-custom-image img {
    width:100%;
    height: 100%;
    object-fit: cover;
}

.custom-product-shortcode {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-details-part {
    flex:1;
    padding-left: 67px;
    padding-right: 67px;
}

.product-details-part .product-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #042A42;
    margin-bottom: 30px;
}

.product-details-part .product-description {
    font-size: 16px;
    color: #042A42;
    line-height: 24px;
}

.product-details-part .product-description li {
    margin-bottom: 15px;
}

.product-details-part .product-price {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #042A42;
    margin-top: 29px;
}

.product-details-part .product-price del {
    color: #e30000;
    font-size: 20px;
}

.product-details-part .product-price ins {
    text-decoration: none;
}



.section-heading-area {
    padding: 0 66px;
    margin-bottom: 85px;
}

.section-heading-area .section-heading {
    color:#042A42;
}

.content-image-section {
    background:#F2DB7E;
    border-top-left-radius:31px;
    border-top-right-radius:31px;
    padding: 73px 0;
    overflow: hidden;
    margin-top: -25px;
}

.content-image-section .section-heading-area {
    text-align: right;
}

.content-image-section .custom-product-shortcode {
    flex-direction: row-reverse;
}

.review-section {
    padding: 60px 0;
}

.review-list {
    margin-top: 39px;
    padding-left: 159px;
}

.review-box-inner {
    background: #EDEAE2;
    padding: 38px 26px;
    border-radius: 19px;
}

.review-box-inner p{ 
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    color: #3B3B3B;
    margin-bottom: 26px;
}

.review-box-inner h3 {
    font-weight: 700;
    font-size: 19px;
    line-height: 25px;
    color: #000000;
}

.button-group {
    display: flex;
    align-items: center;
    margin-top: 29px;
}

.button-group .button-style {
    margin-right: 12px;
}

.navi_group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 43px;
    transform: translateX(-68px);
}

.navi_group .swiper-button-next, .navi_group .swiper-button-prev, .navi_group .swiper-pagination {
    position: static;

}

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

.navi_group .swiper-button-next, .navi_group .swiper-button-prev {
    width:41px;
    height: 41px;
    margin: 0;
}

.navi_group .swiper-pagination {
    width:auto;
    margin: 0 50px;
}

.navi_group .swiper-pagination span {
    width:13px;
    height: 13px;
    background: #042A42;
    opacity: 1;
}

.navi_group .swiper-pagination span.swiper-pagination-bullet-active {
    background: #A9CE38;
}

.blog-section {
    background: #A9CE38;
    border-top-left-radius: 31px;
    border-top-right-radius: 31px;
    padding: 73px 0;
    overflow: hidden;
}

.deep-blue-color {
    color: #042A42 !important;
}

.space-top {
    margin-top: 50px;
}

.blog-slide {
    background: #fff;
    overflow: hidden;
    border-radius: 19px;
}

.blog-slide .post-thumbnail {
    height: 312px;
    overflow: hidden;
}

.blog-slide .post-thumbnail img {
    width:100%;
    height: 100%;
    object-fit: cover;
    transition:all 0.4s ease-in-out;
}

.blog-slide .post-content {
    padding: 26px 21px;
}

.blog-slide .post-content .post-title,
.blog-slide .post-content .post-title a {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #042A42;
    margin-bottom: 18px;
}

.blog-slide .post-content .post-excerpt {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #042A42;
    margin-bottom: 32px;
}

.blog-slide .post-content .read-more {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #042A42;
    transition:all 0.4s ease-in-out;
}

.blog-slide .post-content .read-more svg {
    margin-left:5px;
    transition:all 0.4s ease-in-out;
}

.blog-slide:hover .read-more {
    color:#A9CE38;
}

.blog-slide:hover .read-more svg {
    transform: translateX(7px);
}

.blog-slide:hover .read-more svg path {
    fill:#A9CE38;
}

.blog-slide:hover .post-thumbnail img {
    transform:scale(1.1);
}


.navi_group__color-change .swiper-pagination span.swiper-pagination-bullet-active {
    background: #ffffff;
}

.navi_group__color-change {
    transform: translateX(0px);
}

.about-section {
    background: #FB8686;
    border-top-left-radius: 31px;
    border-top-right-radius: 31px;
    padding: 73px 0;
    overflow: hidden;
    margin-top: -25px;
}

.content-style {
    font-weight: 400;
    font-size: 21px;
    line-height: 33px;
    color: #042A42;
}

#powerTip {
    background: #EDEAE2 !important;
    padding: 6px !important;
     border-radius: 19px;
}

.custom-product-hubspot{
    background: #EDEAE2;
   
    overflow: hidden;
    max-width: 255px;
}

.product-hubspot-image {
    height: 211px;
    overflow: hidden;
    border-top-left-radius:12px;
    border-top-right-radius: 12px;
}

.product-hubspot-image img {
    width:100%;
    height:100%;
    object-fit: cover;
}

.custom-product-hubspot .product-details-part {
    padding: 13px 15px;
}

.custom-product-hubspot .product-details-part h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #042A42;
    margin-bottom: 10px;
}

.custom-product-hubspot .product-details-part .product-price {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #042A42;
    margin-top: 0;
}

.drag_element{
    z-index: 1;
}
.drag_element:before  {
    content: '';
    position: absolute;
    top: -13px;
    right: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 0 5px #042A42, 0 0 10px #042A42;
    animation: radar-glow 2s infinite;
}

@keyframes radar-glow {
  0% {
    transform: scale(1);
    opacity: 1;
}
100% {
    transform: scale(1.1);
    opacity: 0;
}
}

.wrap_svl_center_box .images_wrap img {
    border-radius: 19px;
}

.right-content-gaph {
    padding: 0 57px;
}

/*---footer---*/

.main_footer {
    background: #042A42;
    padding-top: 56px;
    color:#fff;
}

.footer-heading {
    font-weight: 700;
    font-size: 19px;
    line-height: 21px;
    color: #A9CE38;
    margin-bottom: 20px;
}

.footer-menu {
    padding:0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
    transition:all 0.4s ease-in-out;
}

.footer-menu li a:hover {
    color:#FB8686;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-newsletter {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 9px;
    padding: 3px;
    position: relative;
}

.footer-newsletter .input-style {
    height: 54px;
    border: none;
    width: 100%;
    padding: 0 66px 0 17px;
    color: #000;
}

.footer-newsletter .input-style:focus {
    outline: none;
    box-shadow: none;
}

.footer-newsletter input[type="submit"] {
    position: absolute;
    width: 133px;
    right: 4px;
    top: 50%;
    background: #F2DB7E;
    border-radius: 8px;
    height: 54px;
    transform: translateY(-50%);
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #042A42;
}

.footer-newsletter .form-group p {
    margin-bottom: 0;
}

.footer-newsletter .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -19px;
    font-size: 13px;
    font-weight: 700;
    left: 17px;
}

.footer_bottom {
    text-align: center;
    margin-top: 59px;
    padding-bottom: 30px;
}


/*----inner header----*/

.inner-banner {
    height: 324px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 49px;
}
.inner-banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height:100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 88.38%);
    z-index: -1;
}

.inner-heading {
    font-weight: 700;
    font-size: 41px;
    line-height: 53px;
    color: #004990;
}

.breadcrumb li {
    margin-right: 21px;
    position: relative;
}

.breadcrumb li a {
    color:#000;
    text-decoration: underline;
}

.breadcrumb li:after {
    content:"/";
    position:absolute;
    top:50%;
    right:-14px;
    transform:translateY(-50%);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #042A42;
}

.breadcrumb li:last-child:after {
    display: none;
}

/*--- PRODUCT DETAILS PAGE DESIGN---*/

.product-image-summary-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-page div.product .product-image-summary-wrapper div.images {
    float: none;
    max-width: 55%;
    flex: 0 0 55%;
    margin-bottom: 0;
}

.product-image-summary-wrapper .custom-product-left-wrapper {
    max-width: 55%;
    flex: 0 0 55%;
    margin-bottom: 0;
}

.product-image-summary-wrapper .custom-product-left-wrapper .product-description-shortcode {}

.summary .product-description-shortcode {
    display: none;
}

.product-description-shortcode {
    display: block;
    float: none;
    clear: both;
    margin-top: 80px;
    margin-bottom: 35px;
}
.product-description-shortcode h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 21px;
    color: #042A42;
    margin-bottom: 15px;
}

.woocommerce-page div.product .product-image-summary-wrapper div.summary {
    float: none;
    flex:1;
    padding-left: 53px;
    position: sticky;
    top: 10px;
    align-self: flex-start;
}

.woocommerce div.product .product-image-summary-wrapper .product_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #042A42;
    margin-bottom: 16px;
}

.woocommerce .star-rating::before {
    color: #F0D04F;
}
.woocommerce .star-rating span {
    color: #F0D04F;
}

.woocommerce-review-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #8D8D8D;
}
.woocommerce div.product .woocommerce-product-rating {
   margin-bottom: 26px;
}

.woocommerce-page div.product .product-image-summary-wrapper .price {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #042A42;
    margin-bottom: 29px;
}

.details-psp-list {
    padding: 28px 0 28px 0;
    margin: 0px 0 28px 0;
    list-style: none;
    border-bottom: 1px solid #C0C0C0;
    border-top: 1px solid #C0C0C0;
}

.details-psp-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.details-psp-list li:last-child{
    margin-bottom: 0;
}

.details-psp-list li span {
    width: 36px;
    margin-right: 18px;
}

.details-psp-list li p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #042A42;
    margin-bottom: 0;
}

.woocommerce-product-details__short-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #646464;
    margin-bottom: 30px;
}

.woocommerce-product-details__short-description li {
    margin-bottom: 10px;
}


.custom-quantity-wrapper {
    display: block;
}

.quantity {
    position: relative;
    display: flex;
    align-items: center;
}

.woocommerce div.product form.cart .custom-quantity-wrapper div.quantity {
    float: left;
    margin: 0 15px 0 0;
}

.quantity .qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #004990;
    -moz-appearance: textfield;
    order: 2;
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity .plus, 
.quantity .minus {
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    background: #004990;
    color: #ffffff;
    border: 1px solid #004990;
    line-height: 38px;
    user-select: none;
    padding: 0;
}

.quantity .minus {
    border-right: none;
}

.quantity .plus {
    border-left: none;
}

.woocommerce div.product .product-image-summary-wrapper form.cart .button {
    background: #042A42;
    border-radius: 11px;
    font-weight: 400;
    font-size: 21px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 11px 47px;
}

.woocommerce div.product .product-image-summary-wrapper form.cart .button:hover {
    background: #F2DB7E;
    color:#042A42;
}

.custom-product-image-grid {
    display: grid;
    align-items: stretch;
    column-gap: 14px;
    row-gap: 14px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(1fr,1fr);
    grid-template-areas: ". .";
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: visible;
    border-radius: 18px;
    background-image: none;
}

.custom-product-image-grid .grid-item.grid-item-full {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
    min-height: 535px;
    overflow: hidden;
    max-width: none;
    height: 535px;
}

.custom-product-image-grid .grid-item-full img,
.custom-product-image-grid .grid-item img {
    width:100%;
    height:100%;
    object-fit: cover;
}

.custom-product-image-grid .grid-item {
    height: 272px;
    overflow: hidden;
}

.static-content-above-related {
    position: relative;
    z-index: 1;
    border-top-left-radius: 31px;
    border-top-right-radius: 31px;
    padding: 73px 30px;
    overflow: hidden;
    min-height: 500px;
}

.static-content-above-related:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: url(../img/left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 377px;
    width: 100%;
    z-index: -1;
    opacity: 0.6;
}

.static-content-above-related:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: url(../img/right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 377px;
    width: 100%;
    z-index: -1;
    opacity: 0.6;
}

.speci-list {
    display: flex;
    align-items:top;
    flex-wrap: wrap;
    padding:0;
    margin: 0;
    list-style: none;
}

.speci-list li {
    max-width: 25%;
    flex:0 0 25%;
}

.speci-list li .inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #000000;
    padding: 0 15px;

}
.speci-list li .inner span {
    width:50px;
    height: 50px;
    flex: 0 0 50px;
}

.product-reviews-shortcode {
background: #f6f6f5;
    padding: 36px 45px 0;
    border-radius: 13px;
    margin-bottom: 35px;
}

.product-reviews-shortcode h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 21px;
    color: #042A42;
    margin-bottom: 31px;
}

.product-reviews-shortcode .cr-reviews-ajax-reviews h2 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 21px;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-add {
    font-size: 15px;
    border: none;
    padding: 0 22px;
    border-radius: 11px;
}

.is-large.wc-block-cart .wc-block-cart-items tr th {
    background: #ccc !important;
    padding: 12px 15px;
}

.is-large.wc-block-cart .wc-block-cart-items tr th.wc-block-cart-items__header-product {
    visibility: visible;
}

.is-large.wc-block-cart .wc-block-cart-items {
    border-left: 1px solid hsla(0, 0%, 7%, .11);
    border-right: 1px solid hsla(0, 0%, 7%, .11);
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    color: #004990;
    font-weight: 500;
}

.wp-block-woocommerce-cart-order-summary-block {
    border-left: 1px solid hsla(0, 0%, 7%, .11);
    border-right: 1px solid hsla(0, 0%, 7%, .11);
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}


.is-large.wc-block-cart .wc-block-cart__totals-title {
    background: #ccc !important;
    padding: 12px 17px !important;
}

.wc-block-cart .wc-block-cart__submit-container {}

.wc-block-cart .wc-block-cart__submit-container a {
    background: #042A42;
    color:#fff;
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    background: #042A42;
    color: #fff;
}

.is-medium table.wc-block-cart-items {
    border: 1px solid hsla(0, 0%, 7%, .11);
}

.is-medium table.wc-block-cart-items tr td {
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
    padding: 14px 23px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid {
    display: none;
}

.wp-block-woocommerce-empty-cart-block .wp-block-heading {
    display: none;
}

.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon {
    display: block;
}

.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: #042A42;
  color: #fff;
  border: none;
  border-radius: 11px;
}

.woocommerce-order-details__title, .woocommerce .woocommerce-customer-details .woocommerce-column__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 21px;
  color: #042A42;
  margin-bottom: 20px;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper {
    margin-top: 2em;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 21px;
    color: #042A42;
    margin-bottom: 20px;
}

.article_single {
    padding: 0px 0 50px 0;
    margin-top: -80px;
    position: relative;
    z-index: 4;
}

.related_post {
    background: #EDEAE2;
    border-top-left-radius: 31px;
    border-top-right-radius: 31px;
    padding: 73px 0;
}

.section_heading {
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    color: #004990;
    margin-bottom: 42px;
}

.blog-slide-related {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 18px;
}

.post-single-image {
    height: 500px;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.post-single-image img {
    height:100%;
    object-fit: cover;
    width:100%;
}

.single-page-title {
    font-weight: 700;
    font-size: 31px;
    line-height: 43px;
    color: #004990;
    margin-bottom: 20px;
}

.single-post .inner-heading, .single-post .breadcrumb {
    display: none;
}

.woocommerce div.product form.cart .variations select {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

.woocommerce div.product form.cart .variations select:focus {
    box-shadow: none;
    outline: none;
}
.woocommerce div.product form.cart .reset_variations {
    font-size: 0.8rem;
    color: #FB8686;
    font-weight: 800;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 31px;
}

.single_variation_wrap .single_variation {
    margin-bottom: 31px;
}

.header-phone {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-right: 13px;
    color: #004990;
    font-weight: 700;
}
.header-phone:hover {
    color:#042A42;
}
.header-phone svg {
    margin-right: 6px;
}

.main_footer .header-phone {
    flex-direction: row;
    color: #a9ce38;
}

.main_footer .header-phone svg path {
    stroke:#a9ce38;
}

/*---responsive----*/

@media(max-width:1400px) {
    .home-psp-list {
        grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    }

    .home-psp-list li {
        font-size: 20px;
        line-height: 24px;
    }

    .home-psp-list li span {
        width: 51px;
    }
    .menu-product-list {
        grid-template-columns: repeat(auto-fill, minmax(314px, 1fr));
    }
    .menu-product-list li .inner {
        height: 420px;
    }
    .menu-product-list li .inner figcaption h3 {
        font-size: 19px;
        line-height: 28px;
    }

    .menu-product-list li .inner figcaption .button-style {
        font-size: 14px;
        padding: 6px 14px;
    }
    .button-group {
        margin-top: 17px;
    }
    .section-heading {
        font-size: 37px;
        line-height: 51px;
    }
    .benefits_section {
        padding-top: 78px;
        padding-bottom: 70px;
    }
    .benefits-list {
        grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
        gap: 10px;
    }
    .benefits-list li .inner {
        padding: 27px;
    }
    .benefits-list li:last-child .inner-last {
        padding: 27px;
    }
    .benefits-list li .inner h3 {
        font-size: 22px;
        line-height: 25px;
    }
    .benefits-list li .inner p {
        font-size: 15px;
        line-height: 24px;
    }
    .button-style {
        font-size: 17px;
        line-height: 16px;
        padding: 16px 27px;
    }
    .product-custom-image {
        max-width: 617px;
        height: 556px;
        flex: 0 0 617px;
    }
    .content-style {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #042A42;
    }
    .right-content-gaph {
        padding: 0 23px;
    }
}

@media(max-width:1200px) {

    .menu-product-list {
        grid-template-columns: repeat(auto-fill, minmax(263px, 1fr));
    }

    .menu-product-list li .inner figcaption .button-group {
        flex-wrap: wrap;
        margin-right: 0;
    }

    .menu-product-list li .inner figcaption .button-style {
        margin-bottom: 10px;
    }

    .menu-product-list li .inner figcaption {
        padding: 16px 17px;
    }

    .home-psp-list {
        grid-template-columns: repeat(auto-fill, minmax(223px, 1fr));
    }
    .home-psp-list li {
        font-size: 17px;
        line-height: 19px;
        padding: 13px 24px;
    }
    .benefits-list {
        grid-template-columns: repeat(auto-fill, minmax(308px, 1fr));
    }
    .benefits-list li .inner h3 {
        font-size: 30px;
        line-height: 43px;
    }
    .benefits-list li .inner p {
        font-size: 19px;
        line-height: 24px;
    }

    .product-custom-image {
        max-width: 489px;
        flex: 0 0 489px;
        height: 478px;
    }

    .product-details-part {
        padding-left: 40px;
        padding-right: 40px;
    }
    .image-content-section {
        padding: 51px 0 80px;
    }
    .content-image-section {
        padding: 52px 0 73px;
    }
    .review-section {
        padding: 46px 0;
    }
    .blog-section {
        padding: 49px 0 72px;
    }
    .blog-slide .post-thumbnail {
        height: 198px;
    }
    .about-section {
        padding: 59px 0 51px;
    }
}

@media(max-width:992px) {

    .hero-section_mobile {
        min-height: 86vh;
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .hero-section_mobile:after {
        content:"";
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
        height: 272px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 58.38%);
        z-index: -1;
    }
    .hero-section {
        display: none;
    }

    .psp-section {
        margin-top: 0;
        padding-top: 52px;
    }

    .bottom-header {
        overflow-y: auto;
    }
  .home-psp-list {
    grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  }
  .section-heading {
    font-size: 32px;
    line-height: 44px;
  }
  .product-custom-image {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
    .product-details-part {
        padding-left: 0;
        padding-right: 0;
    }
    .section-heading-area {
        padding: 0;
        margin-bottom: 42px;
    }
  .right-content-gaph {
    padding: 0;
  }
    .product-image-summary-wrapper {
        flex-direction: column;
    }
    .product-image-summary-wrapper .custom-product-left-wrapper {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .product-image-summary-wrapper .custom-product-left-wrapper .product-description-shortcode {
        display: none;
    }
    .woocommerce-page div.product .product-image-summary-wrapper div.summary {
        flex: 0 0 100%;
        padding-left: 0;
        position: static;
        width: 100%;
        margin-top: 39px;
        margin-bottom: 0;
    }
    .speci-list li {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .speci-list li .inner {
        padding: 15px;
    }
    .static-content-above-related {
        padding: 24px 30px;
        min-height: 434px;
    }
    .summary .product-description-shortcode {
        display: block;
    }

    .is-medium table.wc-block-cart-items tr td.wc-block-cart-item__product {
        padding: 0 0 15px 0 !important;
    }

    .is-medium table.wc-block-cart-items tr:last-child td{
        border-bottom: none;
    }
    .wc-block-components-totals-wrapper {
        padding: 16px 23px !important;
    }
}

@media(max-width:768px) {
    .menu {
        margin-left: 15px;
    }
    .hero-heading br {
        display: none;
    }
    .hero-heading {
        font-size: 41px;
        line-height: 50px;
    }
    .section-heading {
        font-size: 28px;
        line-height: 37px;
    }
    .section-heading br {
        display: none;
    }
  .benefits_section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .product-custom-image {
    height: 385px;
  }
  .image-content-section {
    padding: 43px 0 75px;
  }

  .woocommerce ul.order_details li {
    margin-bottom: 18px;
  }
    .post-single-image {
        height: 353px;
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    .main_footer {
        text-align: center;
    }
    #mini-cart-count {
        top: -11px;
        right: -6px;
    }
    .section_heading {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 25px;
    }
    .related_post {
        padding: 36px 0;
    }
    .custom-product-image-grid .grid-item.grid-item-full {
        min-height: 396px;
        height: 396px;
    }
    .custom-product-image-grid .grid-item {
        height: 200px;
        overflow: hidden;
    }
    .main_footer .header-phone {
        justify-content: center;
    }

}

@media(max-width:481px) {
.hero-heading {
    font-size: 33px;
    line-height: 36px;
  }

  .hero-content br {
    display: none;
  }
 .home-psp-list {
    grid-template-columns: repeat(auto-fill, minmax(213px, 1fr));
  }
 .section-heading {
    font-size: 23px;
    line-height: 29px;
  }
    .review-box-inner p {
        font-size: 16px;
        line-height: 25px;
    }
  .logo img {
    width: 120px;
  }
    .menu-logo {
        margin-right: 29px;
    }

    .menu-logo img {
        width:120px;
    }
.address-meta-list {
  padding: 0;
}

.custom-product-image-grid .grid-item.grid-item-full {
  min-height: auto;
    height: auto;
}
.custom-product-image-grid .grid-item {
  height: 200px;
  overflow: hidden;
}
 .static-content-above-related {
    padding: 11px 7px;
  }
.speci-list li .inner span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.speci-list li .inner {
  font-size: 16px;
  line-height: 21px;
}
}

@media(max-width:441px) {
 .hero-heading {
    font-size: 27px;
    line-height: 34px;
  }
    .hero-content {
        color: #626262;
        font-size: 16px;
        line-height: 24px;
    }
    .benefits_section {
        padding-top: 39px;
        padding-bottom: 40px;
    }
    .benefits-list {
        margin: 37px 0 0 0;
    }
    .benefits-list li .inner {
        height: 250px;
    }
  .benefits-list li .inner h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .button-style {
    font-size: 16px;
    line-height: 16px;
    padding: 12px 23px;
  }
    .button-style svg {
        margin-left: 6px;
    }
    .product-details-part .product-title {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .product-custom-image {
        height: 324px;
    }
    .review-list {
    padding-left: 15px;
    }
  .content-image-section {
    padding: 40px 0 54px;
  }
 .review-section {
    padding: 36px 0;
  }
  .blog-section {
    padding: 35px 0 59px;
  }
  .about-section {
    padding: 46px 0 25px;
  }
.navi_group {
  transform: translateX(0px);
}
}

@media(max-width:433px) {
    .menu svg {
        width: 37px;
        height: 37px;
    }
    .menu span {
        display: none;
    }
}








