*,
:after,
:before {
    box-sizing: border-box;
}

:root {
    --theme-colour: #8ABB6C;
    --common-colour: #DDDEAB;
    --gradient-colour-left: linear-gradient(to left, #DDDEAB, #8ABB6C);
    --gradient-colour-right: linear-gradient(to right, #8ABB6C, #DDDEAB);
    --white-colour: #fff;
    --paragraph-colour: #505050;
    --paragraphLight-colour: #ECECEC;
    --title-colour: #0C0C20;
    --bs-font-all-sans-serif: 'Sharp Sans TRIAL';
    --main-container: 1620px;
    --container-gutters: 24px;
}

.themecolor_text {
    color: var(--theme-colour);
}

.themecolor_bg {
    background-color: var(--theme-colour);
}

.paragraphLight_text {
    color: var(--paragraphLight-colour);
}

.paragraphLight_bg {
    background-color: var(--paragraphLight-colour);
}

.paragraph_text {
    color: var(--paragraph-colour);
}

.paragraph_bg {
    background-color: var(--paragraph-colour);
}

body,
html {
    font-family: var(--bs-font-all-sans-serif);
    overflow-x: hidden;
}

.form-control:focus {
    border-color: var(--theme-colour);
}

.form-select:focus {
    border-color: var(--theme-colour);
}

p {
    font-size: 14px;
    line-height: 24px;
    color: var(--paragraph-colour);
    margin: 0;
    font-weight: 400;
    font-family: var(--bs-font-all-sans-serif);
}

@media (width <=768px) {
    .copyright_nav li a {
        font-size: 12px;
    }
}

a {
    color: var(--paragraph-colour);
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    font-family: var(--bs-font-all-sans-serif);
    text-decoration: none;
    transition: all .6s;
}

@media (width <=768px) {
    .copyright_nav li a {
        font-size: 12px;
    }
}

figure {
    margin-bottom: 0;
}

/* container */
@media only screen and (width >=1500px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }
}


.packaging_header {
    transition: top 0.5s ease-in-out;
    top: 0px;
    padding-bottom: 10px;
    padding-top: 10px;
    height: 115px;
    min-height: 115px;
    max-height: 115px;
}

/* Jab header show hoga */
.header--show {
    top: 0px;
    background: #fdfeeb;
    /* background: var(--white-colour); */
    color: #fff;
}

/* Jab header hide hoga */
.header--hide {
    background: var(--white-colour);
    top: -110px;
    color: #ccc;
}

.nav_menu {
    background: var(--theme-colour);
}

.nav_menu .nav-item .nav-link {
    color: var(--white-colour);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
}

.nav_menu .nav-item .dropdown-menu {
    border: none;
    padding: 0;
    overflow: hidden;
    background: var(--white-colour);
    box-shadow: 0 0px 20px rgb(57 57 86 / 0.1);
}

.nav_menu .nav-item .dropdown-menu .dropdown-item {
    border-bottom: solid 1px var(--paragraphLight-colour);
    color: var(--theme-colour);
}

.nav_menu .nav-item .dropdown-menu .dropdown-item:hover,
.nav_menu .nav-item .dropdown-menu .dropdown-item:focus,
.nav_menu .nav-item .dropdown-menu .dropdown-item:active {
    color: var(--white-colour);
    background: #7caa5f;
}

@media (width <=991px) {
    .packaging_header {
        padding-bottom: 0;
        height: 90px;
        min-height: 90px;
        max-height: 90px;
    }
}

@media (width >=1440px) {
    .nav_menu .nav-item .nav-link {
        padding: 8px 24px;
    }
}

@media (991px <=width <=1440px) {
    .nav_menu .nav-item .nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* scrollbar */
::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

/*-----------------------owl-carousel----------------------*/
.owl-carousel .owl-dots {
    display: none !important;
}

.owl-carousel .owl-nav {
    display: inline-flex;
    margin-top: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    margin: 0px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--paragraphLight-colour) !important;
    opacity: 1;
    border: 1px solid var(--paragraphLight-colourr) !important;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: all .6s;
    border-radius: 100px;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    height: 100%;
    width: 100%;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--theme-colour) !important;
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span {
    color: var(--white-colour);
}

/* btn */
.btn.btn-theme {
    border-radius: 100px;
    background-color: var(--title-colour);
    color: var(--white-colour);
    font-size: 16px;
    max-width: 160px;
    min-width: 160px;
    border: none;
    padding: 0.675rem 0;
    font-weight: 500;
    box-shadow: 0 0px 20px rgb(57 57 86 / 0.1);
}

.btn.btn-theme:hover,
.btn.btn-theme:focus,
.btn:active {
    background-color: var(--theme-colour) !important;
    color: var(--white-colour) !important;
}

@media (991px <=width <=1440px) {
    .btn.btn-theme {
        max-width: 140px;
        min-width: 140px;
        font-size: 14px;
    }
}

/* footer */
.footer {
    background-color: var(--title-colour);
}

.footer ul.footer_nav li {
    line-height: 30px;
    position: relative;
}

.footer ul.footer_nav li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    transition: all 4s;
    border: solid 2px var(--paragraph-colour);
}

.footer ul.footer_nav li:hover::before {
    border-color: var(--theme-colour);
}

.footer ul.footer_nav li a {
    color: var(--white-colour);
    font-weight: 500;
    padding-left: 25px;
}

.footer ul.footer_nav li a:hover {
    color: var(--theme-colour);
}

.copyright_nav li a {
    color: var(--white-colour);
    font-weight: 500;
}

.copyright_nav li a:hover {
    color: var(--theme-colour);
}

/*--------------------------------------------------------------------
                        Go To Top Button
--------------------------------------------------------------------*/
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--theme-colour);
    color: var(--white-colour);
    width: 38px;
    height: 38px;
    line-height: 38px;
    right: 10px;
    bottom: -40px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--common-colour);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
    bottom: 20px !important;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
    font-size: 16px;
}

/*--------------------------------------------------------------------
                        testimonials
--------------------------------------------------------------------*/
.testimonials {
    position: relative;
    background: url(../images/bg-img-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4rem 0 6rem 0;
}

.testimonials .carousel-inner {
    height: 300px;
}

.testimonials .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
}

.testimonials .card h4 {
    color: var(--paragraph-colour);
    font-weight: 300;
}

.testimonials .profile {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: solid 1px var(--theme-colour);
    position: absolute;
    top: -60px;
    z-index: 1;
    left: 0;
    box-shadow: 0 0 20px 0 rgba(138, 187, 108, 0.5);
    right: 0;
    background-color: var(--white-colour);
}

.testimonials .card h4 strong {
    font-weight: 700;
    color: var(--theme-colour);
}

.testimonials .carousel-indicators [data-bs-target] {
    background-color: var(--theme-colour);
    margin-top: 20px;
}

@media (width <=991px) {
    .testimonials {
        padding: 1rem 0 1rem 0;
        background: none;
    }

    .testimonials .carousel-inner {
        height: 380px;
    }
}

/*--------------------------------------------------------------------
                        featuesCategories
--------------------------------------------------------------------*/
.featuesCategories .owl-nav {
    display: block !important;
}

.featuesCategories .owl-carousel .owl-nav button.owl-prev {
    margin: 0 50px 0px 0;
}

.featuesCategories .owl-carousel .owl-nav button.owl-prev,
.featuesCategories .owl-carousel .owl-nav button.owl-next {
    top: -70px;
}

/*--------------------------------------------------------------------
                        hotSellingProducts
--------------------------------------------------------------------*/
.hotSellingProducts .owl-nav {
    display: block !important;
}

.hotSellingProducts .card {
    border-radius: 0;
    border-color: var(--paragraphLight-colour);
}

.hotSellingProducts .owl-carousel .owl-nav button.owl-prev {
    margin: 0 50px 0px 0;
}

.hotSellingProducts .owl-carousel .owl-nav button.owl-prev,
.hotSellingProducts .owl-carousel .owl-nav button.owl-next {
    top: -90px;
}

.hotSellingProducts .card:hover {
    border-color: var(--theme-colour);
}

.hotSellingProducts .card .link-text {
    color: var(--paragraph-colour);
    font-size: 18px;
    font-weight: 600;
}

.hotSellingProducts .card:hover .link-text {
    color: var(--theme-colour);
}

/*--------------------------------------------------------------------
                        option-materials
--------------------------------------------------------------------*/
.option-materials {
    position: relative;
}

.option-materials .nav-tabs {
    border: none;
}

.option-materials .nav-tabs .nav-link {
    border: none;
    border-radius: 100px;
    background-color: var(--paragraphLight-colour);
    color: var(--paragraph-colour);
    font-weight: 500;
    padding: 8px 25px;
}

.option-materials .nav-tabs .nav-link:hover,
.option-materials .nav-tabs .nav-link.active {
    background-color: var(--theme-colour);
    color: var(--white-colour);
}

@media (width >=991px) {
    .option-materials .nav-tabs {
        margin-top: -44px;
    }
}

/*--------------------------------------------------------------------
                        accordion-wrap
--------------------------------------------------------------------*/
.accordion-wrap .accordion-item {
    border: none;
    border-radius: 20px;
}

.accordion-wrap .accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--paragraph-colour);
    box-shadow: none;
}

.accordion-wrap .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.accordion-wrap .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--theme-colour);
}

.accordion-wrap .accordion-item.active-accordion .accordion-button {
    border-bottom: solid 1px var(--paragraphLight-colour);
}

.accordion-wrap .accordion-item.active-accordion {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    margin-bottom: 20px;
    padding: 0 15px;
}

.accordion-wrap .accordion-item.active-accordion:last-child {
    margin: 0;
}

/*--------------------------------------------------------------------
                        mega-menu
--------------------------------------------------------------------*/
.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 2rem;
    border-top: 3px solid #0d6efd;
}

.mega-menu .col-md-3 h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.mega-menu .col-md-3 ul {
    list-style: none;
    padding: 0;
}

.mega-menu .col-md-3 ul li {
    margin-bottom: 0.5rem;
}

.mega-menu .col-md-3 ul li a {
    text-decoration: none;
    color: #000;
}

.mega-menu .col-md-3 ul li a:hover {
    color: #0d6efd;
}

/*--------------------------------------------------------------------
                        whereshuldyou
--------------------------------------------------------------------*/
/*=============================================
    relix gallery
============================================*/
.relix-gallery {
    position: relative;
}

.relix-gallery .bg-light {
    background-color: transparent !important;
    height: 450px;
    /* background: url(../images/gallery-bg.png) no-repeat center center; */
    width: 100%;
    text-align: center;
}

.relix-gallery .bg-light img {
    margin: 0 auto;
    object-fit: cover;
}

.relix-thumbnail {
    height: 100%;
    overflow: hidden;
}
.relix-thumbnail ul::-webkit-scrollbar {
    display: block;
}

.relix-thumbnail ul::-webkit-scrollbar {
    display: block;
}
.relix-thumbnail ul {
    overflow-x: scroll;
    white-space: nowrap;
}

.relix-thumbnail ul li {
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px #e9e9e9;
    width: 130px;
    min-width: 130px;
    margin-right: 0px;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
    transition: .6s;
}

.relix-thumbnail ul li:hover {
    border-color: var(--theme-colour);
}

.relix-thumbnail ul li.active {
    border-color: var(--theme-colour);
}

.relix-thumbnail ul li img {
    width: 100%;
    display: block;
}

/*--------------------------------------------------------------------
                        whereshuldyou
--------------------------------------------------------------------*/
.whereshuldyou .itemBegin {
    background-color: var(--paragraphLight-colour);
    border-radius: 10px;
    position: relative;
    transition: all .6s;
}

.whereshuldyou .itemBegin h6 {
    font-size: 20px;
    color: var(--title-colour);
}

.whereshuldyou .itemBegin .iconBegin {
    padding: 5px;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    transition: all .6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whereshuldyou .itemBegin:hover .iconBegin img {
    filter: brightness(100);
}

.whereshuldyou .itemBegin:hover .iconBegin {
    background-color: var(--theme-colour);
}

.whereshuldyou .itemBegin:hover.itemBeginActive {
    background: #8ABB6C;
    background: linear-gradient(178deg, rgba(138, 187, 108, 0) 13%, rgba(138, 187, 108, 1) 100%);
    padding: 0 15px 15px 15px;
}

.whereshuldyou .itemBegin:hover .innerBegin {
    background-color: var(--white-colour);
    border-radius: 0 0 15px 15px;
}

/*--------------------------------------------------------------------
                        Main Heading
--------------------------------------------------------------------*/
.categories_wrap .categoriesItems {
    border: solid 1px var(--paragraphLight-colour);
}

.categories_wrap .categoriesItems:hover {
    border-color: var(--theme-colour);
}
   .categories_wrap .cul {
        margin-bottom: 15px;
    }
@media (width <=1199px) {
    .categories_wrap .cul {
        margin-bottom: 15px;
    }

    .categories_wrap .cul:last-child {
        margin-bottom: 0;
    }
}




/*--------------------------------------------------------------------
                        detail-tabs
--------------------------------------------------------------------*/
.detail-tabs .tab-content {
    border: solid 1px var(--paragraphLight-colour);
    border-top: 0;
}

.detail-tabs .nav-tabs .nav-link {
    border: none;
    color: var(--paragraph-colour);
    font-weight: 500;
    border-radius: 0;
}

.detail-tabs .nav-tabs .nav-link.active {
    background-color: var(--theme-colour);
    color: var(--white-colour);
}

/*--------------------------------------------------------------------
                        offcanvasMenu
--------------------------------------------------------------------*/
.offcanvas.offcanvasMenu {
    width: 15rem;
    border: none;
}

.offcanvas.offcanvasSerch {
    height: 12rem;
    border: none;
}

.offcanvas.offcanvasMenu .offcanvas-header,
.offcanvas.offcanvasSerch .offcanvas-header {
    background-color: #DDDEAB;
}

.offcanvasMenu ul li ul.dropdown-menu {
    position: relative !important;
    transform: none !important;
}

/*--------------------------------------------------------------------
                        mainBanner
--------------------------------------------------------------------*/

.mainBanner .carousel-item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 1s ease-in-out;
    position: relative;
}

.mainBanner .carousel-item img {
    max-width: 600px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-in-out;
    position: relative;
    z-index: 2;
}

.mainBanner .carousel-item.active img {
    opacity: 1;
    transform: translateX(0);
}

/* Background colors for each slide */
.mainBanner .bg-slide-1 {
    background: linear-gradient(135deg, #E9D6B1, #d4bc8c);
    color: white;
}

.mainBanner .bg-slide-2 {
    background: linear-gradient(135deg, #ecbab1, #b98177);
    color: white;
}

.mainBanner .bg-slide-3 {
    background: linear-gradient(135deg, #e7b151, #bd8e3c);
    color: white;
}

/*--------------------------------------------------------------------
                        Main Heading
--------------------------------------------------------------------*/
.shapes_boxes .shapesItem {
    background: #F4F6FA;
    border-radius: 15px;
    transition: all .6s;
    padding: 40px 10px 10px 010px;
    /* clip-path: polygon(3.55% 34.8%, 50.57% 17.66%, 97.6% 34.8%, 97.6% 99.86%, 3.55% 99.86%); */
}

.shapes_boxes .position-relative:hover .shapesItem {
    background-color: var(--theme-colour);
    color: var(--paragraph-colour);
}

.shapes_boxes .position-relative:hover .shapesItem h6,
.shapes_boxes .position-relative:hover .shapesItem p {
    color: var(--white-colour);
}

.shapes_boxes .circleShape {
    background-color: #D9D9D9;
}

.shapes_boxes .position-relative:hover .circleShape {
    background-color: var(--white-colour);
}

.shapes_boxes .shapesItem h6 {
    color: var(--paragraph-colour);
}

@media (width <=1199px) {
    .shapes_boxes .position-relative {
        margin-bottom: 70px;
    }
}

/*--------------------------------------------------------------------
                        Main Heading
--------------------------------------------------------------------*/
.main_heading {
    position: relative;
}

.main_heading h5 {
    font-size: 38px;
    line-height: 40px;
    font-weight: 300;
    color: var(--paragraph-colour);
}

.main_heading h5 strong {
    display: inline-block;
    color: var(--theme-colour);
    font-weight: 700;
}

.main_heading p {
    font-size: 16px;
    font-weight: 400;
}

@media (width <=991px) {
    .main_heading h5 {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (width <=768px) {
    .main_heading h5 {
        font-size: 22px;
    }
}

@media (width <=480px) {
    .main_heading h5 {
        font-size: 20px;
    }
}

/*-----------------------brandedLogo----------------------*/
.brandedLogo .owl-nav {
    display: none;
}

/* sharpsans fonts */
@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-BoldItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Bold.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Extrabold.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Extrabold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Book.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-BookItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Light.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-ExtraboldItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-ExtraboldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-MediumItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-LightItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Medium.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-SemiboldItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Thin.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-Semibold.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Sans TRIAL';
    src: url('../fonts/sharpsans/SharpSansTRIAL-ThinItalic.woff2') format('woff2'),
        url('../fonts/sharpsans/SharpSansTRIAL-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}