/* Enables smooth scrolling on the page */
html, body {
    scroll-behavior: smooth;  /* Adds a native smooth scroll effect */
}

:root {
    /* Color Variables */
    --primary-bg: #000000;
    --primary-text: #ffffff;
    --secondary-text: #D09614;
    --hover-color: #D09614;
}

/* Base Styles */
*, 
*::before, 
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Basic Elements */
html, 
body {
    background-color: var(--primary-bg);
    color: var(--primary-text);
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Khand", sans-serif;
    color: var(--primary-text);
}

p, span, div {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    font-family: "Jost", sans-serif;
    color: var(--primary-text);
}

.title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.title-secondary {
    font-size: 56px;
    line-height: 56px;
    font-weight: 500;
    color: var(--secondary-text);
}
.heading-big{
    font-size: 56px;
    line-height: 62px;
    font-weight: 400;
    text-transform: uppercase;
}
h3{
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
}
h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
.read-more{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}
img{
    max-width: 100%;
    height: auto;
}
/* Links */
a {
    color: var(--primary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

main{
    min-height: 100vh;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/*Header*/
.header-container {
    position: relative;
    width: 100%;
    z-index: 999;
}
.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.main-header .menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-header .menu li a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: "Khand", sans-serif;
}

.main-header .menu li a:hover {
    color: var(--hover-color);
}

.header-space-cover{
    width: 100%;
    height: 60px;
    display: block;
}

/*Home page*/

/* Hero Section */
.hero-section {
    height: 812px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url("../images/home-main-bg.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}
.hero-section .video-bg {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(100%) contrast(110%) brightness(90%);
    -webkit-filter: grayscale(100%) contrast(110%) brightness(90%);
    background-color: #ffffff;
}
.hero-section .gradient-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 0%,     /* Fully transparent */
                rgb(0, 0, 0) 100%        /* Solid black */
            );
}
.hero-section .lines-bg{
    width: 100%;
/*    height: calc(100% - 90px);*/
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url("../images/lines-bg.png");
/*    background-size: 100%;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section .container{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero-icon{
    margin-top: auto;
    margin-bottom: 50px;
}
.hero-title {
    max-width: 850px;
    width: 100%;
    margin: 0px auto;
}

.scroll-text {
    width: 100%;
    margin-top: auto;
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.line-parent {
    position: relative;
    width: 2px;
    height: 50px;
    overflow: hidden;
    margin: 20px auto 0px auto;
}

.line {
    position: absolute;
    width: 2px;
    height: 50px;
    animation: moveLines 2s infinite;
    left: 0;
}

.line-one {
    background-color: #D09614;
    top: -50px;
}

.line-two {
    background-color: #FFFFFF;
    top: 0;
}

@keyframes moveLines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

/* Optional: Add this class to hide on mobile if needed */
@media (max-width: 768px) {
    .hide-m {
        display: none;
    }
}
.home-main-section {
    position: relative;
}
.home-main-section .map-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/map-overlay.png");
    background-repeat: no-repeat;
    background-position: top right;
}

/* About Section */
.feature-about-section {
    padding: 150px 0px 100px 0px;
}
.feature-about-section .about-image{
    padding-right: 30px;
}
.feature-about-section .about-content {
    padding-left: 30px;
}
.w-400{
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Brand Section */
.feature-brand-section{
    position: relative;
    padding: 50px 0px;
}
.boat-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url("../images/boat-overlay.png");
    background-repeat: no-repeat;
    background-position: top left;
}

.feature-slider .slick-dots {
    bottom: -30px;
    display: flex;
    justify-content: center;
    gap: 120px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.feature-slider .slick-dots:after{
    content: "";
    height: 1px;
    width: 100px;
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    margin: auto;
    background-color: #D09614;
}
.feature-slider .slick-dots li {
    margin: 0 5px;
}

.feature-slider .slick-dots li button {
    background-color: #333132;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    height: 20px;
    outline: none;
    padding: 0;
    width: 20px;
    border: 1px solid #D09614;
}
.feature-slider .slick-dots li button:before{
    display: none;
}

.feature-slider .slick-dots li.slick-active button {
    background-color: #D09614;
}

.slide {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.slide.slick-active {
    opacity: 1;
    transform: translateX(0);
}
.bottel-brand-label img{
    max-width: 100%;
	width:100%;
}
.feature-brand-section .bottel{
    text-align: center;
}
.feature-brand-section .bottel img{
    display: inline-block;
}
/* Stats Section */
.feature-stats-section {
    position: relative;
    padding: 80px 0;
}
.feature-stats-section .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.20;
    background-image: url("../images/home-feature-infra-bg.png");
    background-attachment: fixed;
    background-size: cover;
}
.feature-stats-section .container{
    position: relative;
}
.stats-grid {
    text-align: center;
}
.stats-grid > .row {
    padding: 0px;
    margin: 0px;
}
.stats-grid > .row:first-child{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D09614;
}

.stats-grid > .row > div:first-child .stat-item {
    border-right: 1px solid #ffffff;
}
.stats-grid > .row > div:last-child .stat-item {
    border-right: 0px;
}
.stat-number {
    font-size: 56px;
    line-height: 62px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Khand", sans-serif;

}
.stat-number sub{
    font-size: 17px;
    margin: 0px;
    bottom: 0px;
}
.stat-label {
    font-size: 18px;
    line-height: 22px;
}
.feature-stats-section .stats-grid > .row:first-child{
    border-top: 1px solid #D09614;
    padding-top: 30px;
    margin-top: 30px;
}
/* CTA Section */
.home-featured-parallax {
    height: 700px;
    position: relative;
}
.home-featured-parallax .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: url("../images/tbd-home-parallax.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.home-featured-parallax .container {
    height: 690px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
}

.home-featured-parallax h2 {
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
}

.read-more-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--hover-color);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/*Our story*/
#our-story {
    position: relative;
    overflow: hidden;
}
#our-story .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/our-story-feature-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
.our-story-feature-row{
    padding-top: 50px;
    padding-bottom: 50px;
}
.our-story-feature-row .text{
    border-top: 1px solid #D09614;
    border-bottom: 1px solid #D09614;
    padding: 15px 0px;
    margin-bottom: 50px;
    margin-left: -330px;
}
.our-story-feature-row .text p{
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    font-family: "Khand", sans-serif;
    text-transform: uppercase;
    margin: 0px;
}
.our-story-team {
    padding-top: 50px;
}
.our-story-team .title{
    font-size: 42px;
    line-height: 62px;
    font-weight: 700;
    position: relative;
    margin-bottom: 50px;
}
.our-story-team .title:after{
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    position: absolute;
    left: -50%;
    right: -50%;
    margin: 0px auto 0px auto;
    background-color: #D09614;
}
.team-mem{
    margin-bottom: 50px;
}
.team-mem img{
    max-width: 272px;
    width: 100%;
}
@media(max-width: 480px){
    .team-mem img{
        max-width: 100%;
    }
}
.team-mem h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
}
.team-mem .img{
    position: relative;
    margin-bottom: 20px;
    line-height: 0px;
    overflow: hidden;
}
.team-mem h3:after{
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    position: absolute;
    left: 0px;
    background-color: #D09614;
}
.team-mem p{
    font-size: 16px;
    line-height: 20px;
}
/*Our Brand*/
#our-brand{
    position: relative;
    overflow: hidden;
}
#our-brand .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/our-brand-feature-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
.our-brand-bottle-container{
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
}
#brand-1{
    padding-top: 100px;
}
#brand-1 .row{
    flex-direction: row-reverse;
}
#brand-1 .row .text-col{
    text-align: right;
}
#brand-2{
    padding-top: 100px;
}
/*Product page*/
.product-entry{
    display: flex;
    position: relative;
    justify-content: space-between;
}
.entry-content{
    max-width: 520px;
    width: 100%;
}
.tagline-text{
    max-width: 220px;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}
.bottel-image-wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
}
body.page-template-55-north-whisky .bottel-image-wrap{
	top: 50px;
}
.product-entry .title-secondary{
    font-size: 48px;
    line-height: 52px;
}

.icon-text-col-wrap{
    border-top: 1px solid #D09614;
    border-bottom: 1px solid #D09614;
    padding: 20px 0px;
    margin: 30px 0px;
}
.icon-row{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.icon-row .icon{
    min-width: 55px;
}
.icon-col{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cocktail-col .img{
    line-height: 0px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.cocktail-col h3{
    text-transform: uppercase;
}
.cocktail-col p{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
}

/*Our Infra*/
#our-infra{
    position: relative;
    overflow: hidden;
}
#our-infra .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/our-infra-feature-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}

/*Product Page*/
#product-entry-wrapper{
    position: relative;
}

/* 80 rum */
#rum-80-east{
    position: relative;
}
#rum-80-east .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/rum-80-east-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
}

#rum-80-east #product-entry-wrapper .overlay-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/rum-80-east-bg-2.png");
    background-repeat: no-repeat;
    background-position: left center;
}

/*55 north*/
#whisky-55-north {
    position: relative;
}
#whisky-55-north .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/whisky-55-north-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
}
#whisky-55-north #product-entry-wrapper .overlay-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/boat-overlay.png");
    background-repeat: no-repeat;
    background-position: left center;
}

/*Pages*/
#site-content .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../images/contact-ud-feature-bg.jpg);
    background-repeat: no-repeat;
    background-position: top right;
}
.default-page-wrapper{
    max-width: 800px;
}
/*Contact us*/
#contact-us {
    position: relative;
    overflow: hidden;
}
#contact-us .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/contact-ud-feature-bg.jpg");
    background-repeat: no-repeat;
    background-position: top right;
}

/*Age Verification popup*/
#age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 1000;
}
#age-verification-popup .bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("../images/bg-age-verification.jpg");
    background-position: right center;
    background-size: cover;
}

.ambient-movement {
  animation: ambientMove 30s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes ambientMove {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  25% {
    transform: scale(1.05) translate(1%, 1%);
  }
  50% {
    transform: scale(1.1) translate(-1%, 1%);
  }
  75% {
    transform: scale(1.05) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}
#age-verification-popup .bg-image .boat-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url("../images/boat-overlay.png");
    background-repeat: no-repeat;
    background-position: left center;
}
.popup-content, #underage-message {
    max-width: 450px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.popup-content .sp, #underage-message .sp{
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 5px;
}
.popup-content h2,
.popup-content p{
    margin: 0px;
}
#age-verification-popup .logo img {
    width: 80px;
}

#age-verification-popup .buttons {
    display: flex;
    justify-content: center;
}

#age-verification-popup .buttons button {
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    color: white;
    border: 1px solid #D09614;
    padding: 17px 50px;
    cursor: pointer;
    transition: background 0.3s;
}
#age-verification-popup .buttons button:first-child{
    border-right: 0.5px solid #D09614;;
}
#age-verification-popup .buttons button:last-child{
    border-left: 0.5px solid #D09614;;
}
#age-verification-popup .buttons button:hover {
    background: #D09614;
}

#age-verification-popup .disclaimer {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #58595B;
}
#age-verification-popup .hidden {
    display: none;
}


/*Footer*/
.footer-container {
    width: 100%;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}


/* Footer Navigation Styles */
.footer-nav {
    margin: 0px 0px 50px 0px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-menu li a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: "Khand", sans-serif;
}

.footer-menu li a:hover {
    color: var(--hover-color);
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.footer-links a,
.footer-links .copyright,
.footer-links .separator{
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #ABB4C4;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.website-by,
.website-by a{
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #ABB4C4;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}



/* Animation Classes */
.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Keyframes */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1150px) {
    .product-entry .entry-content {
        max-width: 400px;
    }
    .bottel-image img{
        max-width: 480px;
    }
}

@media (max-width: 1024px) {
    .product-entry .bottel-image-wrap {
        text-align: right;
        padding-right: 20%;
    }
    .product-entry .bottel-image img{
        max-width: 300px;
    }
}



/* Mobile styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger-menu span {
        width: 25px;
        height: 3px;
        background-color: #d09614;
        margin: 2px 0;
        transition: all 0.3s ease;
    }

    .hamburger-menu {
        display: flex;
    }

    body .main-header .menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        gap: 0px;
        background-color: #000000;
        flex-direction: column;
        padding: 100px 20px 80px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    body .main-header .menu.active {
        right: 0;
    }

    .menu li {
        margin: 15px 0;
    }

    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /*Home*/
    .hero-section{
        height: 680px;
    }
    .feature-about-section .about-content{
        padding: 0px;
        margin-top: 15px;
    }
    .stats-grid {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .product-entry{
        display: block;
        height: auto !important;
    }
    .product-entry .bottel-image-wrap{
        text-align: left;
        padding-right: 0px;
        position: relative;
    }
    .product-entry .bottel-image img{
        max-width: 100%;
    }

    .our-story-feature-row .text {
        margin-left: 0px;
    }
    .home-featured-parallax{
        height: 500px;
    }
    .home-featured-parallax .container{
        height: 500px;
        padding-top: 100px;
        padding-bottom: 0px;
    }
}

@media (max-width: 640px) {
	/*.feature-brand-section .bottel-brand-label{
        display: none;
    }
    .feature-brand-section .bottel img {
        width: 170px;
    } */
    .home-featured-parallax h2.heading-big {
        font-size: 38px;
        line-height: 42px;
    }
}