/**
 * Smooth scrolling on the whole document
 */
html {
    scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@font-face {
    font-family: 'theseasons';
    src: url('../fonts/theseasons-reg.eot');
    src: url('../fonts/theseasons-reg.eot?#iefix') format('embedded-opentype'),
        url('../fonts/theseasons-reg.woff2') format('woff2'),
        url('../fonts/theseasons-reg.woff') format('woff'),
        url('../fonts/theseasons-reg.ttf') format('truetype'),
        url('../fonts/theseasons-reg.svg#theseasons-reg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Allow to use the same font that the Canva.com one */
.aupot-font-1 {
    font-family: 'theseasons', sans-serif;
    font-weight: normal;
    font-style: normal;
}

/* The "Good to know" services boxes need to be longer to allow three rows of text and prevent responsive awkwardness  */
.aupot-services-box-extended {
    height: 380px;
}

/* Handle the height of the header on scroll to display the content below it */
.aupot-scroll-margin {
    scroll-margin-top: 100px;
}

/* Center vertically the menu button on mobile in the header */
@media only screen and (max-width: 991px) {
    .header-three .mean-container a.meanmenu-reveal {
        margin-top: -60px !important;
    }
}

/* Reduce logo size on small screens to prevent looooong header on mobile */
@media (max-width: 991px) {
    .logo img {
        width: 75px;
        height: auto;
    }
}

/* Position the slider section just below the header on mobile */
@media (max-width: 991px) {
    .slider-area {
        margin-top: 110px;
    }

    .breadcrumb-area {
        margin-top: 110px;
    }
}

/* Reduce font size in pricing sections on small screens to prevent text overflow */
@media (max-width: 767px) {
    .pricing-box {
        height: auto !important;
        min-height: auto !important;
    }

    .container.pt-120 {
        padding-top: 40px !important;
    }
    
    .pricing-box.mb-60 {
        margin-bottom: 30px !important;
    }
    
    .pricing-box .pricing-body li {
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pricing-box .pricing-body li > div:first-child {
        flex: 1;
        min-width: 0;
    }
    
    .pricing-box .pricing-body li > div:last-child {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .pricing-box .pricing-head h2 {
        font-size: 22px;
    }
    
    .pricing-box .pricing-head p {
        font-size: 13px;
    }
}