/*-----------------------------------------------------------------------------------
    CSS INDEX
    =========================================
    01. header css here
-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Acumin';
    src: url('../fonts/acumin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Causten';
    src: url('../fonts/Causten-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

:root {
    --theme-color: #d31111;
    --theme-color2: #FDEFE1;
    --secondary-color: #474442;
    --text-color: #474442;
    --title-color: #474442;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-font: "Poppins", sans-serif;
    --title-font: "Acumin";
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: var(--text-font);
    line-height: 1.5;
    font-weight: 400;
    vertical-align: baseline;
    background: #ffffff;
    color: var(--text-color);
}

body {
    font-size: 15px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--text-font);
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: var(--text-color);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-size: 14px;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

a:active,
a:hover,
a:focus {
    text-decoration: none;
}

a:active,
a:hover,
a:focus {
    outline: 0 none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.grid-container {
    max-width: 90rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}

/*----------- Theme Buttons ==========*/
.theme-btn {
    font-size: 14px;
    color: var(--color-white);
    padding: 14px 20px;
    transition: var(--transition);
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    z-index: 1;
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover, .theme-btn:active, .theme-btn:focus {
    color: var(--color-white);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn span {
    margin-right: 5px;
}

.btn {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: var(--theme-color);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    line-height: 55px;
    padding: 0px 35px;
    text-transform: capitalize;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    letter-spacing: 0.9px;
}

.btn i {
    position: relative;
    top: 1px;
    left: 5px;
}

.btn::before {
    content: "";
    background: var(--secondary-color);
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn::after {
    content: "";
    background: var(--secondary-color);
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn:focus, .btn:focus:active {
    box-shadow: none;
    color: #ffffff;
}

.btn:hover {
    color: #ffffff;
}

.btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn:active {
    color: #fff !important;
}

.btn-link {
    font-weight: 600;
    font-size: 18px;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    position: relative;
}

.btn-link i {
    margin-left: 5px;
    transition: .3s all ease-in-out;
}

.btn-link:hover, .btn-link:focus, .btn-link:active {
    color: var(--theme-color);
}

.btn-link:hover i {
    transform: translateX(7px);
}

[data-animate] {
    opacity: 0;
}

[data-animate].animate__animated {
    opacity: 1;
}

.btn.bg-white {
    background: #fff;
    color: var(--text-color);
}

.btn.bg-white::before {
    content: "";
    background: var(--theme-color);
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn.bg-white::after {
    content: "";
    background: var(--theme-color);
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn.bg-white:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.btn.bg-white:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn.bg-white:hover {
    color: #ffffff;
}



.btnblk {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
     background: var(--secondary-color);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    line-height: 55px;
    padding: 0px 35px;
    text-transform: capitalize;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    letter-spacing: 0.9px;
}

.btnblk i {
    position: relative;
    top: 1px;
    left: 5px;
    font-size: 18px;
}

.btnblk::before {
    content: "";
    background: var(--theme-color);

    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btnblk::after {
    content: "";
      background: var(--theme-color);
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btnblk:focus, .btnblk:focus:active {
    box-shadow: none;
    color: #ffffff;
}

.btnblk:hover {
    color: #ffffff;
}

.btnblk:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.btnblk:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/*============ Header ================*/
/** main-header **/
.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.main-header {
    position: relative;
}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-style-one {
    position: absolute;
    left: 0px;
    top: 30px;
    width: 100%;
}

.header-style-one .outer-box {
    background: #fff;
    border-radius: 60px;
    padding: 0px 15px;
}

.main-header .menu-right-content {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .link-box a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    font-family: var(--text-font);
    color: #535353;
    font-weight: 500;
    text-transform: capitalize;
}

.main-header .menu-right-content .theme-btn {
    padding: 20px 35px;
    display: inline-flex;
}

.logo-box {
    /* width: 150px; */
}

/** main-menu **/
.main-menu {
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation>li {
    position: inherit;
    float: left;
    z-index: 2;
    margin: 0px 19px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    padding-top: 31px;
    padding-bottom: 31px;
    font-weight: 500;
    font-family: var(--text-font);
    opacity: 1;
    color: #535353;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation>li.dropdown>a {
    padding-right: 17px;
}

.main-menu .navigation>li.current {
    color: var(--theme-color);
}

.header-style-one .main-menu .navigation>li>a:after {
    background: var(--theme-color);
}

.main-menu .navigation>li.current>a, .main-menu .navigation>li:hover>a, .main-menu .navigation>li>ul>li>a:hover, .main-menu .navigation>li>.megamenu li>a:hover, .main-menu .navigation>li>ul>li>ul>li>a:hover {
    color: var(--theme-color);
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {}

.main-menu .navigation>li.dropdown>a:before {
    position: absolute;
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    top: 31px;
    right: 0px;
    font-weight: 500;
    transition: all 500ms ease;
}

.header-style-one .main-menu .navigation>li>a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    right: 0px;
    bottom: 0px;
    transform: scale(0, 0);
    transition: all 500ms ease;
}

.header-style-one .main-menu .navigation>li.current>a:after,
.header-style-one .main-menu .navigation>li:hover>a:after {
    transform: scale(1, 1);
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: 230px;
    margin-top: 15px;
    padding: 15px 30px;
    z-index: 100;
    display: none;
    background: #fff;
    opacity: 0;
    border-bottom: solid;
    border-width: 3px;
    visibility: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
}

.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>.megamenu li>a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: #535353;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu li>a {
    padding-left: 0px;
}

.main-menu .navigation>li>.megamenu h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>.megamenu li>a:hover {
    letter-spacing: 1px;
}

.main-menu .navigation>li>ul>li:last-child>a,
.main-menu .navigation>li>.megamenu li:last-child>a {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f105";
    position: absolute;
    right: 0px;
    top: 6px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0%;
    margin-left: 30px;
    width: 230px;
    margin-top: 15px;
    padding: 15px 30px;
    z-index: 100;
    display: none;
    background: #fff;
    opacity: 0;
    border-bottom: solid;
    border-width: 3px;
    visibility: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul:before {
    position: absolute;
    content: '';
    background: transparent;
    width: 30px;
    height: 100%;
    left: -30px;
    top: 0px;
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: #535353;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
    letter-spacing: 1px;
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    top: 100%;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: var(--theme-color);
    display: none;
}

.mobile-menu .nav-logo img {
    max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 20px;
    display: block;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}

/** megamenu-style **/
.main-menu .navigation>li.dropdown>.megamenu {
    position: absolute;
    width: 100%;
    padding: 30px 50px;
    left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    margin-bottom: 10px;
}

/** mobile-menu **/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
    padding-bottom: 55px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    right: 100%;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #141417;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 300ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 65px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

/*=========== banner ================*/
.blusion-hero-section {
    height: 100vh;
    overflow: hidden;
    /* background-color: #FDEFE1; */
}
#sliderSection{
    background: url("../images/slider_bg1.jpg");
}
.herocntsec {
    display: flex;
    align-items: center;
    /* gap: 50px; */
    padding-top: 135px;
    height: 100vh;
    justify-content: center;
}

.herocnt {
    width: 47%;
    flex-shrink: 0;
}

.heroimg {
    width: 50%;
    flex-shrink: 0;
}

.heroimg img {
    animation-name: c;
    animation-delay: .2s;
    animation-duration: 2s;
    animation-fill-mode: both;
    transition: all .5s ease 0s;
    /* height: 600px; */
}

.slider-bg-2 {
  background: url("../images/slider_bg2.jpg") no-repeat center center;
  background-size: cover;
}

.slider-bg-3 {
  background: url("../images/slider_bg3.jpg") no-repeat center center;
  background-size: cover;
}
#sliderSection {
    background-position: center center !important;
  transition: background 0.6s ease-in-out, background 0.6s ease-in-out;
}
@keyframes c {
    0% {
        opacity: 0;
        transform: scale3d(.9, .9, .9)
    }

    50% {
        opacity: 1
    }
}

@keyframes e {
    0% {
        opacity: 0;
        transform: translate3d(-15%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes f {
    0% {
        opacity: 0;
        transform: translate3d(0, 80%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.herocnth1 h1, .herocnth1 h2 {
    font-family: var(--title-font);
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 7px;
    line-height: 0.9;
    margin-bottom: 25px;
    /* animation-name: f;
    animation-delay: 0.3s;
    animation-duration: 1.5s;
    animation-fill-mode: both; */
    text-transform: capitalize;
}

.herocnth1 h1 .concepttd, .herocnth1 h2 .concepttd {
    animation-name: e;
    animation-delay: 0.3s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.herocnth1 h1 .creationtd, .herocnth1 h2 .creationtd {
    animation-name: e;
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.herocnth1 h1 .yourtd, .herocnth1 h2 .yourtd {
    animation-name: e;
    animation-delay: 0.7s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.herocnth1 h1 .herovison, .herocnth1 h2 .herovison {
    animation-name: e;
    animation-delay: 0.7s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.herocnth1 h1 .ourtd, .herocnth1 h2 .ourtd {
    animation-name: e;
    animation-delay: 0.9s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.herocnt .btn {
    animation-name: c;
    animation-delay: 1.1s;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    transition: none !important;
}
.abtsecin .info a.btn-link {
    color: #fff;
}
.herocnth1 h1 span.concepttd, .herocnth1 h2 span.concepttd {
    color: #A0A8BC;
    font-family: 'Causten';
    font-weight: 300;
    letter-spacing: 0.13px;
    font-size: 75px;
}

.herocnth1 h1 span.herovison, .herocnth1 h2 span.herovison {
    font-size: 90px;
    color: #A0A8BC;
    font-family: 'Causten';
    font-weight: 300;
    letter-spacing: 0.13px;
}

.leafimg {
    position: absolute;
    top: -43px;
    right: 200px;
    width: 170px;
    animation-name: c;
    animation-delay: 1.8s;
    animation-duration: 2s;
    animation-fill-mode: both;
    transition: all .5s ease 0s;
}

.herocnth1 {
    position: relative;
}

.slick-dots li button:before {
    background: var(--theme-color);
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.slick-dots li, .slick-dots li button {
    width: 15px;
    height: 15px;
}

.slick-dots li.slick-active button:before {
    color: var(--theme-color);
}

/*============ Title ==================*/
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    z-index: 9;
}

.title-bg {
    font-size: 150px;
    letter-spacing: 0.9px;
    color: #DCDCDC;
    text-transform: uppercase;
    opacity: 0.2;
    margin: 0;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1;
}

.title-front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    letter-spacing: 0.3px;
    color: #474442;
    text-transform: uppercase;
    opacity: 1;
    margin: 0;
    font-weight: 600;
    font-family: var(--title-font);
    font-size: 55px;
}

/*========= homeabout ================*/
.hmaboutsec {
    padding: 70px 0px;
}

.aboutabs .tabs {
    display: flex;
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.aboutabs .tabs-title {
    margin: 0;
}

.aboutabs .tabs-title a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    background: transparent;
}

.aboutabs .tabs-title.is-active a {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.aboutabs .tabs-content {
    padding: 10px 0;
    border: none;
}

.aboutabs .tabs-panel {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.aboutsecnt {
    display: flex;
    gap: 40px;
}

.abutimgsec {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: end;
}

.aboutabs {
    width: 50%;
    flex-shrink: 0;
}

.tabs-panel h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
}
.mivi_cunt h4 {
    margin-bottom: 7px;
    font-size: 14px !important;
    position: relative;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--text-font) !important;
    letter-spacing: unset !important;
}
ul.pinkimg li:last-child, ul.pinkimg li:last-child p{
    margin-bottom: 0 !important;
}
.mivi_cunt {
    position: relative;
    /* margin-left: 25px; */
}
ul.pinkimg li{
    position: relative;
}
ul.pinkimg {
    margin-left: 25px;
}
ul.pinkimg li::before {
    position: absolute;
    content: "";
    background: url(../images/pink_arrow.png);
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    left: -25px;
    top: 5px;
    background-size: contain;
}
.abtsecin {
    border-radius: 25px;
    width: 425px;
    padding: 15px;
    background: transparent linear-gradient(90deg, #ECECEC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    position: relative;
}

.about-three__img-video {
    position: absolute;
    bottom: 50%;
    right: 50%;
    z-index: 5;
    transform: translate(35px, 35px);
}

.about-three__img-video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.about-three__img-video-icon .ri-play-fill {
    font-size: 28px;
    color: var(--theme-color);
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

.about-three__img-video-icon:hover {
    background-color: #fff;
}

/* .about-three__img-video-icon:before {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: #fff;
    opacity: 0.6;
}
.about-three__img-video-icon:after {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    z-index: -1;
   background-color: #fff;
    opacity: 0.45;
}
.about-three__img-video-icon .ripple,
.about-three__img-video-icon .ripple:before,
.about-three__img-video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}
.about-three__img-video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}
.about-three__img-video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
} */
.abtintro {
    position: relative;
}

.abtintro .info {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: block;
    padding: 25px 25px 20px 25px;
    color: #fff;
    left: 0;
    bottom: 0;
    background: transparent;
    background: transparent linear-gradient(180deg, #14121200 0%, #000000 100%) 0% 0% no-repeat padding-box;
    box-sizing: border-box;
    border-radius: 10px;
}

.info h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}

.rotateimg {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 120px;
    height: 120px;
    z-index: 99;
    animation: 20s linear 0s infinite normal none running cir36;
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.abutimginner {
    position: relative;
}

.abutimginner::before {
    content: "";
    position: absolute;
    left: -461px;
    top: -135px;
    height: 905px;
    width: 941px;
    background: url(../images/abtbg.png) no-repeat;
    background-size: contain;
}

/*=========== Timeline ===============*/
.timeline {
    position: relative;
    margin: 50px auto 0px auto;
    padding: 40px 0;
    width: 1000px;
    box-sizing: border-box;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 85%;
    background: #c5c5c5;
}

.timeline ul {
    padding: 0;
    margin: 0;
}

.timeline ul li {
    list-style: none;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
    padding: 0px 0px 0px 70px;
}

.timeline ul li:nth-child(even) {
    padding: 0px 70px 0px 0px;
}

.timeline ul li:nth-child(odd) {
    float: right;
    text-align: left;
    clear: both;
}

.timeline ul li:nth-child(even) {
    float: left;
    text-align: right;
    clear: both;
}

.content {
    padding-bottom: 0px;
}

.timeline ul li:nth-child(1):before {
    content: '1' !important;
}

.timeline ul li:nth-child(2):before {
    content: '2' !important;
}

.timeline ul li:nth-child(3):before {
    content: '3' !important;
}

.timeline ul li:nth-child(4):before {
    content: '4' !important;
}

.timeline ul li:nth-child(5):before {
    content: '5' !important;
}
.timeline ul li:nth-child(6):before {
    content: '6' !important;
}
.timeline ul li:nth-child(7):before {
    content: '7' !important;
}
.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    left: -30px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    z-index: 9;
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    right: -30px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    z-index: 9;
}

.timeline ul li:nth-child(odd)::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 30px;
    left: -30px;
    background: transparent linear-gradient(180deg, #C6C5C5ED 0%, #80808000 100%) 0% 0% no-repeat padding-box;
    pointer-events: none;
}

.timeline ul li:nth-child(even)::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 30px;
    right: -30px;
    background: transparent linear-gradient(180deg, #C6C5C5ED 0%, #80808000 100%) 0% 0% no-repeat padding-box;
    pointer-events: none;
}

.timeline ul li h3 {
    padding: 0;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
}

.timeline ul li:nth-child(odd) h3:before {
    content: '';
    position: absolute;
    left: 0%;
    width: 340px;
    height: 2px;
    background: #9c9a9a;
    top: 33px;
    z-index: 8;
}

.timeline ul li:nth-child(odd) h3::after {
    content: '';
    position: absolute;
    left: 65%;
    width: 20px;
    height: 20px;
    background: #9c9a9a;
    top: 24px;
    border-radius: 50%;
    z-index: 8;
}

.timeline ul li:nth-child(odd) .shawdowbg::after {
    content: '';
    position: absolute;
    height: 60px;
    top: 35px;
    left: 0px;
    background: transparent linear-gradient(180deg, #C6C5C5ED 0%, #80808000 100%) 0% 0% no-repeat padding-box;
    pointer-events: none;
    width: 344px;
}

.timeline ul li:nth-child(even) h3:before {
    content: '';
    position: absolute;
    right: 0%;
    width: 340px;
    height: 2px;
    background: #9c9a9a;
    top: 33px;
    z-index: 8;
}

/* .timeline ul li:nth-child(2) h3:before{
    width: 360px !important; 
} */
.timeline ul li:nth-child(even) h3::after {
    content: '';
    position: absolute;
    right: 67%;
    width: 20px;
    height: 20px;
    background: #9c9a9a;
    top: 25px;
    border-radius: 50%;
    z-index: 8;
}

.timeline ul li:nth-child(even) .shawdowbg::after {
    content: '';
    position: absolute;
    height: 60px;
    top: 34px;
    right: 0px;
    background: transparent linear-gradient(180deg, #C6C5C5ED 0%, #80808000 100%) 0% 0% no-repeat padding-box;
    pointer-events: none;
    width: 354px;
}

.timeline ul li p {
    margin: 10px 0 0;
    padding: 0;
}

.timeline ul li:nth-child(1) .time:before {
    content: none !important;
}

.timeline ul li:nth-child(5) .time:after {
    content: none !important;
}

.timeline ul li .time:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #e8e7e7, #e8e7e7 5px, transparent 5px, transparent 10px);
    bottom: 75px;
    height: 200px;
}

.timeline ul li .time:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #e8e7e7, #e8e7e7 5px, transparent 5px, transparent 10px);
    top: 75px;
    height: 230px;
}

.timeline ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.timeline ul li .time img {
    height: 55px;
}

.timeline ul li:nth-child(odd) .time {
    position: absolute;
    top: 12px;
    left: -165px;
    margin: 0;
    padding: 8px 16px;
    color: #fff;
}

.timeline ul li:nth-child(even) .time {
    position: absolute;
    top: 12px;
    right: -165px;
    margin: 0;
    padding: 8px 16px;
    color: #fff;
}

.timeline ul li:nth-child(odd) .content img {
    margin-left: 75px;
}

.timeline ul li:nth-child(even) .content img {
    margin-right: 75px;
    margin-left: -75px;
}

.timeline .content img {
    margin-top: 29px;
    border-radius: 4px;
}

@media(max-width:1000px) {
    .timeline {
        width: 100%;
    }
}

@media(max-width:767px) {
    .timeline {
        width: 100%;
        padding-bottom: 0;
        margin: 20px auto 0px auto;
    }

    .timeline:before {
        left: 20px;
        height: 100%;
    }

    .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even) {
        width: 100%;
        text-align: left;
        padding: 0px 0px 20px 60px !important;
        padding-bottom: 50px;
    }

    .timeline ul li:nth-child(odd):before,
    .timeline ul li:nth-child(even):before {
        top: 0px;
        left: -5px;
    }

    .timeline ul li:nth-child(odd) .time,
    .timeline ul li:nth-child(even) .time {
        top: -30px;
        left: 50px;
        right: inherit;
    }
}

/*=========== Trusted brands ============*/
section.trusted-brands {
    position: relative;
    background: #f5d0ba;
    padding-top: 140px;
    height: 600px;
    overflow: hidden;
}

section.trusted-brands:before {
    content: "";
    background-image: url(../images/brnadbg2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    margin: auto;
    opacity: 0.85;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    width: 260px;
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
}

section.trusted-brands:after {
    content: "";
    background-image: url(../images/brnadbg1.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    margin: auto;
    opacity: 0.85;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    width: 300px;
    -webkit-transform: translateY(-85%);
    transform: translateY(-85%);
}

.brandslidersec {
    position: relative;
}

.bottle-container {
    position: absolute;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    right: 0px;
    top: -269px;
}

.bottle-img {
    max-width: 440px;
    margin-left: 0px;
}

.bottle-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%);
}

.logo-slider {
    width: 100%;
    margin: 0 auto;
    padding-top: 45px;
    position: absolute;
    bottom: -260px;
    top: unset;
}

.logo-slider img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    cursor: pointer;
    margin: 0 auto;
}

.logo-slider .slick-prev,
.logo-slider .slick-next {
    background: var(--theme-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    position: absolute;
    font-size: 32px;
    color: #fff;
    top: 55%;
    cursor: pointer;
}

.logo-slider .slick-prev:before,
.logo-slider .slick-next:before {
    color: #fff;
    font-size: 20px;
}

.logo-slider .slick-prev:before, .logo-slider .slick-next:before, .slick-next:before, .slick-prev:before {
    content: none;
}

.logo-slider .slick-prev {
    left: -80px;
}

.logo-slider .slick-next {
    right: -80px;
}

.trustedtitle h2 {
    color: #664734;
    font-family: var(--title-font);
    font-size: 124px;
    font-weight: bold;
    letter-spacing: 0.6px;
    line-height: 1;
    margin-bottom: 20px;
}

.trustedtitle p {
    color: #664734;
    font-family: var(--title-font);
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 2.5px;
    line-height: 0;
}

.trustedtitle p span {
    margin: 0px 20px;
}

.trustedtitle {
    text-align: center;
}

.slick-center .item {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    opacity: 1;
    transform: scale(1.08);
    background: transparent;
}

.item {
    /* background: #f8f2ec; */
    background: transparent;
    color: #3498db;
    font-size: 36px;
    line-height: 100px;
    margin: 5px;
    padding: 2%;
    position: relative;
    text-align: center;
}

.slick-slide.slick-center .item {
    margin: 10px;
}

.btlespace {
    width: 200px;
}

.mhide {
    display: block;
}

.mshow {
    display: none;
}

/*============ Sustainbility ==========*/
section.sustainabilitysec {
    padding: 70px 0px;
    padding-bottom: 150px;
}

.sustainabilitybxsec {
    display: flex;
    gap: 10px;
}

.susbx {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.susimgbx {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.susimgbx img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.susimgbxcnt {
    position: absolute;
    bottom: 0px;
    padding: 20px 20px;
    z-index: 9;
    width: 100%;
}

/* .sustainabilitybxsec .susbx:nth-child(2) .susimgbx::before {
    content: "";
    bottom: 0;
    position: absolute;
    height: 35%;
    width: 100%;
    z-index: 9;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.60) 40%, rgba(22, 22, 23, 0) 80%, rgba(0, 0, 0, 0) 100%);
    border-radius: 4px;
    opacity: 0.95;
} */
.sustainabilitybxsec .susbx:nth-child(2) .susimgbx::before {
    content: "";
    bottom: 10px;
    position: absolute;
    height: 28%;
    width: 95%;
    z-index: 9;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.60) 40%, rgba(22, 22, 23, 0) 80%, rgba(0, 0, 0, 0) 100%); */
    background: #697029;
    border-radius: 4px;
    opacity: 0.95;
    margin: 0px auto;
    left: 0;
    right: 0;
}
.susimgbxcnt h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.susimgbxcnt p {
    color: #fff;
}

.sustainabilitybxsec .susbx:not(:first-child) {
    text-align: center;
}

.sustainabilitybxsec .susbx:not(:first-child) .susimgbx {
    height: 352px;
}
.sustainabilitybxsec .susbx:nth-child(2) .susimgbx {
    height: auto;
}


.sustainabilitybxsec .susbx:nth-child(2) {
    height: 714px;
}

.certificatebx {
    padding: 20px;
    padding-top: 0px;
}

.certificatebx h4 {
    font-size: 44px;
    color: var(--text-color);
    font-weight: bold;
    font-family: var(--title-font);
    margin-bottom: 0px;
    letter-spacing: 1.5px;
}

.certificatebx p {
    margin-bottom: 0px;
    font-size: 15px;
}

.certificatebx img {
    width: 180px;
    margin-bottom: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 13px -19px; */
}

.sustainabilitybxsec .susbx:nth-child(2) .btn::before {
    background: #fff;
}

.sustainabilitybxsec .susbx:nth-child(2) .btn::after {
    background: #fff;
}

.sustainabilitybxsec .susbx:nth-child(2) .btn:hover {
    color: var(--text-color);
}
.certifications_sec a.susbtn.btn.bg-white {
    background: var(--secondary-color);
    color: var(--color-white);
}
/*============ Get Quote ================*/
.hmgetsec {
    background: url('../images/getbg.jpg');
    /* height: 550px; */
    height: 480px;
    background-repeat: no-repeat;
    background-size: cover;
}

.quote-title {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 30px;
    font-family: var(--title-font);
    letter-spacing: 1.5px;
}

.form-section label {
    font-size: 14px;
    color: #888;
}

.form-section input,
.form-section select, .form-section textarea {
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0, 0.09);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    color: #000;
    outline: none;
}

.form-section input:focus,
.form-section select:focus, .form-section textarea:focus {
    border: none;
    border-bottom: 1px solid var(--theme-color);
    box-shadow: none;
}

.form-section .form-error {
    font-size: 12px;
    position: absolute;
    font-weight: 500;
}

.form-divider {
    border-top: 1px solid var(--theme-color);
    margin: 2rem 0;
}

.getfmsec {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 30px 80px #00000029;
    border-radius: 13px;
    width: 590px;
    /* height: 680px; */
    height: 620px;
    margin-top: -63px;
    padding: 40px 40px;
}
.hmgetcunt p {
    font-size: 16px;
    margin-bottom: 33px;
}
.getfmsec .cell {
    margin-bottom: 20px;
    position: relative;
}

.getfmsec .cell:last-child {
    margin-bottom: 0px;
}

.getbtnsec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.getbtnsec button, .getbtnsec a {
    width: 47%;
}

.getbtnsec .btn-one {
    border-radius: 5px !important;
    height: 55px;
    line-height: 56px;
    padding: 0px;
}

.getbtnsec .btn-one.contact {
    background: #FDEFE1;
    color: var(--text-color);
}

.getbtnsec .btn-one.contact::before {
    background: #f7e6d6;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/*============ Contract MAnufacture ================*/
section.contractmanufacsec {
    padding: 110px 0px 130px 0px;
}

.contractitemimg {
    margin-bottom: 10px;
}

.contractitmcnt p {
    font-size: 14px;
    color: #929292;
    margin-bottom: 10px;
}
section.contractmanufacsec .section-title p {
    width: 63%;
    margin: 0px auto;
    color: #929292;
}
.contractitmcnt h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.itembx {
    margin: 0px 7px;
}

.contractitmcnt {
    padding: 10px 0px;
}

.contractitmcnt a {
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: underline;
}

.contractitmcnt a:hover img {
    transform: translateX(7px);
    transition: .3s all ease-in-out;
}

.contractitmcnt a img {
    width: 20px;
}

#contractslider .slick-arrow {
    position: absolute;
    bottom: -90px;
    left: 50%;
    width: 200px;
    height: 53px;
    background: var(--theme-color);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    top: unset;
    font-size: 14px;
}

#contractslider .slick-next {
    transform: translate(20px, 0px);
}

#contractslider .slick-prev {
    transform: translate(-200px, 0px);
}

#contractslider .slick-arrow.slick-disabled {
    background: #F2F2F2;
    color: #2B2B2B;
}

#contractslider .slick-arrow i {
    font-size: 20px;
}

.image-box-4 {
    position: relative;
    overflow: hidden;
}

.image-box-4:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition-duration: 0.5s;
}

.image-box-4:hover::before {
    animation-name: image-box-4-animation;
    animation-duration: 1s;
}

@keyframes image-box-4-animation {
    0% {
        left: -100%;
    }

    100% {
        left: 125%;
    }
}

/*=============== Breadcrumb styles =======*/
.page-breadcrumb-area {
    padding-top: 220px;
    padding-bottom: 120px;
    height: 400px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.te-page-title {
    font-family: var(--title-font);
    color: var(--text-color);
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 0.7;
    margin-bottom: 0px;
}

.te-breadcrumb-list ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.te-breadcrumb-list ul li:first-child:before {
    content: none;
}

.te-breadcrumb-list ul li:before {
    content: "/";
    font-size: 24px;
    color: var(--text-color);
    font-family: "Font Awesome 6 Pro";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 15px;
    text-align: center;
    justify-content: center;
}

.te-breadcrumb-list ul li {
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.te-breadcrumb-list ul li a {
    color: var(--text-color);
}

.te-breadcrumb-list ul li.active {
    color: var(--theme-color);
}

.te-breadcrumb-wrapper {
    padding-left: 50px;
}

/*============= About page ===========*/
.abtcardsec .grid-x.pd-0 {
    margin-bottom: 40px;
}

.grid-x.pd-0 {
    padding: 0px;
}

.grid-container.pd-0 {
    padding: 0px;
}

.cell.pd-0 {
    padding: 0px;
}

.img-block {
    background-position: center center;
    background-size: cover;
    height: 100%;
    display: block;
    width: 100%;
    height: 550px;
    text-align: center;
}

.img-block img {
    height: 100%;
}

.img-block__1 {
    /* background-color: #f0f0f0; */
}

.img-block__2 {
    /* background-color: #D4DBC9; */
}

.vmcnt {
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: baseline;
    justify-content: center;
}
section.contractmanufacsec .contractitem .itembx .image-box-4 img{
    height: 100%;
    width: 100%;
}
.vmcnt h3 {
    font-size: 42px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0px;
}
.m-20{
    margin-bottom: 20px !important;
}
.vmcnt h3 span {
    color: var(--theme-color);
    font-weight: 700;
}
span.in-block{
    display: block;
}
.vmcnt p {
    color: var(--text-color);
    font-size: 14px;
}

.vmcnt ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: var(--text-font);
    color: var(--text-color);
}
ul.pinkimg li{
    display: block;
    margin-bottom: 15px;
}
.vmcnt ul li span {
    font-weight: 600;
    margin-right: 20px;
    min-width: 120px;
}
/*============ certifications =============*/

section.certifications{
    background: url(../images/certifications_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0px;
    margin: 60px auto;
    max-width: 90rem;
    width: 100%;
}
.certifications_sec {
    padding-left: 80px;
}
.certifications_sec h3 {
    font-family: var(--title-font);
    color: var(--text-color);
    font-size: 75px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0px;
}
.certifications_sec h4 {
    font-size: 35px;
    margin: 30px 0px;
}
span.white {
    color: var(--color-white);
}
.certifications_sec ul li {
    display: flex;
    align-items: center;
}

.certifications_sec ul li h5 {
    color: #fff;
}

.certifications_sec ul li h2 {
    background: #ffffff4a;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.certifications_sec ul li h2 span {
    display: flex;
    align-items: center;
    background: #fff;
    height: 30px;
    width: 30px;
    justify-content: center;
    border-radius: 50%;
}
/*============ certifications End=============*/


/*============ whychoosesec =============*/
section.whychoosesec {
    margin: 60px 0px;
    background: #F6F6F6;
    padding: 80px 0px;
}

.whychoosesec_box {
    background: var(--color-white);
    margin: 15px;
    padding: 50px 20px;
    text-align: center;
}

.whychoosesec_box h3 {
    color: var(--color-black);
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0px 7px;
}

.whychoosesec_box p {
    width: 75%;
    margin: 0px auto;
}

.whychoosesec_box img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

/*============ whychoosesec End=============*/

/*============ Conatct us =============*/
.contact-section {
    padding: 50px 0px;
    margin: auto;
}

.contact-section .section-title {
    text-align: center;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--text-color);
    font-size: 46px; 
    letter-spacing: 1.5px;
    margin-bottom: 0px;
    line-height: 1;
}

.section-subtitle {
    text-align: center;
    max-width: 80%;
    margin: 10px auto 10px;
    line-height: 1.6;
    color: #666;
}

.contact-wrapper {
    display: flex;
    gap: 20px;
}
.contact-details{
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.contact-form{
    background: #F7F7F7;
    width: 40%;
    flex-shrink: 0;
      padding: 50px 30px;
}

.contact-form, .contact-details {
    border-radius: 8px;
}

.contact-toggle {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-toggle input[type="radio"] {
    appearance: none !important;
    border: 2px solid #ccc !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    position: relative;
    margin: 0px !important;
}

.contact-toggle input[type="radio"]:checked {
    border: 6px solid var(--theme-color) !important;
}

.contact-toggle span {
    font-size: 18px;
    font-weight: 500;
    color:var(--text-color);
}
.contact-toggle span
.contact-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

/* .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
} */

.form-group label {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    height: 50px;
    margin-bottom: 10px;
}
.form-error{
    font-weight: 500; 
    margin-bottom: 0px;
}
span.red {
    color: #cc4b37;
}
.suscnt ul li p {
    margin-bottom: 0;
}
select.select.is-invalid-input {
    color: #cc4b37;
}
.form-group input:focus,
.form-group textarea:focus {
  border: none;
  box-shadow: none;
}
textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.contact-details h3 {
    margin-top: 0;
    font-size: 46px;
    font-weight: 700;
    font-family: var(--title-font);
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    gap: 20px; 
    border: 1px solid #F0F0F0;
}

.detail-item.full {
    flex: 1 1 100%;
}

.icon {
    font-size: 24px;
    background: #474442;
    padding: 10px;
    flex-shrink: 0;
    width: 56px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon img{
    height: 25px;
}
.detail-item strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-item p {
    margin: 2px 0 0;
    font-size: 14px;
}
.detail-item p a{
    color: var(--text-color);
}
.contact-form .btnblk{
    width: 200px;
    margin-top: 20px; 
}
.faqsec{
    background: #F7F7F7;
    padding: 80px 50px;
    margin-top: 60px;
}
.faqsec .section-title{
    width: 40%;
    margin: 0 auto;
}
.faqcntdv {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-top: 50px;
}
.faqaccdn {
    width: 48%;
    flex-shrink: 0;
}
.faqimg {
    width: 48%;
    flex-shrink: 0;
}
.accordion{
    background: transparent;  
}
li.accordion-item{
    margin-bottom: 20px;
}
.accordion-title{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 8px !important;   
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #1E2424;
}
.accordion-content{
    border:none !important;
    color:var(--text-color);
    font-size: 14px;
}
.accordion-title:hover, .accordion-title:focus{
    background-color: #fff;
    color: #1E2424;
}
.accordion-title::before {
    background: #474442;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
}
:last-child:not(.is-active) > .accordion-title{
    border: none !important;
}
section.mapsec {
    margin-bottom: -100px;
}
/*============ Contract manufacturing ========*/
section.contractdv-section {
    padding: 60px 0px 0px 0px;
}
.con-img-holder, .con-box .concontent {
    width: 50%;
}
.concontent h4{
    /* color:var(--title-color); */
    /* font-family: var(--title-font); */
    /* font-size: 20px; */
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    /* line-height: 1; */
}
.concontent p{
    line-height: 1.7;
    margin: 0px;
} 
.form_reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#form_sucess {
    padding: 30px;
}

div#form_sucess p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}
.con-box{
    justify-content: center;
}
/* .contractdv-section .grid-container .grid-x:nth-child(odd) .con-img-holder{
  float: left;
  margin-right: 45px;
}
.contractdv-section .grid-container .grid-x:nth-child(even) .con-img-holder{
  float: right;
  margin-left: 45px;
} */



 .joinmilor{
    background-image: url(../images/joinbg.jpg);
    height: 245px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0px;
 }
 .joinimg {
    width: 300px;
    position: absolute;
    top: -120px;
    right: 185px;
}
.joincntsec {
    width: 50%;
    flex-shrink: 0;
    padding-left: 80px;
}
.joincntsec h4{
    color:#fff;
    font-size: 40px;
    font-weight: 600; 
    line-height: 1;
    margin-bottom: 5px;
}
.joincntsec p{
    color:#fff;
    font-size: 14px;  
} 
.joinbtns {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn i{
    font-size: 20px;
}
.con-box {
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}




/*============ packaing  ==========*/
.pakage{
    background-image: url(../images/joinbg.jpg);
    height: 400px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0px;
}
.pakage_cunt {
    width: 50%;
    flex-shrink: 0;
    padding-left: 80px;
}
.pakage_cunt h4{
    color:#fff;
    font-size: 40px;
    font-weight: 600; 
    line-height: 1;
    margin-bottom: 5px;
}
.pakage_cunt p{
    color:#fff;
    font-size: 14px;
    margin: 40px 0px;  
} 
.pakage_img{
    width: 560px;
    position: absolute;
    top: -120px;
    right: 185px;
}
.contractitem .itembx .image-box-4 {
    height: 270px;
}
/*============ packaing  ==========*/


/*============ Sustaibbility ==========*/
.mb_show{
    display: none;
}
.susbox {
    background: #FAFAFA;
    padding: 70px;
    margin-bottom: 20px;
}
.sustlesec h4{
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 10px;
}
.ulimg {
    width: 70px;
    height: 70px;
    background: #F4F4F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ulimg img{
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.suscnt ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}
.suscnt ul li b {
    margin: 0px 3px;
}
.susbox {
    background: #FAFAFA;
    padding: 80px 150px;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}
.suscnt {
    width: 60%;
    flex-shrink: 0;
}
.susimg {
    width: 30%;
    flex-shrink: 0;
}
.sustlesec {
    margin-bottom: 30px;
}
/* a.susbtn.btn.bg-white{
    background: var(--secondary-color);
    color: var(--color-white);
} */
/*============ Factory Walkthrough ==========*/
.factorywalksec{
   background-image: url("../images/facbg.jpg");
    height: 500px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.factorywalksec::before{
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9;
}
.factorywalksec .grid-container{
    z-index: 99;
    position: relative; 
}
.walkcnt {
    text-align: center;
    width: 50%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
}
.walkcnt h4{
    font-size: 44px;
    color: #fff;
    font-family: var(--title-font);
    font-weight: bold;
    letter-spacing: 1.7px;
    line-height: 1;
}
.walkcnt p{
  font-size: 16px;
  color:#fff;
    margin-bottom: 0px;
}
.walkcnt .about-three__img-video{
   position: relative;
    right: unset;
    top: unset;
    bottom: unset;
    transform: unset;
    margin: 40px 0px 20px 0px;
}
.walkcnt .about-three__img-video-icon{
  background: #31383D;
}
.seewalkbtn{
  font-size: 14px;
  color:#fff;  
  text-decoration: underline;
}
a.seewalkbtn:hover{
  color:#fff; 
   text-decoration: underline;    
}


/*============ Get a Quote ==========*/
.getquote_sec{
    margin-top: 40px;
}
.getquote_sec .form-group, form#contact-form .form-group{
    border: 1px solid #DCDCDC;
    padding: 13px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
}
form#contact-form .form-group{
    background: #fff;
}
div#tabContainer {
    text-align: left;
    margin: 50px 0px;
}
.getquote_sec input, .getquote_sec select, .getquote_sec textarea, 
form#contact-form input, form#contact-form select, form#contact-form textarea {
    border: none;
    box-shadow: unset;
    background-color: transparent;
    margin: 0;
    padding: 5px;
    height: 35px;
}


.form-group.check_box {
    background: transparent !important;
    border: none;
    height: 87px;
    justify-content: center;
}
.getquote_sec input:focus, .getquote_sec select:focus, .getquote_sec textarea:focus,
form#contact-form input:focus, form#contact-form select:focus, form#contact-form textarea:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
.getquote_sec input:focus label, .getquote_sec select:focus label, .getquote_sec textarea:focus label,
form#contact-form input:focus label, form#contact-form select:focus label, form#contact-form textarea:focus label {
  border: 1px solid var(--theme-color);
}
html .getquote_sec select, .getquote_sec select:focus, html form#contact-form select, form#contact-form select:focus, html body form#contact-form select.select.is-invalid-input{
    background: url(../images/down_arrow.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 98% !important;
    background-size: contain !important;
    background-size: 12px 12px !important;
}
.getquote_sec textarea{
    min-height: auto;
}
.getquote_sec .is-invalid-input, .getquote_sec input::placeholder, .getquote_sec textarea::placeholder,
form#contact-form .is-invalid-input, form#contact-form input::placeholder, form#contact-form textarea::placeholder {
    background: transparent !important;
    border-color: transparent !important;
    background-color: transparent !important;
    color: #000 !important;
    font-size: 14px;
}
.getquote_sec input::placeholder, form#contact-form input::placeholder{
    color: #616161 !important;
}
.getquote_sec select:invalid,  form#contact-form select:invalid{ 
    color: #616161 !important;
 }
     
option { color: #111; }

.form_addition {
    margin-top: 40px;
}
/* .getquote_sec span.form-error.is-visible, form#contact-form span.form-error.is-visible{
    position: absolute;
    bottom: 5px;
} */
.form_addition .grid-x {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 30px 30px;
    margin: 0px;
}
.form_addition .form-group{
 background: var(--color-white);
}

.form_addition h5 {
    margin-bottom: 15px;
}
.getquote_sec .joinbtns a.susbtn.btn.bg-white{
    background: var(--secondary-color);
    color: var(--color-white);
}
.getquote_cunt {
    margin: 40px 0px;
}

.getquote_cunt h3 {
    color: #1E2424;
    font-weight: 600;
    font-size: 22px;
}
.check_flex{
    display: flex;
    align-items: center;
    gap: 10px;
}
.getquote_sec label,  form#contact-form label{
    color: #1E2424;
    font-weight: 700;
    font-size: 14px;
    margin: 0px;
    padding: 5px;
}

/*============ Footer ================*/
.main-footer {
    position: relative;
    background: var(--theme-color2);
}

.main-footer .widget-section {
    border-bottom: 1px solid #CFCFCF;
    padding-bottom: 50px;
    padding-top: 110px;
}

.main-footer .logo-widget p {
    margin-bottom: 36px;
}

.main-footer .logo-widget .download-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.main-footer .logo-widget .download-btn a {
    position: relative;
    display: inline-block;
    width: 182px;
    background: #000;
    padding: 11px 20px 11px 55px;
    font-size: 18px;
    line-height: 20px;
    font-family: var(--title-font);
    font-weight: 600;
    color: #fff;
    margin-right: 15px;
    border-radius: 10px;
}

.main-footer .logo-widget .download-btn a:hover {
    background: var(--secondary-color);
}

.main-footer .logo-widget .download-btn a img {
    position: absolute;
    left: 16px;
    top: 13px;
}

.main-footer .logo-widget .download-btn a:last-child {
    margin: 0px !important;
}

.main-footer .logo-widget .download-btn a span {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-footer .widget-title {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.main-footer .widget-title h4 {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: var(--theme-color);
}

.main-footer .links-widget .links-list li {
    position: relative;
    display: block;
}

.main-footer .links-widget .links-list li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
}

.main-footer .links-widget .links-list li a:hover {
    color: var(--theme-color);
}

.main-footer .links-widget .links-list li a:hover svg ellipse {
    fill: var(--theme-color);
}

.footer-bottom {
    position: relative;
    padding: 20px 0px;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .bottom-inner .copyright p {
    line-height: 28px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.footer-bottom .bottom-inner .copyright p a {
    display: inline-block;
    color: var(--theme-color);
}

.footer-bottom .bottom-inner .copyright p a:hover {
    text-decoration: underline;
}

.copyright {
    width: 100%;
    text-align: center;
}

.main-footer .social-links {
    position: relative;
    display: flex;
    align-items: center;
}

.main-footer .social-links li {
    margin-right: 10px;
}

.main-footer .social-links li:last-child {
    margin: 0px !important;
}

.main-footer .social-links li a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--title-color);
}

.main-footer .social-links li a:hover {
    background: var(--secondary-color);
}

.main-footer .social-links li h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.main-footer.light-footer .logo-widget p {
    color: #fff;
}

.main-footer.light-footer .social-links li a {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.main-footer.light-footer .widget-title h4 {
    color: #fff;
}

.main-footer.light-footer .links-widget .links-list li a {
    color: rgba(255, 255, 255, 0.80);
}

.main-footer.light-footer .widget-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer.light-footer .footer-bottom .bottom-inner .copyright p {
    color: #fff;
}

.main-footer.light-footer .logo-widget .download-btn a {
    background: #fff;
    color: var(--title-color);
}

.main-footer.light-footer .social-links li h5 {
    color: #fff;
}

.footer-widget .text {
    position: relative;
    margin-bottom: 11px;
    align-items: baseline;
    display: inline-flex;
    gap: 10px;
}

.footer-widget .icon i {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
}

.footer-widget .middle_portion li a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
     font-family: var(--text-font) !important;
}

.footer-widget .middle_portion li i {
    font-size: 18px;
    line-height: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--theme-color);
}

.footer-widget .middle_portion .icon a {
    margin-left: 0 !important;
}

.middle_portion {
    display: flex;
    flex-direction: column;
}

figure.footer-logo.mb_20 {
    /* width: 150px; */
    margin-bottom: 20px;
}

.footer-widget.logo-widget.mr_30 {
    width: 80%;
}

.links-list.socialicons li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.info-section {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.info-box {
    background: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    width: 85%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    background: #fef1e3;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #000;
}

.info-text strong {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
h4.social_head {
    margin: 10px 0px 1px;
}
.info-text span, .info-text span a {
    font-size: 13px;
    color: #666;
}

.footercall {
    margin-bottom: -85px;
    z-index: 9999;
    position: relative;
}

#back-to-top {
    color: #fff;
    position: fixed;
    bottom: 40px;
    right: 35px;
    z-index: 99;
    display: none;
    text-align: center;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 100;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color .1s linear;
    -moz-transition: background-color .1s linear;
    -webkit-transition: background-color .1s linear;
    -o-transition: background-color .1s linear;
    background: var(--theme-color);
}
.accordion_cunt {
    margin-top: 20px;
}
.accordion_cunt ul {
    list-style-type: disc;
}

.accordion_cunt ul li {
    margin-bottom: 10px;
}
#back-to-top i {
    padding-top: 0px;
    font-size: 18px;
}
li.text.ri-flex {
    flex-wrap: wrap;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* full window height */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
button.close-button {
    background: var(--theme-color);
    height: 30px;
    width: 30px;
    color: #fff;
    font-size: 25px;
}
div#videoopen, #videoopen1 {
    top: 0px !important;
    padding: 0px !important;
}
video#myVideo {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

   

/*============ privecy ================*/
.privecy_sec {
    padding-left: 50px;
}
.privecy_cunt h2 {
    font-size: 20px;
    position: relative;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--text-font) !important;
    margin-bottom: 10px;
}
.privecy_cunt a{
    color: var(--secondary-color);
}
.privecy_cunt p {
    margin: 0;
}

.privecy_cunt {
    margin-bottom: 20px;
}

.privecy_cunt ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

section.privacypagesec {
    padding: 30px 0px;
}

/*============ Footer ================*/

/* .production_box_cunt ul li::before {
   position: absolute;
    content: "";
    background: url(../images/pink_arrow.png);
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
} */
.production_box_cunt h2 {
    margin-bottom: 10px;
    color: #474442;
    font-weight: 700;
    font-size: 24px;
}

.production_box_cunt ul {
    margin-left: 25px;
}

/* .production_box_cunt ul li {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    line-height: normal;
} */

.production_box_cunt ul li:last-child {
    margin: 0;
}

.production_grid {
    display: grid;grid-template-columns: 2fr 2fr;
    gap: 20px;
}

.production_box {
    width: 100%;
    background: #FAFAFA;
    padding: 30px;
}

.production_box_cunt h2 span {
    color: var(--theme-color);
}

.production_box_cunt h2 span.inline-block {
    display: block;
}

section.production_cap {
    margin: 60px 0px;
}

.production_box_cunt.mt-20 {
    margin-top: 30px;
}
.check_flex {
  position: relative;
}

.check_flex label {
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}

.check_flex label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}

.check_flex input[type="checkbox"] {
  visibility: hidden;
  width: 40px;
}

.check_flex input[type="checkbox"]:checked + label {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.check_flex input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
form#contact-form select#contet_sel_product {
    /* padding: 15px 30px 15px 15px; */
    border: none;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    /* height: 50px; */
    /* margin-bottom: 10px; */
}
form#contact-form .form-group {
    margin-bottom: 15px;
    width: 100%;
}
.is-invalid-input:not(:focus) {
    background-color: rgb(249, 236.1, 234.1) !important;
}
form#getform .joinbtns {
    margin-top: 30px;
}
.grid-x.grid-margin-x.pdrf-0 {
    background: transparent;
    padding: 0px;
}
.getquote_sec .form-group:focus-within, form#contact-form .form-group:focus-within {
    border: 1px solid var(--theme-color);
    transform: 0.2s ease;
}
.getquote_sec span.form-error.is-visible, form#contact-form span.form-error.is-visible{
    position: absolute;
    bottom: -15px;
    top: 24px;
    right: 20px;
    height: max-content;
}
form#getform input.is-invalid-input, form#getform select.is-invalid-input, form#getform textarea.is-invalid-input,
form#contact-form input.is-invalid-input, form#contact-form select.is-invalid-input, form#contact-form textarea.is-invalid-input {
    /* background: transparent !important; */
    background-color: transparent !important;
}
.getquote_sec .form-group:has(.form-error.is-visible), 
form#contact-form .form-group:has(.is-invalid-label), form#contact-form .form-group:has(.is-invalid-input){
    border: 1px solid #cc4b37;
}
.form-error{
    color: #f35b43 !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* background white */
  -webkit-text-fill-color: #000 !important; /* text color */
  transition: background-color 5000s ease-in-out 0s; /* trick */
}
.trustedtitle h2, .trustedtitle p {
    text-transform: uppercase;
}

