
@font-face {
    font-family: 'circlelight';
    src: url('../fonts/circle_light-webfont.woff2') format('woff2'),
         url('../fonts/circle_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'moganregular';
    src: url('../fonts/mogan-webfont.woff2') format('woff2'),
         url('../fonts/mogan-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* ==== */
:root {
    --theme-color: #656636;
    --theme-color-light: #e0e621;
}
html, body {
    width: 100vw;
    overflow-x: hidden;
}
body {
    /* font-family: 'adobe_cleanlight'; */
    font-family: 'circlelight';
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    min-height: 100vh;
}
@media (max-width:767px) {
    body {
        font-size: 14px;
    }
}
.wrapper {
    position: relative;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
a {cursor:pointer !important;}
img {
    max-width: 100%;
}
.heading {
    /* font-family: 'adobe_clean_serifmedium'; */
    font-family: 'moganregular';
    font-size: 51px;
    font-style: normal;
    font-weight: 300;
    color: var(--theme-color);
}
.subheading {
    font-size: 24px;
    font-weight: 300;
    color:#000;/*786*/
}
.title {
    display: inline-block;
    padding-right: 15px;
    border-bottom: solid 1px var(--theme-color-light);
    font-size: 36px;
    line-height: 1.3;
    padding-bottom: 5px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.theme-color-light {
    color: var(--theme-color-light);
}

/* Header
==================== */
.header {
    /* padding: 90px 0; */
    font-weight: 300;
    line-height: 1.3;
    color: #afaf7d;
    position: relative;
}
.logo {
    max-width: 300px;
    width: 300px;
    margin: 0 auto;
    position: relative;
}
.logo video {
    width: 100%;
    height: 100%;
    object-fit: contain;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.header-text {
    position: absolute;
    top: 48px;
    left: 0;
}
.whatsapp-link {
    position: fixed;
    top: 95px;
    right: 15px;
    color: #666;
    text-decoration: none;
    z-index: 1;
}
.whatsapp-link svg {
    fill: #b4bd00;
    width: 24px;
    position: absolute;
    right: 0;
    transition: all 0.2s ease;
}
.whatsapp-link img {
    width: 24px;
    position: absolute;
    right: 0;
    transition: all 0.2s ease;
}
.whatsapp-link span {
    opacity: 0;
    transition: opacity 0.2s ease, top 0.3s ease;
    padding-left: 10px;
    font-size: 15px;
    top: -3px;
    position: relative;
}
.whatsapp-link:hover svg {
    fill: #b4bd00;
    right: 100%;
}
.whatsapp-link:hover img {
    right: 100%;
}
.whatsapp-link:hover span {
    opacity: 1;
    visibility: visible;
    top: 3px;
}
@media (min-width:1400px) {
    .whatsapp-link {
        position: fixed;
        top: 48px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 650px;
        width: 108px;
        height: 30px;
    }
}
@media (min-width:769px) {
    .logo {
        --width: 500px;
        max-width: var(--width);
        width: var(--width);
    }
    .logo video {
        margin-top: -80px;
        margin-bottom: -80px;
    }
    .header {
        padding: 0;
    }
    .header-text {
        left: 15px;
    }
}

/* NAVBAR
================= */
.navbar-box {
    width: auto;
    background: var(--theme-color);
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border-radius: 15px;
    width: 609px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    justify-content: space-between;
}
.nav li {
    padding: 20px 18px;/*18-30pxsuresh*/
}
.h-home-link .nav li.home-link {
    display: none;
}
.h-contact-link .nav li.contact-link {
    display: none;
}
.nav li a {
    color: var(--theme-color-light);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}




/* Meu button */
.menu-btn {
    width: 50px;
    aspect-ratio: 1;
    padding: 8px;
    border-radius: 50%;
    position: fixed;
    top: 27px;
    left: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 3;
    display: none;
}
.menu-btn span {
    width: 24px;
    height: 3px;
    display: inline-block;
    background: var(--theme-color-light);
    transition: all 0.3s;
}
.menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

@media (max-width: 768px) {
    .header {
        padding: 0;
        margin-top: -30px;
    }
    .whatsapp-link {
        position: fixed;
        top: 95px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 650px;
        width: 89px;
    }
    .heading {
        font-size: 38px;
    }
    .subheading {
        font-size: 24px;
        font-weight: 300;
    }
    .title {
        font-size: 18px;
        margin-top: 10px;
    }
    .navbar-box {
        width: 100%;
        max-width: 500px;
        height: 100vh;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 15px;
        transform: translateX(-100%);
        border-radius: 0;
        display: flex;
        align-items: center;
        padding: 25px;
        z-index: 2;
        transition: all 0.3s ease;
    }
    .navbar-box.open {
        transform: translateX(0);
    }
    .nav {
        flex-wrap: wrap;
    }
    .nav li {
        width: 100%;
        padding: 20px 0;
        border-bottom: dotted 2px var(--theme-color-light);
    }
    .nav li a {
        color: #777;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 4px;
    }
    .menu-btn {
        display: inline-flex;
    }

    /* Submenu */
    .nav li.has-submenu a.menu-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav li.has-submenu .submenu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 20px;
        transition: all 0.3s ease;
    }
    .nav li.has-submenu .submenu-container a.back-link {
        margin-bottom: 30px;
    }
    .nav li.has-submenu .submenu-container a.submenu-link {
        color: #777;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        padding: 20px 0;
        border-bottom: dotted 2px var(--theme-color-light);
        display: block;
    }
    .nav li.has-submenu.open .submenu-container {
        transform: translateX(0);
    }
}

/* Video Section
======================== */
.video-wrapper {
    position: relative;
    padding-top: 50%;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding-right: 70px;
    font-weight: 300;
    max-width: 500px;
    width: 100%;
}
.video-content p {
    font-size: 18px;
    color: #000;/*786*/
    max-width: 400px;
}
@media (max-width:1199px) {
    .video-wrapper {
        padding-top: 50%;
    }
}
@media (max-width:768px) {
    .video-wrapper {
        position: relative;
        padding-top: 0;
        min-height: 80vh;
        overflow: hidden;
        /* background: url(../images/mobile-hero.jpg) no-repeat center;
        background-size: cover; */
        margin-top: -30px;
    }
    .video-wrapper video {
        object-position: center;
    }
    .video-content {
        top: 0;
        transform: translateY(0);
        right: auto;
        left: 0;
        padding: 24px;
        max-width: 100%;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .video-content p {
        font-size: 16px;
        color: #333;
    }
}

/* Gifting Solution
======================== */
.section {
    padding: 40px 0;
}
.gifting-category {
    padding: 5px 0;
}
.gc-container {
    width: 200%;
    margin: 0 auto;
    /* align-items: center; */
}
.gc-col {
    width: 50%;
    transition: all 0.45s ease;
    position: relative;
}
.gc-col .d-flex img {
    width: 50%;
}
.gc-content {
    padding: 0 30px;
}
.gc-content p {
    font-size: 0.8rem;
}
.gc-anim-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width:768px) {
    .anim-sec.active #corporate_gifting .gc-col,
    .anim-sec.active #special_occasion_gifting .gc-col,
    .anim-sec.active #sustainable_gifting .gc-col {
        transform: translateX(-100%);
    }
    .anim-sec #personalized_gifting .gc-col,
    .anim-sec #leather_gifting .gc-col {
        transform: translateX(-100%);
    }
    .anim-sec.active #personalized_gifting .gc-col,
    .anim-sec.active #leather_gifting .gc-col {
        transform: translateX(0);
    }
    .gifting-category .wrapper {
        padding: 0;
    }
    .gc-container {
        overflow: hidden;
        align-items: center;
    }
    .gc-anim-img {
        display: none;
    }
}
@media (max-width:767px) {
    .gc-col {
        padding-top: 195px;
        overflow: hidden;
    }
    #personalized_gifting .gc-col {
        padding-top: 300px;
    }
    #special_occasion_gifting .gc-col {
        padding-top: 225px;
    }
    #leather_gifting .gc-col {
        padding-top: 280px;
    }
    .gc-col img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .gc-content {
        position: absolute;
        /* top: 50%;
        transform: translateY(-50%); */
        top: 0;
        left: 0;
    }
    #packaging.section {
        padding: 0;
    }
    #about_us.section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}
@media (max-width:360px) {
    .gc-col {
        padding-top: 225px;
        overflow: hidden;
    }
    #personalized_gifting .gc-col {
        padding-top: 370px;
    }
    #special_occasion_gifting .gc-col {
        padding-top: 275px;
    }
    #leather_gifting .gc-col {
        padding-top: 305px;
    }
}
@media (min-width:769px) {
    .gc-container {
        max-width: 900px;
        width: 100%;
    }
    /* .gifting-category .wrapper {
        overflow: hidden;
    } */
    .gc-content p {
        font-size: 0.95rem;
    }
    .gc-col img {
        padding: 5px;
        transition: all 0.3s ease;
    }
    .gc-anim-img {
        transition: transform 0.3s ease, opacity 0.3s 0.3s ease;
    }
    .static-img {
        z-index: 1;
        position: relative;
    }
    .gc-col-content-container {
        display: flex;
        align-items: center;
    }
    .gc-content {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .hover-box {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
    .hover-box-1,
    .hover-box-2 {
        position: absolute;
        top: 5px;
        width: calc(50% - 10px);
        height: calc(100% - 10px);
        z-index: 2;
        transition: all 0.3s ease;
    }
    .hover-box-1 {
        left: 5px;
    }
    .hover-box-2 {
        right: 5px;
    }

    #corporate_gifting .gc-col .gc-content {
        width: 115%;
        margin-right: -15%;
        padding-left: 10px;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
    }
    #corporate_gifting .gc-col-h .gc-content {
        width: 115%;
        margin-left: -15%;
        padding-right: 10px;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
    }

    /* #corporate_gifting .hover-box-1:hover + .hover-box-2  {
        transform: translateX(300%) scale(0);
        transition: all 0.3s 1s ease;
    }
    #corporate_gifting .hover-box-2:hover ~ .hover-box-1  {
        transform: translateX(300%) scale(0);
        transition: all 0.3s 1s ease;
    } */

    #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col + .gc-col-h .gc-anim-img {
        transform: translateX(300%);
    }
    #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col .static-img {
        transform: translateX(-35%);
    }
    #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col + .gc-col-h .gc-content {
        opacity: 1;
    }

    #corporate_gifting .hover-box-2:hover + .gc-col + .gc-col-h .gc-anim-img {
         transform: translateX(35%);
        }
    #corporate_gifting .hover-box-2:hover + .gc-col .static-img {
            transform: translateX(-300%);
    }
    #corporate_gifting .hover-box-2:hover + .gc-col .gc-content {
        opacity: 1;
    }

    /* #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col + .gc-col-h .gc-anim-img {
        transform: translateX(300%);
    }
    #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col .static-img {
        transform: translateX(-35%);
    }
    #corporate_gifting .hover-box-1:hover + .hover-box-2 + .gc-col + .gc-col-h .gc-content {
        opacity: 1;
    }

    #corporate_gifting .hover-box-2:hover + .gc-col + .gc-col-h .gc-anim-img {
         transform: translateX(35%);
        }
    #corporate_gifting .hover-box-2:hover + .gc-col .static-img {
            transform: translateX(-300%);
    }
    #corporate_gifting .hover-box-2:hover + .gc-col .gc-content {
        opacity: 1;
    } */
    /* .gc-col-h .gc-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    .hover-box:hover + .gc-col + .gc-col-h img {
        transform: translateX(800px);
    }
    .hover-box:hover + .gc-col {
        transform: translateX(-100px);
    }
    .hover-box:hover + .gc-col + .gc-col-h .gc-content {
        opacity: 1;
    } */

    

    /* #special_occasion_gifting {
        flex-direction: row-reverse;
    } */
    #special_occasion_gifting .gc-content {
        width: 115%;
        margin-right: -15%;
        padding-left: 10px;
    }
    #special_occasion_gifting .gc-col-h .gc-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    #special_occasion_gifting .hover-box {
        z-index: 2;
    }
    #special_occasion_gifting .hover-box:hover + .gc-col-h img {
        transform: translateX(-300%);
    }
    #special_occasion_gifting .hover-box:hover + .gc-col + .gc-col {
        transform: translateX(35%);
    }
    #special_occasion_gifting .hover-box:hover + .gc-col-h .gc-content {
        opacity: 1;
    }
    /* #special_occasion_gifting:hover .gc-anim-img {
        transform: translateX(-800px);
    }
    #special_occasion_gifting:hover .static-img {
        transform: translateX(100px);
    }
    #special_occasion_gifting:hover .gc-content {
        opacity: 1;
    } */

    #leather_gifting {
        flex-direction: row-reverse;
        position: relative;
    }
    /* #leather_gifting .gc-content {
        width: 125%;
        margin-right: -25%;
    }
    #leather_gifting .static-img {
        max-width: 700px;
    }
    #leather_gifting:hover .static-img {
        transform: translateX(-40%);
    } */
    .leather-gifting-section .wrapper {
        overflow: visible;
    }
    /* #leather_gifting .gc-content {
        width: 125%;
        margin-right: -25%;
    } */
    #leather_gifting .gc-col {
        width: 80%;
        margin: 0 auto;
    }
    #leather_gifting .gc-col.gc-col-content-container {
        width: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }
    #leather_gifting .gc-col.gc-col-content-container .gc-content {
        padding: 0 0 0 10px;
    }
    #leather_gifting:hover .static-img {
        transform: translateX(-60%);
    }
    #leather_gifting:hover .gc-content {
        opacity: 1;
    }

    #sustainable_gifting .gc-col-content-container {
        width: 500px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .gc-col .d-flex img {
        width: auto;
    }
    .gc-col .d-flex {
        justify-content: center;
    }
    .gc-col-img img {
        max-width: 100%;
        height: 550px;
    }
    #sustainable_gifting:hover .static-img {
        transform: translateX(-70%);
    }
    #sustainable_gifting:hover .static-img2 {
        transform: translateX(70%);
    }
    #sustainable_gifting:hover .gc-content {
        opacity: 1;
    }
}


/* Custom Packaging
======================== */
.custom-packaging {position: relative;}
.custom-packaging-bg {
    background: #B7ADA4 url(../images/custom-packaging-mobile.jpg) no-repeat top left;
    background-size: cover;
    min-height: 700px;
    display: flex;
    justify-content: flex-end;
}
.custom-packaging-bg .heading {
    padding: 24px 15px;
    font-size: 42px;
    max-width: 210px;
    display: inline-block;
}
.custom-packaging-content .heading {
    display: none;
}
.custom-packaging-content {
    padding: 24px;
}
@media (min-width:769px) {
    .custom-packaging-bg {
        background: #B7ADA4 url(../images/8.jpg) no-repeat center;
        background-size: cover;
        min-height: auto;
        padding-top: 46.66%;
    }
    .custom-packaging-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        max-width: 500px;
        padding-right: 50px;
    }
    .custom-packaging-bg .heading {
        display: none;
    }
    .custom-packaging-content .heading {
        display: block;
    }
    .custom-packaging-content p {
        /* font-size: 15px; */
        color: #000;
    }
}
@media (min-width:1200px) {
    .custom-packaging-content {
        max-width: 650px;
    }
}

/* HTHW
========================= */
.client-slider .col {
    text-align: center;
    padding: 0 5px;
    margin-top: 30px;
}
.client-slider .col img {
    max-height: 114px;
    display: inline-block;
    margin: 0 auto;
}
.slick-dots li button:before {
    color: var(--theme-color) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}
.slick-dots li.slick-active button:before {
    font-size: 10px;
}
@media (max-width:768px) {
    .hthw-title {
        max-width: 250px;
        margin: 0 auto;
    }
    .client-slider .slick-track {
        display: flex;
    }
    .client-slider .slick-slide {
        height: inherit;
        display: flex !important;
        align-items: center;
    }
}
@media (min-width:992px) {
    .client-slider {
        display: flex;
        flex-wrap: wrap;
    }
    .client-slider .col {
        padding: 0 15px;
        margin-top: 30px;
    }
    .client-slider .w-20 {
        width: 20%;
        flex: 0 0 20%;
    }
    .client-slider .w-25 {
        width: 25%;
        flex: 0 0 25%;
    }
}

/* Footer
======================== */
footer {
    font-size: 13px;
    padding-bottom: 20px;
}
.social-links a {
    color: #b4bd00;
    font-size: 24px;
}
.social-links a:not(:last-child) {
    margin-right: 15px;
}
.copyright img {
    display: none;
}
.copyright div {
    width: 100%;
    text-align: right;
}
.footer-link {
    color: #666;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}
@media (max-width:768px) {
    footer {
        background: #f1f2f2;
        padding-top: 30px;
    }
    footer .container {
        padding-inline: 30px;
    }
    .footer-title {
        font-size: 11px;
        display: block;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
    .social-links a {
        width: 40px;
        flex: 0 0 40px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--theme-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .social-links a i {
        font-size: 24px;
        display: inline-block;
        color: #fff;
    }
    .copyright {
        font-size: 11px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        flex: 0 0 63%;
        margin-top: 25px;
    }
    .copyright img {
        display: inline-block;
        max-width: 40px;
        height: 40px;
    }
}


/* Contact
================== */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.full-height {
    min-height: 100vh;
}
.contact-us-left-box {
    width: 80%;
    margin: 0 auto;
    padding: 25px 0 130px;
}
.form-container {
    max-width: 400px;
    margin: 30px auto !important;
}
.form-container .mb-3 {
    margin-bottom: 10px !important;
}
.form-control {
    border-radius: 0;
    padding: 5px 25px;
    border-color: #ebeced;
    font-family: 'adobe_clean_serifmedium';
    font-size: 16px !important;
}
input.form-control {
    height: 46px;
}
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(224,230,33,.25);
    border-color: var(--theme-color-light);
}

::placeholder {
    color: #9e9e9e !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #9e9e9e !important;
}

::-ms-input-placeholder {
    color: #9e9e9e !important;
}
.btn-theme, .btn-theme:active, .btn-theme:focus {
    background: var(--theme-color) !important;
    color: var(--theme-color-light) !important;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    border: none;
    border-radius: 15px;
    padding: 12px 48px;
}
.btn-theme:hover {
    color: var(--theme-color) !important;
    background: var(--theme-color-light) !important;
}
.contact-us-main {
    position: relative;
}
.contact-content-box {
    font-size: 14px;
    line-height: 1.3;
}
.contact-content-box i {
    font-size: 26px;
    color: var(--theme-color);
}
.contact-content-box h4 {
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 600;
}
.contact-content-box a {
    color: currentColor;
    text-decoration: none;
}
.contact-content-box a.link {
    text-decoration: underline;
}
.contact-image img {
    max-width: 500px;
    width: 100%;
}
.footer-offset {
    margin-top: -80px;
    z-index: 2;
    position: relative;
}
.contact-us-left-box-col {
    background-color: #f7f8e3;
    height: 100%;
}
@media (max-width: 1200px) {
    .contact-us .container {
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .contact-us .header {
        padding: 0px 0;
    }
    /* .contact-us .header .header-text {display: none !important;}
    .contact-us .header .logo {display: none !important;} */
    .contact-us .footer .container {
        max-width: 1180px;
    }
}
@media (max-width:768px) {
    .form-container {
        margin-top: 0 !important;
    }
    .footer-offset {
        margin-top: 0;
    }
    .contact-us-left-box {
        width: 100%;
        padding: 0 0 25px 0;
    }
    .contact-us-left-box-col {
        padding: 20px 15px !important;
    }
}

/* About Us
==================== */
.about-us-bg {
    background: url(../images/about-1.jpg) no-repeat center;
    background-size: cover;
}
.about-us-content {
    padding: 150px 60px;
    display: flex;
    justify-content: flex-end;
    color: #000;
    /* font-size: 15px; */
}
.about-us-inner {
    max-width: 450px;
}
#about_us.section {
    padding: 80px 0;
}
@media (max-width:991px) {
    .about-us-inner {
        max-width: 300px;
    }
}
@media (max-width:768px) {
    #about_us .wrapper {
        padding: 0;
    }
    .about-us-wrapper {
        padding: 40px 24px 0 24px;
    }
    .about-us-bg {
        background: url(../images/about-1-mobile.jpg) no-repeat center;
        background-size: cover;
    }
    .about-us-content {
        padding: 50px 30px 500px;
        display: flex;
        justify-content: flex-end;
        font-size: 14px;
    }
    .about-us-inner {
        max-width: 100%;
    }
}

.error {
    color: #c62525;
    font-size: 11px;
}