
/* body,
html {
    overflow-x: hidden;
} */
:root {
    --manrope:  "Manrope", sans-serif;
    --msMadi: "Ms Madi", cursive;
    --lora:"Lora", serif;
    --sky-color: #026CB7;
    --red-color: #E22014;
    --white-color: #FFFFFF;
    --light-sky-color: #E6F0F8;
    --black-color: #000000;
    --blue-color: #002F51;
}


* {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    overflow-x:hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--manrope) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1.5;
    background-color:#FFF;    
}

::-moz-selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0 !important;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--black-color);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--sky-color);
}

img {
    max-width: 100%;
}
.error {
  border: 2px solid #e74c3c !important;
}

.apply_form li.error {
  outline: 2px solid #e74c3c;
  padding: 5px;
}
.container{
    max-width:1460px !important;
    padding:0 15px;
}
.container-medium{
    width:100%;
    max-width:850px;
    margin:0 auto;
    display:block;
}

.o-main-header {
    width:100%;
    padding:25px 0;
    position: absolute;
    top: 0;
    left:0;
    z-index: 99;
}
.o-main-header .row > .col:nth-child(2){
    flex-grow: 0.5;
}
.o-main-header--inner{
    padding: 32px 0;
    background-size:cover !important;
}
.o-main-header--inner:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    opacity:88;
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 120%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    backdrop-filter: blur(4px);
}
.o-main-header .container,
.c-banner-area .container,
.o-footer .container,
.o-footer__bottom .container{
    max-width:1750px !important;
}
.c-navbar-sup{
    display:inline-flex;
    align-items:center;
    list-style:none;
    padding:0;
    margin:0;
    column-gap:30px;
    z-index: 1;
    position: relative;
}
.c-navbar-sup > li a{
    font-size:18px;
    color:#FFFFFF;
    font-weight:400;
}
.c-navbar-sup > li a:hover{
    color:#9B1C1F;
}
.c-navbar-sup li.active, .c-header-nav li.active {
    text-decoration: underline;
    color: #fff;
}
.c-menu-area{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position:fixed;
    left:0;
    bottom:0;
    z-index:999;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:all 0.5s ease-in-out;
    background:#9B1C1F;
    padding:20px 20px 35px;
}
.c-menu-area.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.c-header-nav{
    padding:0;
    margin:0;
    list-style:none;
    text-align:center;
    flex-direction: column;
    display:flex;
    row-gap:15px;
}
.c-header-nav > li{
    display:block;
}
.c-header-nav > li > a{
    color:#FFFFFF;
    font-size:20px;
    font-weight:400;
    position:relative;
    margin:0;
}
.c-header-nav > li:nth-child(n+5) a{
    font-size:16px;
}
.c-header-nav > li > a:hover{
    color:#BF9A5D;
}
.c-header-nav > li > a:before{
    content:"";
    width:16px;
    height:16px;
    position:absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
    opacity:0;
    background:url('images/menu-active-icon.svg') no-repeat center;
    transition:all 0.5s ease-in-out;
}
span.c-menu__hamburger{
        display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}
.c-menu__hamburger img {
        vertical-align: middle;
    margin-right: 8px;
}
.c-header-nav > li.current-menu-item > a:before{
    content:"";
    width:16px;
    height:16px;
    position:absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
    opacity:1;
    background:url('images/menu-active-icon.svg') no-repeat center;
    transition:all 0.5s ease-in-out;
}
.c-header-nav > li > a:hover:before{
    opacity:1;
}

.c-primary-btn{
    min-width:266px;
    border-radius:15px;
    border: none;
    text-align: center;
    color: #FFFFFF;
    font-weight:500;
    font-size: 16px;
    letter-spacing:1px;
    padding:14px 37px;
    background: #9B1C1F;
    position:relative;
}
.c-primary-btn:before{
    content:"";
    width:40px;
    height:1px;
    position:absolute;
    left:-20px;
    top:50%;
    transform:translateY(-50%);
    background:#FFF;
}
.str-b.c-primary-btn:before{
    background:#404040;
}
.c-primary-btn:hover{
    background:#830003;
    color:#FFF;
}
.c-primary-btn__white{
    background:#FFF;
    color:#000000;
}
.c-primary-btn__white:before{
    background:#000;
}
.c-primary-btn__white:hover{
    background:#D3D3D3;
    color:#000;
}

.c-phn-number{
    color:#FFF;
    font-size:20px;
    font-weight:400;
    margin:0 75px 0 0;
}
/**/

.c-menu{
    color: #D3D3D3;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    width: fit-content;
    margin-left:auto;
    margin-bottom:22px;
}
.c-menu-area.active .c-menu{
    margin-top: -22px;
}
.c-menu__close{
    display:none;
}
.c-menu.crossed .c-menu__close{
    display:block;
}
.c-menu.crossed .c-menu__hamburger{
    display:none;
}

/*.o-main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
*/

.c-banner-area{
    position: relative;
}
.c-banner-area:before{
    content:"";
    width:100%;
    height:256px;
    position:absolute;
    left:0;
    top:0;
    z-index:9;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+85&1+0,0+85 */
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    backdrop-filter: blur(4px);
}
.c-banner-area:after{
    content:"";
    width:100%;
    height:420px;
    position:absolute;
    left:0;
    bottom:0;
    z-index:9;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+15,000000+100&0+15,1+100 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 15%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    backdrop-filter: blur(4px);
}
.c-banner-slider .item img{
    width:100%;
}

@media(min-width:1281px){
    .c-banner-slider .item img {
        height: 1080px;
        object-fit: cover;
    }
}

.c-banner-area button{
    position:absolute;
    left:90px;
    top:50%;
    transform:translateY(-50%);
    z-index:99;
    background: transparent;
    border:none;
}
.c-banner-area button.my-next{
    right:90px;
    left:auto;
}
.c-banner-area__caption{
    width:100%;
    left:0;
    bottom:85px;
    position:absolute;
    z-index: 99;
}
.c-banner-area__caption h1{
    color:#FEDFC1;
    font-size:80px;
    font-family:var(--msMadi);
    margin:0;
}
.c-banner-area__caption h2{
    color:#FFFFFF;
    font-family:var(--lora);
    font-size:60px;
    font-weight:400;
    margin:0;
}

.c-banner-links{
    padding:0;
    margin:0 0 15px;
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    column-gap:50px;
}
.c-banner-links > li a{
    color:rgba(255,255,255,0.66);
    font-size:20px;
    font-family:var(--lora);
    font-weight: 400;
}
.c-banner-links > li a:hover{
    color:#FFF;
    text-decoration:underline !important;
}
/**/


.c-home-body-area{
    padding:78px 0;
}

.c-section-heading{
    color:#9B1C1F;
    font-size:34px;
    font-weight:400;
    letter-spacing:2px;
    font-family:var(--lora);
    margin:0 0 25px;
}

.c-default-content-area__bg{
    position:relative;
    padding:75px 0;
}
.c-default-content-area__bg:before{
    content:"";
    width:100%;
    max-width:995px;
    height:100%;
    background:#FBF6F2;
    border-bottom:#9B1C1F 1px solid;
    position:absolute;
    right:0;
    top:0;
}
.c-default-content-area__bg--left:before{
    left:0;
    right:auto;
}
.c-default-content-area__bg > div{
    z-index:1;
    position:relative;
}

.c-default-content-area{
    width:100%;
    max-width:590px;
}
.c-default-content-area h2{
    color:#454545;
    font-size:34px;
    font-weight: 400;
    font-family: var(--lora);
    letter-spacing: 0;
    margin: 0 0 20px;
}
.c-default-content-area p{
    color:#0C1017;
    font-size:16px;
    font-weight:400;
    line-height:1.9em;
    letter-spacing:1px;
    margin:0 0 14px;
}
.c-default-content-area p a{
    color:#9B1C1F;
    text-decoration:underline !important;
}

.c-contact-info-area{
    max-width:100%;
    padding:0 0 0 135px;
}
.c-contact-info-area ul{
    padding:0;
    margin:35px 0 50px;
    list-style:none;
}
.c-contact-info-area ul > li{
    color:#0C1017;
    font-size:20px;
    font-weight:400;
    display:flex;
    align-items:center;
    margin:0 0 16px;
}
.c-contact-info-area ul > li span{
    width:104px;
}
.c-contact-info-area ul > li a{
    color:#9B1C1F;
    font-size:30px;
    font-weight:400;
    font-family: var(--lora);
}
.c-contact-info-area ul > li a:hover{
    color:#830003;
}
/**/

.c-inner-page-module{
    width:100%;    
    padding:30px 0 70px;
}
.c-inner-page-module.c-privacy-page{
    max-width:850px;
    margin:0 auto;
    display:block;
}


/*privacy css start*/

.c-content-sec h6{
    color:#9B1C1F;
    font-size:18px;
    line-height:1.5em;
    margin:0 0 22px;
}

.c-content-sec h3 {
    color: #454545;
    font-size: 34px;
    font-weight:400;
    font-family:var(--lora);
    letter-spacing:0;
    margin: 0 0 20px;
}

.c-content-sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #454545;
    margin: 0 0 15px 0;
}

.c-content-sec p strong {
    font-weight: 600;
}

.c-content-sec p:last-child {
    margin: 0;
}

.c-content-sec p a {
    color: #9B1C1F;
}

.c-content-sec p a:hover {
    color: #9B1C1F;
}

.c-content-sec ul {
    margin: 0 0 25px;
    list-style: none;
    padding: 0;
}

.c-content-sec ul > li {
    font-style: normal;
    font-weight:400;
    font-size: 16px;
    line-height: 35px;
    color: #454545;
    position: relative;
    padding-left: 28px;
}

.c-content-sec ul > li:before {
    content: "";
    width:4px;
    height:4px;
    position: absolute;
    left: 12px;
    top: 17px;
    background: #454545;
    border-radius:4px;
}

.c-content-sec ol {
    padding: 0 0 0 15px;
}

.c-content-sec ol > li {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    color: #4A4A4A;
    position: relative;
    margin: 0 0 9px;
}

.c-bg-color-row{
    background:#FBF6F2;
    border-bottom:#9B1C1F 1px solid;
}
.c-primary-row {
    padding:55px 75px;
    z-index: 1;
    position: relative;
}

.c-offwhite-bg{
    background:#FBF6F2;
    padding:55px 74px 30px;
}

.c-product-slider .item{
    padding:0 5px;
}

.c-product-slider__arrow{
    position:absolute;
    left:90px;
    top:50%;
    transform:translateY(-50%);
    z-index:99;
    background: transparent;
    border:none;
}
.my-next-product{
    right:90px;
    left:auto;
}

.c-slider-bottom-heading{
    background:#FBF6F2;
    text-align:center;
    border-bottom:#9B1C1F 1px solid;
    padding:35px 10px;
}
.c-slider-bottom-heading h4{
    color:#454545;
    font-size:34px;
    font-weight:600;
    margin:0;
}
/**/

.c-contact-form-area{
    background:#9B1C1F;
    padding:65px 140px;
    margin-top:75px;
}

.c-contact-form-area h3{
    color:#FBF6F2;
    font-size:34px;
    font-family:var(--lora);
    font-weight:400;
    letter-spacing:2px;
    margin:0;
}
.c-contact-form-area ol{
    padding:0;
    margin:10px 0 20px;
    list-style:none;
    display:flex;
    align-items:center;
    column-gap:38px;
}
.c-contact-form-area ol >li{
    position:relative;
    display:flex;
    align-items: center;
}
.c-contact-form-area ol >li input{
    left:0;
    top:0;
    position:absolute;
    display:none;
}
.c-contact-form-area ol >li span{
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:#FFFFFF 1px solid;
    margin-right:15px;
}
.c-contact-form-area ol >li span svg{
    pointer-events:none;
}
.c-contact-form-area ol >li input:checked + label span{
    background:#FFFFFF;
}
.c-contact-form-area ol >li label{
    font-size:16px;
    color:#FFFFFF;
    font-weight:400;
    letter-spacing:1px;
    position: relative;
    display: flex;
    align-items: center;
    margin:0;
    cursor: pointer;
}

.c-input-fld{
    display:block;
    margin-bottom:13px;
}
.c-input-fld label{
    color:#FFFFFF;
    font-size:13px;
    font-weight:400;
    letter-spacing:1px;
    margin:0 0 4px;
}
.c-custom-input-file{
    background:#FFCFD1;
    border-radius:15px;
    border:#FFFFFF 1px solid;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    height:60px;
    padding:3px;
    position:relative;
}
.c-custom-input-file input{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    opacity:0;
    cursor: pointer;
}
.c-custom-input-file h5{
    color:#222222;
    font-size:18px;
    font-weight:400;
    letter-spacing:1px;
    margin:0 0 0 18px;
}
.c-custom-input-file span{
    width:113px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    border:#FFF 1px solid;
    background:#9B1C1F;
    color:#FFFFFF;
    font-size:16px;
    font-weight:400;
    letter-spacing:1px;
    padding: 0 24px;
}

.c-input-fld .form-control{
    height:60px;
    background:#FFCFD1;
    padding:0 15px;
    border-radius:15px;
    border:#FFFFFF 1px solid;
    color:#222222;
    font-size:18px;
    font-weight:400;
}
.c-input-fld textarea.form-control{
    height:100px;
    padding:15px;
}
/**/


.o-footer{
    padding:45px 0;
    background:#FBF6F2;
    border-bottom:#9B1C1F 1px solid;
}
.o-footer__row{
    display:flex;
    align-items:center;
    column-gap:290px;
}

.c-footer-nav-area{
    display:flex;
    flex-wrap:wrap;
    column-gap:140px;
}
.c-footer-nav-area li.active {
    text-decoration: underline;
}
.c-footer-nav-left, .c-footer-nav-right {
    padding: 0;
    list-style: none;
    margin: 0;
}
.c-footer-nav-right > li, .c-footer-nav-left > li {
    display: block;
    margin: 0 0 22px;
}

.c-footer-nav-right > li a, .c-footer-nav-left > li a {
    color: #484848;
    font-size: 14px;
    font-weight:400;
    margin: 0;
}
.c-footer-nav-left > li a {
    font-size: 16px;
}
.c-footer-nav-right > li a:hover, .c-footer-nav-left > li a:hover{
    color:#9B1C1F;
}

.o-footer-contact{
    margin-left:auto;
}

.o-footer-contact h6{
    color:#484848;
    font-size:14px;
    font-weight:400;
    margin:0 0 5px;
}
.o-footer-contact__number{
    color: #9B1C1F;
    font-size: 34px;
    font-weight: 400;
    font-family: var(--lora);
    margin-bottom: 2px;
    display: inline-block;
}

.o-footer-contact p a{
    color:#000000;
    font-size:20px;
    font-weight:400;
    letter-spacing:1px;
    font-family: var(--lora);
}

.o-footer__bottom{
    padding:15px 0;
}
.o-footer__bottom .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.o-footer__bottom p{
    color:#909090;
    font-size:14px;
    font-weight:400;
    letter-spacing:0.5px;
    margin:0;
}
.o-footer__bottom p a{
    color:#474747;
    font-weight:600;
}
.o-footer__bottom p a:hover{
    color:#9B1C1F;
}
/* responsive */


@media screen and (min-width: 768px) {
   .c-menu{
        display:none;
    }
}

@media screen and (max-width: 1520px) {
   
}

@media screen and (max-width: 1440px) {
    
    .c-banner-area__caption h1 {
        font-size: 70px;
    }
    .c-banner-area__caption h2 {
        font-size: 40px;
    }
    .o-footer__row {
        column-gap: 250px;
    }
    .c-slider-bottom-heading h4 {
        font-size: 26px;
    }
}

@media screen and (max-width: 1199.98px) {
    .o-logo{
        width: 84px;
        display: inline-block;
    }
    .c-banner-area__caption{
        text-align:center;
    }
    .c-banner-area button {
        left: 30px;
    }
   .c-banner-area button.my-next {
        right: 30px;
    }
    .c-banner-links{
        justify-content:center;
        margin-top:40px;
    }
    .c-banner-area__caption {
        bottom: 45px;
    }
    .c-home-body-area {
        padding: 38px 0;
    }
    .c-default-content-area__bg {
        padding: 60px 0;
    }
    .c-default-content-area__bg:before {
        max-width: 636px;
    }
    .c-default-content-area__bg--left:before{
        max-width: 100% !important; 
        top: auto !important;
        bottom: 0 !important;
        height: 90% !important;
    }
    .c-default-content-area__bg--left img{
        margin:0 0 30px;
    }
    .c-welcome-img{
        width:100%;
        max-width:388px;
    }
    .o-footer__row {
        column-gap: 100px;
    }
    .c-footer-nav-area {
        column-gap: 80px;
    }
}



@media screen and (max-width:991.98px) {
    .o-logo {
        display: block;
    }    
    .c-default-content-area__bg{
        padding:30px 20px;
    }
    .c-default-content-area__bg:before {
        max-width: 100%;
        top: auto;
        bottom: 0;
        height: 50%;
    }
    .c-default-content-area__bg--for-about-page:before{
        height:100%;
    }    

    .c-welcome-img {
        width: 100%;
        max-width:100%;
    }
    .c-default-content-area{
        max-width:100%;
        padding:0;
        margin-top:30px;
    }
    .c-home-body-area .container{
        padding:0 !important;
    }
    .c-contact-form-area {
        padding:40px;
        margin-top: 40px;
    }
    .c-contact-form-area h3 {
        margin: 0 0 20px;
    }
    .o-footer__row{
        flex-direction:column;
        justify-content:flex-start;
        column-gap:0;
        row-gap:30px;
    }
    .o-footer-contact{
        margin:0 auto;
    }
}



@media screen and (max-width:767.98px) {
    .c-navbar-sup{
        display:none !important;
    }
    .o-main-header--inner {
        padding: 20px 0 32px;
        min-height: 163px;
    }
    .c-banner-area button svg{
        width:34px;
    }
    .c-banner-area button.my-next {
        right: 8px;
    }
    .c-banner-area button {
        left: 8px;
    }
    .c-banner-area__caption h1 {
        font-size: 50px;
    }
    .c-banner-links{
        flex-direction: column;
        row-gap: 15px;
        margin-bottom: 0;
        margin-top: -2px;
        background: #0B0908;
        padding: 30px 0;
        z-index: 1;
        position: relative;
    }
    .c-banner-area__caption .container{
        padding:0;
    }
    .c-primary-btn {
        min-width:238px;
        padding: 14px 20px;
    }
    .c-default-content-area__bg {
        padding: 0 20px 30px;
    }
    .c-default-content-area__bg--for-about-page{
        padding: 30px 20px 30px;
    }
    .c-contact-form-area ol {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 15px;
    }
    .o-footer {
        padding:35px 20px;
    }
    .o-footer img{
        width:81px;
        margin:0;
    }
    .o-footer__row {
        align-items: flex-start;
    }
    .o-footer-contact{
        margin:0;
    }
    .o-footer__bottom .container{
        flex-direction:column;
        row-gap:15px;
    }
}

@media screen and (max-width:575.98px) {
    .c-phn-number{
        display:inline-flex !important;
        margin:0 20px 0 0;
    }
    .c-banner-area:before {
        height: 200px;
    }
    .c-banner-area:after {
        height: 355px;
    }
    .c-primary-row {
        padding: 25px 20px;
    }
    .c-inner-page-module {
        padding: 30px 0;
    }
    .c-offwhite-bg {
        padding: 5px 20px 30px;
    }
    .c-default-content-area p {
        line-height: 1.4em;
    }
    .my-prev-product {
        left:30px;
    }
    .my-next-product {
        right:30px;
    }
    .c-default-content-area__bg--left img{
        margin:0;
    }
    .c-contact-info-area ul > li a {
        font-size: 24px;
    }
    .c-contact-info-area ul > li{
        flex-direction:column;
        align-items:flex-start;
    }
    .c-default-content-area__bg--left:before {
        height: 95% !important;
    }
}

@media (min-width:576px) {
    
}
