 
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 42px;
  --fs-4xl: 56px;
  --fs-5xl: 72px;
  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.6;
  --ls-tight: -0.02em;
  --ls-wide: 0.05em;
  --ls-extra-wide: 0.12em;
  --color-primary: #0f2347;
  --color-secondary:#fd8e54;
  --text-heading:#0f2347;
  --text-body: #5f6b7a;
  --text-light: #8d99ae;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-soft: #f3f5f7;
  --bg-dark: #0f2347;
  --border-light: #e5e8ed;
  --border-medium: #d6dbe2;
  --btn-primary-bg: var(--color-primary);
  --btn-primary-text: var(--text-white);
  --btn-secondary-bg: transparent;
  --btn-secondary-text: var(--color-primary);
  --btn-secondary-border: var(--color-primary);
  --shadow-card: 0 10px 30px rgba(15, 35, 71, 0.06);

  --gradient-primary: linear-gradient(
    135deg,
    #0f2347 0%,
    #183463 100%
  );

  --gradient-light: linear-gradient(
    180deg,
    #f8f9fb 0%,
    #eef2f5 100%
  );
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.3s ease;
  --container-width: 1280px;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-heading);
}

h1, .h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

h2, .h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
}

h3, .h3 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
}

h4, .h4 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
}

h5, .h5,
h6, .h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
}

h5, .h5 {
  font-size: var(--fs-xl);
}

h6, .h6 {
  font-size: var(--fs-lg);
}
p {
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-body);
}
.text-large {
  font-size: var(--fs-md);
}

.text-small {
  font-size: var(--fs-sm);
}

.text-xs {
  font-size: var(--fs-xs);
}
.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-extra-wide);
  color: var(--color-secondary);
}
button,
.btn,
.nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

body{
    font-size:16px;
    padding-top:0;
}

.container{
    padding:0 60px;
}

.site-content,
#primary{
    padding:0;
}

#primary{
    max-width:1600px;
    width:100%;
}

header.entry-header,
.footer-bottom{
    display:none;
}
/* =========================================
       TOP BAR
    ========================================= */

    .top-bar {
      background: var(--bg-light);
      border-bottom: 1px solid var(--border-light);
      padding: 8px 0;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .top-bar-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .top-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--color-primary);
      font-size: var(--fs-sm);
      font-weight: var(--fw-medium);
      white-space: nowrap;
      transition: var(--transition-fast);
    }

    .top-item:hover {
      color: var(--color-secondary);
    }

    .top-item svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: currentColor;
    }
/* ==========================================
   Header
========================================== */

.site-header{
    background:#fff;
}

.site-identity{
    padding:10px 0;
    display:flex;
    align-items:center;
}

.site-header .site-title-wrap{
    flex:0 0 auto;
    max-width:20%;
}

.site-header .top-navigation-right{
    flex:1;
    max-width:80%;
    display:flex;
    justify-content:flex-end;
}

/* Logo */

.custom-logo-link img{
    display:block;
    max-width:150px;
    transition:all 0.3s ease-in-out;
}

/* Sticky Header */

#masthead{
    position:relative;
    width:100%;
    z-index:9999;
    transition:all 0.4s ease-in-out;
}

#masthead.sticky-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    animation:smoothSticky 0.4s ease-in-out;
}

#masthead.sticky-header .custom-logo-link img{
    max-width:100px;
}

#masthead.sticky-header .main-navigation ul li{
    font-size:16px;
}

body.header-space{
    padding-top:110px;
}
.col-with-icon .wpb_wrapper p {
    line-height: 1.3;
}.col-with-icon:after {
    height: 35px;
    width: 2px;
    background: #f6f6f7;
    content: "";
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
}
.col-with-icon:last-child:after {display:none;}

.col-with-icon .wpb_wrapper p {
    line-height: 1.3;
}

.col-with-icon {
    position: relative;
}

.col-with-icon:after {
    height: 35px;
    width: 2px;
    background: #f6f6f7;
    content: "";
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
}

.brands-col {}

.brands-col .vc_column-inner>.wpb_wrapper {
    position: relative;
    overflow: hidden;
}

.brands-col .vc_column-inner:after {}

.brands-col .vc_column-inner>.wpb_wrapper:after {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    background: #001a3b17;
    top: 0;
    left: 0;
    bottom: auto;
    z-index: 1;
    right: 0;
    transition: 0.5s ease-in-out;
}

.brands-col .vc_column-inner>.wpb_wrapper>div {
    position: relative;
    z-index: 2;
}

.brands-col:hover .vc_column-inner>.wpb_wrapper:after {
    height: 100%;
    width: 100%;
     0;
    transition: 0.5s ease-in-out;
    bottom: 0;
}
.banner-content {
    padding-right: 18%;
}
@keyframes smoothSticky{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}
#page {
    padding-top: 0;
}
/* ==========================================
   Navigation
========================================== */

.main-navigation .menu-item a{
    position:relative;
}

.site-header .main-navigation .menu-item a{
    margin-bottom:0;
}

.main-navigation .menu-item a:before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--color-secondary);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.main-navigation .menu-item a:hover:before,
.main-navigation .menu-item .current_page_item.current-menu-item a:before{
    transform:scaleX(1);
}
.site-header .main-navigation .menu-item a:hover{
	color:var(--color-secondary);
}

/* Book Button */

li.book-btn.menu-item{
    padding:0;
}

.site-header .main-navigation li.book-btn.menu-item a{
    padding:7px 15px;
    background:var(--primary-color);
    border-radius:10px;
    color:#fff;
    transition:0.3s ease-in-out;
}

.site-header .main-navigation li.book-btn.menu-item a:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(1,30,63,0.15);
}

/** banner css **/
.banner-home{
  position: relative;
  overflow: hidden;
}
.banner-home::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(248, 249, 251, 0.98) 0%,
    rgba(248, 249, 251, 0.92) 22%,
    rgba(248, 249, 251, 0.75) 40%,
    rgba(248, 249, 251, 0.35) 60%,
    rgba(248, 249, 251, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.banner-home > * {
  position: relative;
  z-index: 2;
}
.banner-home {
    background-position: 100% 15%!important;
}


/** banner bottom bar **/
.col-with-icon>.vc_column-inner>.wpb_wrapper {
    display: flex;
	gap:10px;
}
.col-with-icon>.vc_column-inner>.wpb_wrapper svg {
	width:30px;
	height:30px;
}
.cstm-btn-outline a.vc_general.vc_btn3 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary)!important;
  transition: color 0.4s ease, border-color 0.4s ease;
  text-transform:uppercase;
}

.cstm-btn-outline a.vc_general.vc_btn3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.cstm-btn-outline a.vc_general.vc_btn3:hover::before {
  transform: scaleX(1);
}

.cstm-btn-outline a.vc_general.vc_btn3:hover {
  color: var(--text-white)!important;
}
.cstm-btn a.vc_general.vc_btn3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  min-width: 140px;
  text-transform:uppercase;
}

.cstm-btn a.vc_general.vc_btn3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.cstm-btn a.vc_general.vc_btn3:hover::before {
  transform: scaleX(1);
}

.cstm-btn a.vc_general.vc_btn3:hover {
  color: var(--text-white);
  border:1px solid var(--color-secondary);
}
.subheading-top p {
    color: var(--color-secondary);
}
.brands-col.vc_column_container>.vc_column-inner {
    padding-left: 10px;
    padding-right: 10px;
}
.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper {
    background: var(--bg-light);
    padding: 15px;
}
.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper .wpb_text_column {
    min-height: 110px;
}
.text-btn a.vc_general.vc_btn3 {
    background-image: none!important;
    text-transform: uppercase;
    padding-left: 0;
    padding-right:20px!important;
}
.text-btn a.vc_general.vc_btn3:hover{
	color:var(--color-secondary)!important;
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3 {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary)!important;
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3::before {
  background:var(--color-secondary);
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3:hover {
  color: var(--text-white)!important;
}
.why-choose-alpine svg {
    width: 30px;
    height: 30px;
    fill: #0f2347;
}
.why-choose-alpine .wpb_content_element{
	margin-bottom:15px;
}
.icon-top-block h5 {
    font-size: 16px;
	color:var(--color-primary);
}
.right-col-review:before {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2026/06/brushing.png);
    width: 100%;
    height: 700px;
    background-position: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -290px;
    left: -45px;
}
.review-box-col>.vc_column-inner p{
	color:var(--color-primary);
}
.review-box-col>.vc_column-inner {
    background: #fff;
    padding: 24px!important;
    border-radius: 10px;
}
.review-box-col.wpb_column {
    width: 60%;
    float: right;
	top:100px;
}
.review-box-col .star-rating {
  display: flex;
  gap:2px;
}
.review-box-col .star {
  width:18px;
  height:18px;
  fill: var(--color-secondary);
}

/* ==========================================
   Footer
========================================== */

.site-footer{
    background:var(--color-primary) !important;
}

.footer-widgets{
    margin-bottom:0;
}

.footer-widgets .footer-column{
    padding-top:3%;
}

.footer-column .widget_media_image{
    width:250px;
}

.footer-column .widget-title{
    color:#fff;
}

.footer-widgets ul li{
    display:flex;
}

.footer-widgets ul li a{
    display:flex;
    gap:10px;
    color:#fff;
    position:relative;
}

.footer-widgets ul li a:hover{
    color:#fff;
    text-decoration:none;
}

.footer-column .menu-item a:before{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:100%;
    height:2px;
    background:#fff;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.footer-column .menu-item a:hover:before,
.footer-column .menu-item.current_page_item.current-menu-item a:before{
    transform:scaleX(1);
}

.footer-column .contact__list li a{
    transition:0.3s ease-in-out;
}

.footer-column .contact__list li a:hover{
    opacity:0.8;
}

.footer-column .wp-block-social-link:hover{
    transform:none;
}

ul.contact__list img{
    filter:brightness(0) invert(1);
}
.footer-column .widget-title {
    color: #fff;
}
.site-footer .widget-title {
    font-size:20px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
	font-family:var(--font-body);
}
.text-btn a.vc_general.vc_btn3 .vc_btn3-icon{
   right:0px!important;
}
.wp-block-social-links .wp-block-social-link.wp-social-link {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: var(--color-secondary);
	transition:0.3s ease-in-out;
}
.wp-block-social-links .wp-block-social-link.wp-social-link:hover {
   opacity:0.8;
}


@media(max-width:1200px){
	.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper .wpb_text_column {
		min-height: 150px;
	}
	.text-btn a.vc_general.vc_btn3 {
		padding-right: 16px!important;
		font-size: 12px!important;
	}
	.text-btn a.vc_general.vc_btn3 .vc_btn3-icon{
	   font-size: 12px!important;
	}
	.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper {
		padding: 12px;
	}
	.top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none; 
    scrollbar-width: none;   
}

.top-bar-wrapper::-webkit-scrollbar {
    display: none;             
}
}
@media(max-width:1024px){
	.col-with-icon:after {

    right: 10px;
  
}
h1, .h1{font-size: var(--fs-4xl);}
.banner-content {
    padding-right: 10%;
}
}


@media screen and (max-width: 1000px) {
#masthead.sticky-header .custom-logo-link img {
    max-width: 120px;        margin-left: 0;
}
.site-header.main-header .mobile--menu-wrap .container .site-identity.clear {
    padding: 0;
}

.site-header.main-header .drawer .drawer-navigation ul li {
 
    border-bottom: solid 1px rgb(0 0 0 / 20%);
    
}
.site-header.main-header  .drawer-menu-explore {
    background: #eff2f5!important;
   
}
.site-header.main-header .drawer .drawer-navigation a {
    color: #0b2f5b;
}
.site-header.main-header .mobile--menu-wrap {display:flex; flex-direction:row-reverse; padding:0 15px;        align-items: center;	}
.site-header.main-header .mobile--menu-wrap .mobile-navigation {        top: 26px; position:absolute; right:15px; width:auto; z-index:999; background:none; padding:0px 0;}
.site-header.main-header .mobile--menu-wrap .site-title-wrap {max-width:180px;}
.sticky-header.site-header.main-header .mobile--menu-wrap .mobile-navigation {
    top: 18px;
}
.site-header.main-header .mobile--menu-wrap .container {padding:0 !important; max-width:100% !important; width:100%;}
.site-header.main-header .mobile--menu-wrap .drawer-wrap {width:100% !important; position:absolute; left:0; right:0;        top: -20px;}
.site-header.main-header .mobile-navigation button.menu-toggle.button-toggle {padding:0px !important; color:#001938  !important; font-size:18px; font-weight:400; text-decoration:none; background:transparent; transition:0.5s ease-in-out;}
.site-header.main-header drawer .menu-item-has-children .toggle-sub { 
    background: #transparent!important;
 
}
.site-header.main-header .drawer-menu-explore {        padding: 110px 15px 30px 15px;}
.top-navigation .header-top {display:none;}
.site-header.main-header {padding:0px 0;}


.site-header.main-header .site-title-wrap {top:-6px;}

.grad-bg .col-with-icon {
    max-width: 48%;width: 48%;
}.grad-bg .col-with-icon:last-child {
    max-width: 100%;width: 100%;
    align-items: center;
}

.grad-bg {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
}
.grad-bg .col-with-icon:nth-child(2):after, .grad-bg .col-with-icon:nth-child(4):after {
    display: none;
}

}


@media (max-width: 991px) {
.col-with-icon:after {
        right: 0px;
    }
  h1,
  .h1 {
    font-size: 48px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 34px;
  }
.top-bar-wrapper {
    justify-content: center;
 }
.benefits-row .brands-col {
    width: 33.33%;
    margin-bottom: 20px;
}
.vc_row.why-choose-alpine {
    flex-direction: column;
    display: flex;
}
.wpb_column.vc_column_container.vc_col-sm-8 {
    width: 100%;
}
.right-col-review.wpb_column.vc_column_container.vc_col-sm-4 {
    width: 100%;
}
.review-box-col.wpb_column {
    width: 60%;
    float: left;
    top: 0;
    left: 20px;
}
.right-col-review:before {
    height: 610px;
	left: 0;
}
.why-choose-alpine.space-section {
    padding-top: 40px !important;
}
.benefits-row.premium-section.space-section {
    padding-top: 40px !important;
    padding-bottom: 40px!important;
}.footer-column .widget_media_image {
    width: 200px;
}

}

@media (max-width: 767px) {

  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 34px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  body {
    font-size: 15px;
  }
      .top-item svg {
        width: 18px;
        height: 18px;
      }
.right-col-review:before {
    height: 550px;
    bottom: -220px;
    left: 0;
}
.benefits-row .brands-col {
    width: auto;
    margin-bottom: 20px;
}
.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper .wpb_text_column {
		min-height:auto; 
	}
	.text-btn a.vc_general.vc_btn3 {
    font-size: 14px!important;
}
.icon-top-block {
    margin-bottom: 20px;
}
.icon-top-block h5 {
    margin-bottom: 10px;
}
.right-col-review.wpb_column.vc_column_container.vc_col-sm-4 {
    padding-bottom: 325px;
}
.col-with-icon>.vc_column-inner>.wpb_wrapper br {
    display: none;
}
.col-with-icon>.vc_column-inner>.wpb_wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}
.banner-home.home-hero {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}.banner-content.wpb_column {
    padding-right: 8% !important;
    max-width: 428px;
}
.banner-home.home-hero  .blank--box {
    display: none;
}.col-with-icon .wpb_wrapper p {
    line-height: 1.3;
    font-size: 14px;
}.benefits-row.premium-section .vc_btn3-container.cstm-btn-outline.orange-btn {
    margin-left: 0 !important;
}.class-block.vc_row.wpb_row {
    display: flex;
    flex-wrap: wrap;
}

.class-block.vc_row.wpb_row .brands-col {
    flex: 48%;
}
}


@media (max-width:575px) {
.banner-content.wpb_column {
        padding-right: 16% !important;
    }
    h1, .h1 {
        font-size: 30px;
    }.class-block.vc_row.wpb_row .brands-col {
    flex: 100%;
}
}


@media (max-width: 480px) {
	  .review-box-col.wpb_column {
		width: 90%;
		float: left;
		top: 0;
		left: 20px;
	}.cstm-btn-outline.brnd-btn {
    margin-left: 0 !important;
}

}

@media (max-width: 414px) {
.grad-bg .col-with-icon {
    max-width: 48%;width: 48%;
}.grad-bg .col-with-icon:last-child {
    max-width: 100%;width: 100%;
    align-items: center;
}.col-with-icon:after{display:none !important;}
}