* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body a {
    display: inline-block;
    text-decoration: none;
}

body img {
    max-width: 100%;
}

body ul,
body ol {
    margin: 0;
    padding: 0;
}

body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: Playfair Display;
}

.siteContainer {
    max-width: 1170px;
    margin: 0 auto;
}

.btnTheme {
    border-radius: 80px;
    padding: 19px 29px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: solid 1px transparent;
    cursor: pointer;
}

.btnThemeBrown {
    background-color: var(--Primary-Color, #5F2D25);
    color: #fff;
    border-color: #5f2d25;
}

.btnThemeBrown:hover {
    background-color: transparent;
    color: #5f2d25;
}

/* SIte Header Css Start */
header.siteHeader {
    padding: 20px 0 30px;
    background-color: #fff;
}

.headerRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.siteLogo {
    margin: 0 70px;
}

.headerLeftMenu ul,
.headerRightMenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

.headerLeftMenu ul li:not(:first-child) {
    margin-left: 70px;
}

.headerRightMenu ul li:not(:last-child) {
    margin-right: 70px;
}

header.siteHeader a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.headerLeftMenu ul li:first-child a {
    color: #5F2D25;
    font-weight: 800;
}

.mobileMenu{
    display: none;
}

.mobileMenuDropDown{
    display: none;
}

a.mobileMenuAction {
    width: 60px;
    height: 60px;
    background-color: #F6F6F6;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobileMenuDropDown {
    position: absolute;
    z-index: 9;
    background-color: #fff;
    padding: 20px;
    right: 5%;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.mobileMenuDropDown ul li:not(:last-child) {
    margin-bottom: 10px;
}

.mobileMenuDropDown ul {
    list-style: none;
    padding: 0;
}

.siteLogo .mobileLogo{
    display: none;
}
/* Site Header Css End */

/* Footer Css Start */
footer.siteFooter {
    padding: 70px 0 0;
    background-color: rgba(234, 166, 54, 0.70);
}

.footerRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.footerLeft {
    width: 300px;
}

.footerRight {
    width: calc(100% - 300px);
}

.footerRight ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
}

.footerRight ul li {
    padding: 0 51px;
    text-align: center;
    border-right: solid 1px rgba(0, 0, 0, 0.1);
}

.footerRight ul li:first-child {
    padding-left: 0;
}

.footerRight ul li:last-child {
    padding-right: 0;
    border: 0;
}

.footerRight li p {
    max-width: 274px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 auto;
}

.footerRight ul li img {
    margin: 0 auto 20px;
    display:block;
}

.footerRight ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.footerBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 26px 0;
    border-top: solid 1px rgba(227, 239, 255, 0.2);
    margin-top: 70px;
}

.footerCopyright p {
    font-weight: 300;
}

.footerSocial ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

.footerSocial ul li {
    margin-left: 20px;
}

.scrollTop {
    -webkit-animation: bounceInUp 5000ms linear infinite both;
    animation: bounceInUp 5000ms linear infinite both;
    -webkit-transition: .5s;
    transition: .5s;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 100%;
    display: flex;
    background-color: #FFD58D;
    padding: 5px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
}

.scrollTop.show{
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 1;
    visibility: visible;
}

header.siteHeader .mobileMenuDropDown a {
    color: #000;
}

.bannerSocialIcon {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-right: 35px;
    z-index: 99;
}

.bannerSocialIcon ul {
    list-style: none;
}

.bannerSocialIcon ul li {
    margin: 20px 0;
}

.bannerSocialIcon ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bannerSocialIcon ul li img {
    transition: 1s;
    left: 0;
    position: relative;
}

.bannerSocialIcon ul li:hover img {
    left: -10px;
    transition: 1s;
}

.footerFaqLink span {
    margin-left: 15px;
}

.footerFaqLink * {
    color:#000;
}

@-webkit-keyframes bounceInUp {
    100% {
        transform: translate3d(0, 20px, 0);
        filter: drop-shadow(0 0 38px rgba(4, 54, 70, 0.231372549));
    }
    50% {
        transform: translate3d(0, 0px, 0);
        filter: drop-shadow(0 0 38px rgba(0, 0, 0, 0));
    }
    0% {
        transform: translate3d(0, 20px, 0);
        filter: drop-shadow(0 0 38px rgba(4, 54, 70, 0.231372549));
    }
}

@keyframes bounceInUp {
    100% {
        transform: translate3d(0, 20px, 0);
        filter: drop-shadow(0 0 38px rgba(4, 54, 70, 0.231372549));
    }
    50% {
        transform: translate3d(0, 0px, 0);
        filter: drop-shadow(0 0 38px rgba(0, 0, 0, 0));
    }
    0% {
        transform: translate3d(0, 20px, 0);
        filter: drop-shadow(0 0 38px rgba(4, 54, 70, 0.231372549));
    }
}
@media only screen and (max-width:1230px) {
    .siteContainer {
        max-width: 90%;
    }

    .footerLeft {
        width: 220px;
    }

    .footerRight {
        width: calc(100% - 220px);
    }

    .footerRight ul li {
        padding: 0 30px;
    }
}

@media only screen and (max-width:991px) {
    .siteContainer {
        max-width: 90%;
    }

    .footerLeft {
        width: 150px;
        padding-right: 20px;
    }

    .footerRight {
        width: calc(100% - 150px);
    }

    .siteLogo {
        margin: 0 50px;
    }

    .headerLeftMenu ul li:not(:first-child) {
        margin-left: 50px;
    }

    .headerRightMenu ul li:not(:last-child) {
        margin-right: 50px;
    }

    .footerRight ul li a {
        font-size: 14px;
        line-height: 22px;
    }

    .footerRight li p {
        max-width: 225px;
        font-size: 14px;
        line-height: 22px;
    }

    .footerRight ul li {
        padding: 0 10px;
    }

    .footerRight ul li img {
        margin: 0 auto 15px;
        display: block;
        width: 40px;
    }
}

@media only screen and (max-width:767px) {
    .footerLeft {
        width: 100%;
    }

    .footerRight {
        width: 100%;
        padding-bottom: 0;
        margin-top: 20px;
    }

    .siteLogo {
        margin: 0 0;
        width: 50%;
        text-align: left;
    }

    .headerLeftMenu, .headerRightMenu {
        display: none;
    }

    .mobileMenu{
        display: block;
    }

    .headerRightMenu ul li:not(:last-child) {
        margin-right: 20px;
    }

    .headerLeftMenu ul li:not(:first-child) {
        margin-left: 20px;
    }

    .brandLogoContainer .owl-carousel .owl-item img {
        height: 65px;
    }

    .siteLogo img {
        width: 100px;
    }

    .footerLeft {
        width: 100%;
        text-align: center;
    }

    footer.siteFooter {
        padding: 50px 0 0;
    }

    .footerRight ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footerSocial ul li {
        margin-left: 9px;
    }

    .headerRow {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    header.siteHeader {
        padding: 20px 0;
    }

    .siteLogo .desktopLogo{
        display: none;
    }

    .siteLogo .mobileLogo{
        display: block;
    }
}

@media only screen and (max-width:600px) {
    .footerRight ul li:first-child {
        padding-left: 0;
        padding-right: 0;
        border: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .footerRight ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footerSocial ul li {
        margin-left: 0;
        margin-right: 10px;
    }

    .footerSocial {
        width: 100%;
        margin-top: 20px;
    }
}


/*wow animation*/
@keyframes rotateOut {
  from {
    transform-origin: center;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}