/*
--------------------------
  Css Indexing
--------------------------
  Table of Css Content
  ------- *** -------
--------------------------
**
--------------------------
**
--------------------------
**
--------------------------
**
--------------------------
**
--------------------------
**
--------------------------
**
--------------------------

*/
/*-----------------
    @Typography
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans: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");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*====================
** Normalize
====================*/
html {
    font-family: "Fira Sans", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    margin: 0px !important;
    padding: 0px !important;
    color: #000;
    overflow-x: hidden;
    line-height: normal;
    background: #fff;
}

body.modal-open {
    margin-right: 0px !important;
}

h1 {
    font-size: 60px;
    line-height: 1.2;
}

h2 {
    font-size: 52px;
    line-height: 1.2;
}

h3 {
    font-size: 26px;
    line-height: 1.2;
}

h4 {
    font-size: 22px;
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c2c2c;
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.8;
    /*-webkit-hyphens: auto;*/
    /*-moz-hyphens: auto;*/
    /*-ms-hyphens: auto;*/
    /*hyphens: auto;*/
    font-family: "Heebo", sans-serif;
}

a {
    color: #83704f;
    text-decoration: none;
    font-weight: 600;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

.opacity-1 {
    opacity: 1 !important;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

/*---------------------------
** Global style
---------------------------*/
.mybtn1 {
    border-radius: 50px;
    background-color: #af8a39;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(14, 35, 107, 0.3);
    box-shadow: 0px 5px 10px 0px rgba(14, 35, 107, 0.3);
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: relative;
    padding: 7px 25px;
    border: 0px;
}

.mybtn1::after {
    position: absolute;
    content: " ";
    height: 100%;
    width: 10%;
    top: 0;
    left: 0;
    background: transparent;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mybtn1:hover {
    color: #fff;
}

.mybtn1:hover::after {
    width: 100%;
    opacity: 1;
}

.btn {
    font-size: 20px;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #83704f;
    border-color: #83704f;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #85693a;
    border-color: #83704f;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: #83704f;
    border-color: #83704f;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn-secondary {
    color: #fff;
    background-color: transparent;
    border-color: #83704f;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #83704f;
    border-color: #83704f;
}

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: none;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #83704f;
    border-color: #83704f;
}

.btn-default:hover {
    color: #fff;
}

.subheading {
    font-size: 24px;
}

.mheading {
    font-size: 60px;
    font-weight: 600;
    /* color: #fff; */
}

.mhead-top {
    margin-top: 60px;
}

.smallheading {
    font-size: 30px;
}

/*-------------------------
    Top Header Area Start
--------------------------*/
.top-header {
    background: #1c1e2a;
    padding: 10px 0px;
}

.top-header .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-header .content .left-content .list ul li {
    display: inline-block;
    margin-right: 15px;
}

.top-header .content .left-content .list ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    position: relative;
}

.top-header .content .left-content .list ul li a i {
    margin-right: 5px;
}

.top-header .content .left-content .list ul li:last-child a::after {
    display: none;
}

.right-content ul {
    display: flex;
}

.right-content ul a {
    color: #fff;
    font-size: 14px;
}

.right-content ul a ul {}

.right-content ul li {
    margin-left: 15px;
}

/*-------------------------
Logo Header Area Start
--------------------------*/
.logo-header {
    /* padding: 20px 0px 20px; */
    padding-top: 40px;
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.logo-header .navbar-nav .nav-link {
    color: #fff;
    padding: 0 14px;
}

.logo-header .navbar-nav .nav-link.link-icon {
    padding-left: 5px;
}

.logo-header .navbar {
    padding: 0;
}

.logo-header nav.core-nav .full-container .nav-item:last-child .nav-link {
    padding-right: 0;
}

.logo-header nav.core-nav .full-container .dropdown-menu {
    margin-top: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px 0px #0000001c;
    border-radius: 10px;
    border: none;
}

.logo-header nav.core-nav .full-container .dropdown-menu:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    right: 25px;
    /* transform: translate(-50%, 0px); */
}

.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item {
    color: #000;
    padding: 8px 20px;
    font-size: 14px;
}

.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item:hover,
.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item:focus,
.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item.active,
.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item:active {
    background: #30323f;
    color: #fff;
}

.logo-header nav.core-nav {
    background: #83704f;
    border-radius: 15px;
    padding: 10px 30px;
    display: flex;
}

.logo-header .navbar-brand img {
    min-width: 160px;
    width: 160px;
}

.navbar-nav p {
    line-height: 1.2;
    font-size: 12px;
    color: #fff;
}

/*-----------------------------
** Hero Area Start
------------------------------*/

.main-banner {
    /* background-image: url(../../images/banners/Layer-19.png); */
    position: relative;
    padding-top: 130px;
    padding-bottom: 130px;
    margin-bottom: 100px;
}

.innerpg .main-banner {
    margin-bottom: 0;
}

.hero-area:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000ad;
}

.main-banner .hero-area .container {
    position: relative;
    z-index: 1;
}

/* .main-banner:before {
    content: '';
    background-image: url(../../images/banners/Layer-19.png);
    background-size: 85%;
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: luminosity;
    z-index: -1;

} */
.main-banner:before {
    content: "";
    background-image: url(../../images/bg-image.png);
    background-size: 85%;
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /* opacity: .5; */
    mix-blend-mode: normal;
}

.main-banner.hmban:before {
    content: "";
    background-image: url(../../images/bg-image.png);
    background-size: 85%;
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: normal;
}

.main-banner .hero-area video {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner:after {
    content: "";
    background-image: url(../../images/Layer-8-copy.png);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-size: contain;
    background-position: bottom left;
    z-index: -1;
    background-repeat: no-repeat;
}

.main-banner .hero-area {
    padding: 140px 0;
}

.hero-area .subheading {
    color: #fff;
    display: block;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-area .smallheading {
    color: #fff;
    display: block;
}

.hero-area .mheading {
    color: #fff;
}

.hero-area .mparagraph {
    color: #fff;
    margin: 15px 0;
    line-height: 1.6;
}

/* hero Slider dot design End */

/*Sidebar Css*/

/* sidebar */
.backdrop {
    background: #000000cc;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    display: none;
    top: 0;
    bottom: 0;
}

.backdrop .logo {
    width: 20%;
    position: absolute;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    opacity: 0;
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
}

.backdrop.rotate .logo {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 1;
}

.navbar-toggler {
    display: none;
}

.navbar-nav .app-store {
    margin: 0;
    /* margin-left: 15px; */
    position: relative;
}

.navbar-nav .app-store .google {
    margin-right: 29px;
}

.navbar-nav .app-store h6 {
    position: absolute;
    left: -6px;
    right: 0;
    text-align: center;
    top: 6px;
    bottom: 0;
    background: #000000c4;
    height: 36px;
    border-radius: 6px;
    display: flex;
    backdrop-filter: blur(1px);
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.navbar-nav .app-store figure {
    margin: 0;
}

.navbar-nav .app-store figure img {
    height: 50px;
    width: 210px;
    object-fit: contain;
}

.logo-header .navbar-nav .btn-white {
    background: #fff;
    color: #000;
    padding: 6px 16px !important;
    font-size: 16px;
    border-radius: 6px;
}

.burger-click-region {
    /* position: absolute;
    left: 76px;
    top: 80px;
    width: 40px; */
    height: 22px;
    z-index: 11;
    margin-left: 20px;
    margin-top: -12px;
    cursor: pointer;
}

.nav-area-full .burger-click-region {
    position: absolute;
    right: 20px;
    top: 20px;
}

.burger-menu-piece {
    display: block;
    position: relative;
    width: 30px;
    border-top: 3px solid #ffffff;
    transform-origin: 50% 50%;
    margin-top: 8px;
}

.sidebar-wrapper .sidebar {
    width: 100%;
    max-width: 800px;
    margin-top: 0;
    right: -800px;
    height: 100%;
    position: fixed;
    z-index: 999;
    background: #000000;
}

body.menu-open:after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #18192380;
    z-index: 11;
    backdrop-filter: blur(2px);
    overflow: hidden;
    pointer-events: none;
}

.sidebar-wrapper .sidebar .logo {
    /*position: absolute;*/
    /*top: 60px;*/
    margin-bottom: 60px;
    width: 200px;
}

.sidebar-wrapper .sidemenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
}

.sidebar-wrapper .sidemenu .menu-body {
    /* display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: grid; */
    /*-webkit-box-align: center;*/
    /*-webkit-align-items: center;*/
    /*-moz-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    height: 100%;
    width: 100%;
    padding: 40px;
    overflow: auto;
}

.sidebar-wrapper .sidemenu .menu-body::-webkit-scrollbar {
    width: 0;
}

.sidebar-wrapper .sidemenu .menu-footer {
    padding: 0 0 80px 60px;
}

/* .sidebar-wrapper .sidemenu {
      height: 100%;
  } */
.sidebar-wrapper .sidebar li {
    list-style-type: none;
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    min-width: 100%;
}

.sidebar-wrapper .sidebar .sidetext {
    opacity: 1;
    color: #fff;
}

.sidebar .burger-click-region {
    top: 40px;
    right: 40px;
    position: absolute;
}

.menu-title {
    display: none;
    padding: 0 0 30px 0;
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    line-height: 100%;
}

.menu-nav {
    margin: -4px 0;
}

.menu-nav-item {
    position: relative;
    display: block;
    padding: 10px 0;
    overflow: hidden;
}

.menu-nav-item a,
.menu-nav-item .nav-item {
    display: inline-block;
    position: relative;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    line-height: 100%;
    /* top: 80px; */
    transition: all 1s;
}

.openside .menu-nav-item a {
    top: 0;
}

.menu-nav-item .inner-menu {
    display: none;
    padding: 12px 0;
}

.menu-nav-item .inner-menu li {
    text-align: left;
    font-size: inherit;
    margin-bottom: 6px;
}

.menu-nav-item .inner-menu li a {
    font-size: 24px;
    padding-left: 20px;
}

.menu-nav-item a em i {
    position: relative;
    top: 4px;
    /* font-size: 34px; */
    margin-left: 10px;
}

.menu-nav-item a em {
    display: block;
    position: relative;
    /* overflow: hidden; */
    padding: 0 0.01em 0 0;
    font-style: normal;
}

.menu-social {
    display: inline-block;
    margin: -6px 0;
}

.menu-social-item {
    position: relative;
    display: block;
    padding: 12px 0;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.00464286em;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.menu-social-item:hover {
    color: #fff;
}

.menu-social-item em {
    display: block;
    position: relative;
    overflow: hidden;
    font-style: normal;
    transition: all 1s;
    top: 20px;
}

.openside .menu-social-item em {
    top: 0;
}

.menu-social-item em span {
    display: block;
}

.menu-nav-item.dropdown-nav-item .nav-item:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.menu-nav-item.dropdown-nav-item .nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.info-card {
    background: #1b1d28;
    padding: 24px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #83704f;
}

.info-card i {
    color: #83704f;
    font-size: 55px;
    display: inline-block;
    margin-bottom: 12px;
}

.info-card h6 {
    color: #fff;
    font-size: 18px;
}

.info-card p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

/* About us */
.section-padding {
    padding: 60px 0;
}

.about-area figure {
    margin-bottom: 0;
}

figure.curve-img img {
    height: 100%;
    width: 100%;
    border-radius: 6px;
    object-fit: contain;
}

.aircraft-sale figure.curve-img img {
    border-radius: 0;
}

.about-area.section-padding img {
    object-fit: contain;
}

.title {
    font-size: 40px;
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.title:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 70%;
    right: 0;
    height: 5px;
    background: #83704f;
}

.innerpg .title:after {
    width: 30%;
    bottom: -10px;
}

.section-heading {
    text-align: center;
}

.section-heading .title {
    margin-bottom: 30px;
}

.section-heading .title:after {
    width: 180px;
    left: 50%;
    transform: translate(-50%, 5px);
}

.section-heading .paragraph {
    font-size: 20px;
}

/* Why Choose */
.why-area {
    /*background-image: url(../../images/why-bg.jpg);*/
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    background: #1b1d29;
}

.right-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-img figure {
    height: 100%;
}

/* manufact-area */
.manufact-area {
    position: relative;
}

.manufact-area:before {
    content: "";
    background-image: url(../../images/banners/Layer-19.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.manufact-area:after {
    content: "";
    background-image: url(../../images/Layer-8-copy.png);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-size: contain;
    background-position: bottom left;
    z-index: -1;
    background-repeat: no-repeat;
}

.inner-slider {
    padding: 0 75px;
}

.supfact-area {
    position: relative;
}

.supfact-area:before {
    content: "";
    background-image: url(../../images/Layer-6-copy-6.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    position: absolute;
    height: 80%;
    width: 50%;
    right: 0;
    bottom: 0;
    /* z-index: -1; */
}

/* .supfact-area:after {
    content: '';
    background-image: url(../../images/banners/Layer-19.png);
    position: absolute;
    background-size: 70%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg);
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    background-position: 120% 0%;
} */

/* product-area */
.product-area {
    background-image: url(../../images/Layer-49.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.product-area .title,
.product-area .paragraph {
    color: #fff;
}

.video-product {
    margin-top: 20px;
}

.video-product .video-js {
    width: 100%;
    border-radius: 20px;
}

.video-product .video-js .vjs-tech {
    border-radius: 20px;
}

.video-product .video-js .vjs-poster {
    border-radius: 20px;
    background-color: #212330;
    box-shadow: 0px 0px 15px 0px #00000026;
}

.video-product .vjs-has-started .vjs-control-bar {
    background-color: transparent;
}

.slick-items .card {
    background: transparent;
    text-align: center;
    border: 1px solid #83704f;
    background-color: #1b1d28;
    padding: 16px;
    border-radius: 15px;
    margin-bottom: 30px;
    height: 95%;
}

.slick-items .card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slick-items .card img {
    height: 240px;
    object-fit: fill;
    border-radius: 15px;
}

.slick-items .card .card-title {
    font-size: 18px;
    color: #fff;
}

.slick-items .card .card-text {
    margin-bottom: 14px;
    line-height: 1.2;
    color: #fff;
}

/* team area */
.team-area {
    position: relative;
}

.allteam-area .card-img-top {
    border: 4px solid #9b7a31;
}

.team-area:before {
    content: "";
    background-image: url(../../images/banners/Layer-19.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.team-slider {
    margin-top: 0;
}

.team-slider .card {
    background: transparent;
    text-align: center;
    border: 1px solid #83704f;
    background-color: #1b1d28;
    padding: 16px;
    border-radius: 15px;
    margin-top: 30px;
}

.team-slider .card img {
    height: 340px;
    object-fit: cover;
    border-radius: 15px;
}

.team-slider .card .card-title {
    font-size: 18px;
}

.card .card-title,
.card .card-text {
    color: #fff;
}

.team-slider .card .card-text {
    margin-bottom: 14px;
    line-height: 1.2;
}

/* app store */
.app-area {
    margin-top: 40px;
    /* background-image: url(../../images/Layer-15.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat; */
}

.app-store {
    display: inline-flex;
    margin-top: 20px;
    position: relative;
}

.app-store a {
    margin-right: 5px;
}

.app-store img {
    height: 50px;
}

.app-store h6 {
    position: absolute;
    left: 0;
    right: 10px;
    text-align: center;
    top: 0;
    bottom: 8px;
    background: #000000cb;
    /* height: 36px; */
    border-radius: 6px;
    display: flex;
    backdrop-filter: blur(1px);
    justify-content: center;
    align-items: center;
    color: #fff;
}

.app-area .mobile-app {
    position: relative;
    display: block;
    height: 360px;
}

.app-area .mobile-app figure {
    position: absolute;
    min-width: 500px;
    left: 0px;
    top: -100px;
}

.app-area .mobile-app figure:last-child {
    left: 140px;
    top: -80px;
    transition: all 0.5s;
    transform: translate(-180px, 0px) rotate(-15deg);
}

.app-area .mobile-app.wow.active figure:last-child {
    transform: none;
}

.app-area .mobile-app figure:first-child {
    z-index: 1;
}

/* partner area */

.partner-area .partner-images {
    margin-top: 20px;
}

.partner-area .partner-images ul {
    display: flex;
    justify-content: center;
}

.partner-area .partner-images ul li {
    margin-right: 15px;
}

.partner-area .partner-images ul li:last-child {
    margin-right: 0;
}

.partner-area .partner-images ul li img {
    height: 100px;
    object-fit: contain;
    /*mix-blend-mode: luminosity;*/
}

/* product list */
.product-list {
    background-image: url(../../images/Layer-81.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-list .title,
.product-list p {
    color: #fff;
}

.product-list h3 {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Heebo", sans-serif;
}

.bring-sec {
    background-image: url(../../images/Layer-83.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bring-sec .title,
.bring-sec p {
    color: #fff;
}

.product-links li a {
    color: #83704f;
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact-sec {
    background-image: url(../../images/Layer-251.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-sec .title,
.contact-sec p {
    color: #fff;
}

.whitney-sec {
    background-image: url(../../images/Layer-84.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.whitney-sec .title,
.whitney-sec p {
    color: #fff;
}

.benefit-sec {
    background-image: url(../../images/Layer-85.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-sec .title,
.benefit-sec p {
    color: #fff;
}

.aircraft-sale {
    background-image: url(../../images/Layer-25.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aircraft-sale .title,
.aircraft-sale p {
    color: #fff;
}

.support-list {
    background-image: url(../../images/Layer-86.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.support-list .title,
.support-list p {
    color: #fff;
}

.aircraft-sale h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}

.aircraft-sale h3,
.aircraft-sale h4 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}

.why-nas h4 {
    color: #2c2c2c;
    font-weight: 600;
}

/* choose-national */
.choose-national {
    background-image: url(../../images/Layer-48.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.choose-national .title,
.choose-national p {
    color: #fff;
}

.event-area {
    background-image: url(../../images/Layer-481.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.event-area .title {
    color: #fff;
}

.event-area .title,
.event-area p {
    color: #fff;
}

/* choose-national */
.why-stands {
    background-image: url(../../images/Layer-82.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-stands .title,
.why-stands p {
    color: #fff;
}

.daterangepicker .drp-calendar.left {
    padding: 0;
}

.daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 0;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-family: "Heebo", sans-serif;
}

.daterangepicker .calendar-table table thead tr:nth-child(2) th {
    border-radius: 0;
    font-weight: 400;
}

.daterangepicker .calendar-table table thead tr:nth-child(2) {
    background: #eaeaea;
}

.daterangepicker .calendar-table table tbody {
    padding-left: 6px;
}

/* calender show */
.daterangepicker.singlerange:after,
.daterangepicker.singlerange:before {
    display: none;
}

.daterangepicker.singlerange .drp-calendar {
    max-width: 100%;
    width: 100%;
}

.daterangepicker.singlerange .drp-calendar thead th.prev.available {
    background: #83704f;
    box-shadow: 0px 6px 10px 0px #816b3d78;
    margin: 6px 14px;
}

.daterangepicker.singlerange .drp-calendar thead th.prev span,
.daterangepicker.singlerange .drp-calendar thead th.next span {
    border-color: #fff;
    padding: 5px;
}

.daterangepicker.singlerange .drp-calendar thead th.next.available {
    background: #83704f;
    margin: 6px 14px;
    box-shadow: 0px 6px 10px 0px #816b3d78;
}

.daterangepicker.singlerange td.active,
.daterangepicker.singlerange td.active:hover {
    background-color: #83704f;
    border-color: transparent;
    color: #fff;
}

.daterangepicker.singlerange .calendar-table th,
.daterangepicker.singlerange .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 50px;
    line-height: 1.2;
    font-size: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker.singlerange {
    position: unset;
    display: block !important;
    border: 0;
}

.hide-input {
    opacity: 0;
    position: absolute;
}

.footer-bg {
    background-image: url(../../images/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-border {
    margin: 0 6%;
    background: #212330;
    border: 3px solid #ae8939;
    padding: 50px 20px;
    border-radius: 25px;
}

.footer-logo {
    /*text-align: center;*/
    margin-bottom: 20px;
}

.footer .title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.footer .title:after {
    display: none;
}

.footer li a {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
    color: #fff;
}

.footer li a:hover {
    color: #83704f;
}

.footer .contact-info span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 23px;
    display: block;
    line-height: 1.4;
}

.footer .contact-info span a {
    color: #fff;
    font-weight: 400;
}

.footer .news-info p {
    color: #fff;
    line-height: 1.4;
}

.footer .news-info .input-group {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 16px;
}

.footer .news-info .input-group .form-control {
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font-weight: 400;
    height: calc(1.2em + 0.5rem + 2px);
}

.footer .news-info .input-group .btn-link {
    padding: 0;
    color: #83704f;
    line-height: 1;
}

.footer .news-info .social-icon a {
    font-size: 34px;
    margin-right: 10px;
    margin-top: 10px;
    color: #fff;
    display: inline-block;
}

.footer .news-info .input-group .input-group-append {
    border-left: 1px solid #fff;
    padding-left: 15px;
    padding-top: 4px;
}

.copy-bg {
    text-align: center;
    margin: 20px 0;
}

.copy-bg p {
    margin-bottom: 0;
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 8px 24px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn.btn-md {
    line-height: 1;
    border-radius: 0.2rem;
}

.slick-tabs .slick-slide {
    margin: 0 12px;
    cursor: pointer;
}

.slick-dots li button {
    background: transparent;
    border: 2px solid #83704f;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #83704f;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots {
    bottom: -40px;
}

.slick-tabs .slick-slide .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: #6c6c6c;
}

.slick-tabs .slick-slide .btn:hover {
    color: #fff;
}

.slick-tabs .slick-slide.slick-current .btn-secondary {
    background-color: #83704f;
    color: #fff;
}

.slick-tabs {
    margin-bottom: 40px;
    padding: 0 60px;
}

:focus-visible {
    outline: 0;
}

.slick-arrow {
    height: 50px;
    width: 50px;
    background-color: #83704f;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: #9f7b2e;
}

.slick-prev:before {
    content: "\e904";
    font-family: "icomoon";
    font-size: 16px;
}

.slick-next:before {
    content: "\e905";
    font-family: "icomoon";
    font-size: 16px;
}

.slick-items {
    position: relative;
}

ul.payment-method {
    display: flex;
}

.payment-method li .custom-radio .custom-control-label::before {
    border: none;
}

.payment-method li .custom-control-label figure {
    margin-bottom: 0;
}

.payment-method li .custom-control-label figure img {
    height: 34px;
    width: 120px;
    object-fit: contain;
}

.payment-method li .custom-control-label {
    background: #212330;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    margin: 0;
    width: 100%;
    text-align: center;
}

.payment-method li:last-child {
    margin: 0;
}

.payment-method li .custom-radio {
    padding: 0;
}

.payment-method li .custom-control-input:checked~.custom-control-label::before {
    top: 0;
    right: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    border-radius: 15px;
    background-color: transparent;
    border: 1px solid #83704f;
}

.payment-method li .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
}

.payment-method li .custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: transparent;
}

.payment-method li {
    height: 100%;
    margin-right: 30px;
    width: 33%;
}

.form-area .form-validation,
.form-area .form-both {
    background: #1b1d28;
    padding: 50px 15px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px 0px #0000005c;
}

.form-area .form-validation p,
.form-area .form-both p,
.form-area .form-validation .title,
.form-area .form-both .title {
    color: #fff;
}

.form-area .form-both .form-validation {
    border-radius: 0;
    box-shadow: none;
}

.form-area label {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.form-area .form-control {
    background: #1b1d28;
    height: calc(2em + 0.75rem + 2px);
    color: #fff;
}

.form-area .form-group {
    margin-bottom: 24px;
}

.form-area textarea.form-control {
    height: auto;
}

.form-area .title {
    font-size: 24px;
    margin-bottom: 14px;
}

.form-area .title:after {
    display: none;
}

.form-area .custom-control h6 {
    font-size: 22px;
    margin-bottom: 0;
}

.form-area .form-group .rate-box label {
    font-family: "Heebo", sans-serif;
    margin-bottom: 0;
    font-weight: 500;
}

.form-area .form-group .rate-box p {
    font-size: 18px;
    font-weight: 300;
}

.form-area .custom-control p {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 0;
}

.lease-content p {
    font-size: 18px;
    font-weight: 300;
}

.lease-content .form-control-plaintext {
    display: inline-block;
    width: auto;
    color: #fff;
    border-bottom: 1px solid #fff;
    height: auto;
    line-height: 1;
    padding: 0;
    margin: 0 6px;
    font-size: 18px;
    font-weight: 300;
}

.lease-content .form-control-plaintext.small {
    width: 50px;
}

.lease-content .form-control-plaintext.medium {
    width: 150px;
}

.lease-content .form-control-plaintext:focus {
    border: none;
    border-bottom: 2px solid #fff;
}

.qoutes-area .product-info {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding: 30px 0;
}

.custom-control-label:before {
    width: 20px;
    left: -30px;
    height: 20px;
    background-color: #fff0;
    top: 1px;
    border: #ffffff solid 1px;
}

.custom-control {
    padding-left: 30px;
}

.custom-control-label::after {
    left: -30px;
    width: 20px;
    height: 20px;
    top: 1px;
    background: no-repeat 55%/55% 55%;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #83704f;
    background-color: #83704f;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b39555;
    border-color: #b39555;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.contact-info .title {
    font-size: 18px;
}

.contact-info .title:after {
    bottom: -10px;
}

.contact-info li {
    color: #000;
    line-height: 2;
}

.product-info {
    margin-bottom: 30px;
}

.product-info h5 {
    font-size: 34px;
}

.product-info h5 .locat {
    display: block;
    font-size: 28px;
    font-weight: 500;
}

.product-info h5 .locat span {
    font-weight: 300;
}

.product-info p {
    font-size: 20px;
    font-weight: 300;
}

.product-info img {
    height: 280px;
    border-radius: 10px;
}

.event-group .list-group-item {
    background: #212330;
    border: 1px solid #83704f;
    border-radius: 6px;
    margin-bottom: 20px;
    padding: 14px;
}

.event-group .list-group-item .curve-img img {
    height: 100px;
    background: #fff;
    padding: 10px;
}

.event-group .list-group-item h6 {
    margin-bottom: 4px;
    font-weight: 400;
}

.event-group .list-group-item h5,
.event-group .list-group-item p {
    color: #fff;
}

/*---------------------------
** LOgin Signup  Area Start
---------------------------*/
.login-signup {
    padding: 60px 0px 60px;
    /* margin-top: 150px; */
}

.login-area {
    padding: 30px 30px 39px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.login-area .header-area {
    text-align: center;
    margin-bottom: 40px;
}

.login-area .header-area h3 {
    color: #fff;
}

.login-area .header-area .title {
    font-size: 30px;
    font-weight: 700;

    line-height: 40px;
    color: #83704f;
}

.login-area .header-area .text {
    font-size: 18px;
    color: #919191;
}

.login-area .form-input {
    position: relative;
    margin-bottom: 15px;
}

.login-area .form-input textarea {
    width: 100%;
    height: 100px;
    background: #f3f8fc;
    padding: 15px 25px 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.login-area .form-input i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    color: #83704f;
}

.login-area .form-forgot-pass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
}

.login-area .to-login-page {
    text-align: right;
}

.login-area .social-area {
    text-align: center;
    padding-top: 26px;
}

.login-area .social-area .social-links {
    padding-left: 0px;
}

.login-area .social-area .social-links li {
    display: inline-block;
}

.login-area .social-area .social-links li a i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    color: #fff;
    margin: 0px 5px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.login-area .social-area .social-links li a i.fa-facebook-f {
    background: #0069f7;
}

.login-area .social-area .social-links li a i.fa-twitter {
    background: #00c6f7;
}

.login-area .social-area .social-links li a i.fa-google-plus-g {
    background: #d1062c;
}

.comment-log-reg-tabmenu .full-container {
    padding: 0px !important;
}

.comment-log-reg-tabmenu .nav-tabs {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link {
    border: 0px;
    margin: 0px;
    padding: 10px 0px;
    width: 50%;
    text-align: center;
    background: #83704f;
    border-radius: 0px;
    color: #fff;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link.active {
    background: #947534;
}

/*---------------------------
** LOgin Signup  Area Start
---------------------------*/
.login-signup {
    padding: 60px 0px 60px;
}

.login-area {
    padding: 30px 30px 39px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.login-area .header-area {
    text-align: center;
    margin-bottom: 40px;
}

.login-area .header-area .title {
    font-size: 30px;
    font-weight: 700;

    line-height: 40px;
    color: #83704f;
}

.login-area .header-area .text {
    font-size: 18px;
    color: #919191;
}

.login-area .form-input {
    position: relative;
    margin-bottom: 15px;
}

.login-area .form-input i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    color: #83704f;
}

.login-area .form-forgot-pass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
}

.login-area .to-login-page {
    text-align: right;
}

.login-area .social-area {
    text-align: center;
    padding-top: 26px;
}

.login-area .social-area .social-links {
    padding-left: 0px;
}

.login-area .social-area .social-links li {
    display: inline-block;
}

.login-area .social-area .social-links li a i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    color: #fff;
    margin: 0px 5px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.login-area .social-area .social-links li a i.fa-facebook-f {
    background: #0069f7;
}

.login-area .social-area .social-links li a i.fa-twitter {
    background: #00c6f7;
}

.login-area .social-area .social-links li a i.fa-google-plus-g {
    background: #d1062c;
}

.comment-log-reg-tabmenu .full-container {
    padding: 0px !important;
}

.comment-log-reg-tabmenu .nav-tabs {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link {
    border: 0px;
    margin: 0px;
    padding: 10px 0px;
    width: 50%;
    text-align: center;
    background: #83704f;
    border-radius: 0px;
    color: #fff;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link.active {
    background: #947534;
}

ul.list-app {
    margin-top: 10px;
}

ul.list-app li {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

ul.list-app li i {
    font-size: 34px;
    color: #83704f;
    margin-right: 10px;
}

ul.list-app h6 {
    color: #000;
    font-size: 20px;
    margin-bottom: 0;
}

.process-shipping li:before {
    content: "";
    background-image: url(../../images/line.png);
    position: absolute;
    top: -60%;
    left: 40px;
    height: 80%;
    width: 3px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.process-shipping li:first-child:before {
    display: none;
}

.process-shipping li {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0.5;
    position: relative;
}

.process-shipping li.active {
    opacity: 1;
}

.process-shipping li i {
    color: #fff;
    font-size: 50px;
    margin-right: 50px;
    min-width: 80px;
    text-align: center;
}

.process-shipping li .order-status {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    width: 100%;
}

.process-shipping li .order-status h4 {
    color: #282828;
    font-size: 24px;
    margin-bottom: 4px;
}

.process-shipping li .order-status p {
    color: #282828;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.6;
}

.certificate-text p {
    font-size: 20px;
    line-height: 1.4;
}

.certificate-text ul {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.certificate-text ul.dots {
    padding-left: 16px;
}

.certificate-text ul.dots li {
    list-style: disc;
}

.pdf-dwl {
    margin-top: 40px;
}

.pdf-dwl figure {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 10px;
}

.pdf-box {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.pdf-box img {
    width: 80px;
    object-fit: contain;
}

/*---------------------------
** LOgin Signup  Area Start
---------------------------*/
.login-signup {
    padding: 60px 0px 60px;
    z-index: 3;
    position: relative;
}

.login-area {
    background: #1b1d28;
    box-shadow: 0px 5px 15px 0px #0000005c;
    padding: 30px 30px 39px;
}

.login-area .header-area {
    text-align: center;
    margin-bottom: 40px;
}

.login-area .header-area .title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    color: #83704f;
}

.login-area .header-area .text {
    font-size: 18px;
    color: #919191;
}

.login-area .form-input {
    position: relative;
    margin-bottom: 15px;
}

.login-area .form-input input {
    width: 100%;
    height: 50px;
    background: transparent;
    padding: 0px 30px 0px 45px;
    border: 1px solid #fff;
    font-size: 14px;
    border-radius: 0.25rem;
    color: #fff;
}

.login-area .form-input i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    color: #fff;
}

.login-area .form-forgot-pass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
}

.login-area .to-login-page {
    text-align: right;
}

.login-area .submit-btn {
    width: 100%;
    /* height: 50px;
  text-align: center;
  background: #83704f;
  border: 0px;
  color: #fff;
  font-weight: 700;
  /* text-transform: uppercase; */
    margin-top: 20px;
    /* -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer; */
}

/* .login-area .submit-btn:hover {
  background: #947534;
} */
.login-area .form-forgot-pass {
    color: #fff;
}

.login-area .social-area {
    text-align: center;
    padding-top: 26px;
}

.login-area .social-area .title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    position: relative;
}

.login-area .social-area .title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 100%;
    margin-right: 7px;
}

.login-area .social-area .title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 100%;
    margin-left: 7px;
}

.login-area .social-area .text {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.login-area .social-area .social-links {
    padding-left: 0px;
}

.login-area .social-area .social-links li {
    display: inline-block;
}

.login-area .social-area .social-links li a i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    color: #fff;
    margin: 0px 5px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.login-area .social-area .social-links li a i.fa-facebook-f {
    background: #0069f7;
}

.login-area .social-area .social-links li a i.fa-twitter {
    background: #00c6f7;
}

.login-area .social-area .social-links li a i.fa-google-plus-g {
    background: #d1062c;
}

.comment-log-reg-tabmenu .full-container {
    padding: 0px !important;
}

.comment-log-reg-tabmenu .nav-tabs {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link {
    border: 1px solid #1b1d28;
    margin: 0px;
    padding: 10px 0px;
    width: 50%;
    text-align: center;
    background: #1b1d28;
    border-radius: 0px;
    color: #fff;
}

.comment-log-reg-tabmenu .nav-tabs .nav-link.active {
    background: #83704f;
    border-color: #83704f;
}

.card-dash {
    background: #1b1d28;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px 0px #0000005c;
}

.user-dashbord {
    padding: 70px 0px 70px;
    /* margin-top: 200px;
  background-color: #83704f75; */
}

.user-dashbord .user-profile-info-area {
    border: none;
}

.user-dashbord .user-profile-info-area .img {
    text-align: center;
    padding: 40px 30px 10px;
}

.user-dashbord .user-profile-info-area .mail {
    font-size: 14px;
    color: #29293a;
}

.user-dashbord .user-profile-info-area .name {
    color: #29293a;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 0px;
}

.table {
    color: #fff;
}

.user-dashbord .user-profile-info-area .links {
    /* padding: 12px 30px 25px; */
}

.user-dashbord .user-profile-info-area .links li {
    border-bottom: 1px dashed rgb(175 138 57);
}

.user-dashbord .user-profile-info-area .links li:last-child {
    border: 0px;
}

.user-dashbord .user-profile-info-area .links li.active a,
.user-dashbord .user-profile-info-area .links li:hover a {
    color: #83704f;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.user-dashbord .user-profile-info-area .links li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px 0;
    color: #fff;
    display: block;
}

.user-dashbord .user-profile-details .mycard {
    border-radius: 3px;
    -webkit-box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px 30px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: #83704f;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(#83704f),
            to(#fac0a2));
    background-image: -webkit-linear-gradient(left, #83704f, #fac0a2);
    background-image: -o-linear-gradient(left, #83704f, #fac0a2);
    background-image: linear-gradient(to right, #83704f, #fac0a2);
}

.user-dashbord .user-profile-details .mycard .left {
    position: inherit;
    z-index: 9;
}

.user-dashbord .user-profile-details .mycard .left .title {
    font-size: 22px;
    color: #fff;
    line-height: 32px;
    margin-bottom: 2px;
}

.user-dashbord .user-profile-details .mycard .left .number {
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    display: block;
    color: #fff;
    margin-bottom: 20px;
}

.user-dashbord .user-profile-details .mycard .left .link {
    width: 80px;
    height: 30px;
    background: #fff;
    border-radius: 50px;
    line-height: 30px;
    font-size: 14px;
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.user-dashbord .user-profile-details .mycard .left .link:hover {
    background: #000;
    color: #fff;
}

.user-dashbord .user-profile-details .mycard .right .icon {
    font-size: 80px;
    color: #fff;
    position: inherit;
    z-index: 9;
}

.user-dashbord .user-profile-details .mycard::after {
    position: absolute;
    content: " ";
    width: 268px;
    height: 500px;
    top: -100px;
    right: -100px;
    -webkit-transform: rotate(28deg);
    -ms-transform: rotate(28deg);
    transform: rotate(28deg);
    background: #947534;
}

.user-dashbord .user-profile-details .account-info {
    border: 1px solid rgb(255 255 255 / 25%);
    padding: 20px 30px 30px;
    border-radius: 10px;
}

.user-dashbord .user-profile-details .account-info .header-area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.user-dashbord .user-profile-details .account-info .header-area .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #fff;
}

.user-dashbord .user-profile-details .account-info .main-info .title:after,
.c-info-box-area .c-info-box-content .title:after {
    display: none;
}

.user-dashbord .user-profile-details .account-info .edit-info-area {
    margin-top: 15px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #fff;
}

.table-dark {
    color: #fff;
    background-color: #242632;
}

table.dataTable tbody tr {
    background-color: transparent;
}

.page-item.disabled .page-link {
    color: #ffffff;
    background-color: #242632;
    border-color: #242632;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #9c7b33;
    border-color: #997932;
}

.page-link {
    color: #ffffff;
    background-color: #242632;
    border: 1px solid #242632;
}

.page-link:hover {
    color: #ffffff;
    background-color: #9c7b33;
    border-color: #9c7b33;
}

table {
    font-size: 14px;
}

hr {
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.card {
    background-color: #1b1d28;
    border-color: rgb(255 255 255 / 25%);
}

.user-dashbord .user-profile-details .account-info .edit-info-area .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .header .title {
    font-size: 16px;
    font-weight: 600;
    color: #29293a;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .header .edit-link {
    font-size: 14px;
}

.top-header .content .right-content .list li .dropdown-menu {
    background: #1b1d28;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .input-field {
    margin-bottom: 20px;
    width: 100%;
    background: none;
    border-radius: 6px;
    border: 0px !important;
    padding: 10px 14px !important;
    color: #fff;
    background: #1b1d28;
    font-size: 14px;
    border: 1px solid rgb(255 255 255) !important;
}

.fc-unthemed td.fc-today span.fc-day-number {
    color: #000;
}

.fc-toolbar h2 {
    font-size: 30px;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .input-field:focus {
    border: 0px !important;
    border: 1px solid #83704f !important;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .input-field.textarea {
    margin-bottom: 35px;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .form-links {
    margin-top: 20px;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .back {
    width: 120px;
    height: 50px;
    background: #947534;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: 0px;
    display: inline-block;
    margin-right: 20px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .back:hover {
    background: #83704f;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .submit-btn {
    width: 120px;
    height: 50px;
    background: #83704f;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: 0px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

label.control-label {
    color: #fff;
}

.user-dashbord .user-profile-details .account-info .edit-info-area .edit-info-area-form .submit-btn:hover {
    background: #947534;
}

.user-dashbord .user-profile-details .account-info .main-info {
    margin-top: 15px;
}

.user-dashbord .user-profile-details .account-info .main-info .title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.user-dashbord .user-profile-details .account-info .main-info .list li p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 24px;
}

.user-profile-details .header-area .mybtn1 {
    width: auto;
    height: 35px;
    line-height: 35px;
    padding: 0px 15px;
    margin-left: 10px;
}

.user-dashbord .user-profile-details .order-history {
    border: 1px solid rgb(255 255 255 / 25%);
    padding: 20px 30px 30px;
    border-radius: 10px;
}

.user-dashbord .user-profile-details .order-history .header-area {
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 10px;
}

/* .user-dashbord .user-profile-details .order-history .header-area .title {
  font-size: 20px;
  font-weight: 600;
  color: #947534;
} */

/* .user-dashbord .user-profile-details .order-history .table th {
  border-top: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #29293a;
} */

/* .user-dashbord .user-profile-details .order-history .table td {
  border-top: 0px;
  font-size: 14px;
  font-weight: 4600;
} */

/* .user-dashbord .user-profile-details .order-history .table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
} */
.modal-content {
    background-color: #1b1d28;
    border-color: #fff;
}

.modal-header {
    padding: 10px 20px !important;
}

.modal-content {
    background-color: #1b1d28;
    border-color: #fff;
}

.modal-body {
    padding: 10px 20px;
}

.modal-body input,
.modal-body textarea,
.modal-body select {
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    padding: 8px 10px;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 14px;
}

.modal-body button {
    color: #fff;
    background-color: #83704f;
    border-color: #83704f;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
}

.user-dashbord .user-profile-details .order-details {
    border: 1px solid rgb(255 255 255 / 25%);
    padding: 20px 30px 30px;
}

.user-dashbord .user-profile-details .order-details .header-area {
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* .user-dashbord .user-profile-details .order-details .header-area .title {
  font-size: 20px;
  font-weight: 600;
  color: #947534;
} */

.user-dashbord .user-profile-details .order-details .view-order-page .order-code {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.user-dashbord .user-profile-details .order-details .view-order-page .print-order a {
    background: #83704f;
    color: #fff;
    padding: 10px 20px;
}

.user-dashbord .user-profile-details .order-details .view-order-page .shipping-add-area h5,
.user-dashbord .user-profile-details .order-details .view-order-page .billing-add-area h5,
.user-dashbord .user-profile-details .order-details .view-order-page .table-responsive h5 {
    font-size: 18px;
    font-weight: 600;
}

.user-dashbord .user-profile-details .order-details .view-order-page .billing-add-area {
    margin-bottom: 10px;
    color: #fff;
}

.user-dashbord .user-profile-details .order-details .view-order-page address,
.user-dashbord .user-profile-details .order-details .view-order-page p {
    font-size: 14px;
}

.user-dashbord .user-profile-details .order-details .view-order-page .veiw-details-table td {
    font-size: 14px;
}

.user-dashbord .user-profile-details .order-details .back-btn {
    background: #947534;
    color: #fff;
    padding: 8px 25px;
    margin-top: 15px;
    display: inline-block;
}

.upload-img {
    padding: 18px 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.upload-img .img {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    margin-right: 30px;
    overflow: hidden;
}

.upload-img .file-upload-area {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.upload-img .file-upload-area .upload-file {
    width: 150px !important;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.upload-img .file-upload-area .upload-file .upload {
    width: 150px !important;
    height: 40px;
    display: inline-block;
    opacity: 0;
    cursor: pointer;
}

.upload-img .file-upload-area .upload-file span {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px !important;
    height: 40px;
    background: #83704f;
    /* z-index: -1; */
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: none;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none;
    border: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:focus {
    background: none;
    border: 0px;
    outline: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* icomoon */
@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?8yjaxo");
    src: url("../fonts/icomoon.eot?8yjaxo#iefix") format("embedded-opentype"),
        url("../fonts/icomoon.ttf?8yjaxo") format("truetype"),
        url("../fonts/icomoon.woff?8yjaxo") format("woff"),
        url("../fonts/icomoon.svg?8yjaxo#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-order-arrived:before {
    content: "\e900";
}

.icon-order-in-process:before {
    content: "\e901";
}

.icon-order-in-route:before {
    content: "\e902";
}

.icon-order-shipped:before {
    content: "\e903";
}

.icon-arrow-left:before {
    content: "\e904";
}

.icon-arrow-right:before {
    content: "\e905";
}

.icon-dedication:before {
    content: "\e906";
}

.icon-hamburger:before {
    content: "\e907";
}

.icon-instagram:before {
    content: "\e908";
}

.icon-leadership:before {
    content: "\e909";
}

.icon-linkedin:before {
    content: "\e90a";
}

.icon-login:before {
    content: "\e90b";
}

.icon-quality-customer-service:before {
    content: "\e90c";
}

.icon-send:before {
    content: "\e90d";
}

.icon-order-shipped:before {
    content: "\e903";
}

.icon-call:before {
    content: "\e90e";
}

.icon-email:before {
    content: "\e90f";
}

.icon-support:before {
    content: "\e910";
}

.icon-01:before {
    content: "\e911";
}

.icon-02:before {
    content: "\e912";
}

.icon-03:before {
    content: "\e913";
}

.remote-active .videolocal {
    position: absolute;
    bottom: 10px;
    right: 20px;
    box-shadow: 0px 0px 10px #0000001a;
}

.chat_box .chat_message_wrapper ul.chat_message>li+li {
    margin-top: 4px;
}

.popup-box-on {
    display: block !important;
}

a:focus {
    outline: none;
    outline-offset: 0px;
}

.popup-head-left.pull-left h1 {
    color: #fff;
    float: left;
    font-family: oswald;
    font-size: 18px;
    margin: 2px 0 0 5px;
}

.popup-head-left a small {
    display: table;
    font-size: 11px;
    color: #fff;
    line-height: 4px;
    opacity: 0.5;
    padding: 0 0 0 7px;
}

.chat-header-button {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 7px;
    font-size: 15px;
    height: 26px;
    opacity: 0.9;
    padding: 0;
    text-align: center;
    width: 26px;
}

.popup-head-right {
    margin: 9px 0 0;
}

.popup-head .btn-group {
    margin: -5px 3px 0 -1px;
}

.gurdeepoushan .dropdown-menu {
    padding: 6px;
}

.gurdeepoushan .dropdown-menu li a span {
    border: 1px solid;
    border-radius: 50px;
    display: list-item;
    font-size: 19px;
    height: 40px;
    line-height: 36px;
    margin: auto;
    text-align: center;
    width: 40px;
}

.gurdeepoushan .dropdown-menu li {
    float: left;
    text-align: center;
    width: 33%;
}

.gurdeepoushan .dropdown-menu li a {
    border-radius: 7px;
    font-family: oswald;
    padding: 3px;
    transition: all 0.3s ease-in-out 0s;
}

.gurdeepoushan .dropdown-menu li a:hover {
    background: #304445 none repeat scroll 0 0 !important;
    color: #fff;
}

.popup-head {
    background: #1e1f2c none repeat scroll 0 0 !important;
    border-bottom: 3px solid #af8a39;
    color: #fff;
    display: table;
    width: 100%;
    padding: 8px;
}

.popup-head .md-user-image {
    border: 2px solid #fafafa;
    border-radius: 12px;
    float: left;
    width: 44px;
}

.uk-input-group-addon .fa.fa-paper-plane {
    color: #ffffff;
    font-size: 21px;
    line-height: 36px;
    padding: 0 6px;
}

.chat_box_wrapper.chat_box_small.chat_box_active {
    height: 342px;
    overflow-y: scroll;
    width: 316px;
}

#sidebar_secondary {
    background-attachment: fixed;
    background-clip: border-box;
    background-color: rgb(36 40 55);
    background-image: url("https://scontent.fixc1-1.fna.fbcdn.net/v/t1.0-9/12670232_624826600991767_3547881030871377118_n.jpg?oh=92b8b3e25bdd56df4af5dc466feb46ce&oe=57CC10E7");
    background-origin: padding-box;
    background-position: center top;
    background-repeat: repeat;
    border: 1px solid #af8a39;
    bottom: 0;
    display: none;
    height: 466px;
    position: fixed;
    right: 70px;
    width: 300px;
    font-family: "Open Sans", sans-serif;
}

.chat_box {
    padding: 16px;
}

.chat_box .chat_message_wrapper::after {
    clear: both;
}

.chat_box .chat_message_wrapper::after,
.chat_box .chat_message_wrapper::before {
    content: " ";
    display: table;
}

.chat_box .chat_message_wrapper .chat_user_avatar {
    float: left;
}

.chat_box .chat_message_wrapper {
    margin-bottom: 32px;
}

.md-user-image {
    border-radius: 50%;
    width: 34px;
}

img {
    border: 0 none;
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.chat_box .chat_message_wrapper ul.chat_message,
.chat_box .chat_message_wrapper ul.chat_message>li {
    list-style: outside none none;
    padding: 0;
}

.chat_box .chat_message_wrapper ul.chat_message {
    float: left;
    margin: 0 0 0 20px;
    max-width: 77%;
}

.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message>li:first-child::before {
    border-right-color: #616161;
}

.chat_box .chat_message_wrapper ul.chat_message>li:first-child::before {
    border-color: transparent #ededed transparent transparent;
    border-style: solid;
    border-width: 0 16px 16px 0;
    content: "";
    height: 0;
    left: -14px;
    position: absolute;
    top: 0;
    width: 0;
}

.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message>li {
    background: #af8a39 none repeat scroll 0 0;
    color: #000000;
}

.open-btn {
    border: 2px solid #189d0e;
    border-radius: 32px;
    color: #189d0e !important;
    display: inline-block;
    margin: 10px 0 0;
    padding: 9px 16px;
    text-decoration: none !important;
    text-transform: uppercase;
}

.chat_box .chat_message_wrapper ul.chat_message>li {
    background: #ededed none repeat scroll 0 0;
    border-radius: 4px;
    clear: both;
    color: #212121;
    display: block;
    float: left;
    font-size: 13px;
    padding: 8px 16px;
    position: relative;
    word-break: break-all;
}

.chat_box .chat_message_wrapper ul.chat_message,
.chat_box .chat_message_wrapper ul.chat_message>li {
    list-style: outside none none;
    padding: 0;
}

.chat_box .chat_message_wrapper ul.chat_message>li {
    margin: 0;
}

.chat_box .chat_message_wrapper ul.chat_message>li p {
    margin: 0;
}

.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message>li .chat_message_time {
    color: rgba(185, 186, 180, 0.9);
}

.chat_box .chat_message_wrapper ul.chat_message>li .chat_message_time {
    color: #727272;
    display: block;
    font-size: 11px;
    padding-top: 2px;
    text-transform: uppercase;
}

.chat_box .chat_message_wrapper.chat_message_right .chat_user_avatar {
    float: right;
}

.chat_box .chat_message_wrapper.chat_message_right ul.chat_message {
    float: right;
    margin-left: 0 !important;
    margin-right: 24px !important;
}

.chat_box.chat_box_colors_a .chat_message_wrapper.chat_message_right ul.chat_message>li:first-child::before {
    border-left-color: #1b1d28;
}

.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message>li:first-child::before {
    border-right-color: #af8a39;
}

.chat_box .chat_message_wrapper.chat_message_right ul.chat_message>li:first-child::before {
    border-color: transparent transparent transparent #ededed;
    border-width: 0 0 29px 29px;
    left: auto;
    right: -14px;
}

.chat_box .chat_message_wrapper ul.chat_message>li:first-child::before {
    border-color: transparent #ededed transparent transparent;
    border-style: solid;
    border-width: 0 29px 29px 0;
    content: "";
    height: 0;
    left: -14px;
    position: absolute;
    top: 0;
    width: 0;
}

.chat_box.chat_box_colors_a .chat_message_wrapper.chat_message_right ul.chat_message>li {
    background: #1a1c27 none repeat scroll 0 0;
}

.chat_box .chat_message_wrapper ul.chat_message>li {
    background: #ededed none repeat scroll 0 0;
    border-radius: 12px;
    clear: both;
    color: #212121;
    display: block;
    float: left;
    font-size: 13px;
    padding: 8px 16px;
    position: relative;
}

.gurdeep-chat-box {
    background: #fff none repeat scroll 0 0;
    border-radius: 5px;
    float: left;
    padding: 3px;
}

#submit_message {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    padding: 4px;
}

.md-input {
    width: 235px;
}

.gurdeep-chat-box i {
    color: #333;
    font-size: 21px;
    line-height: 1px;
}

.chat_submit_box {
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.uk-input-group {
    border-collapse: separate;
    display: table;
    position: relative;
}

.user-dashbord p,
.user-dashbord h1,
.user-dashbord h2,
.user-dashbord h3,
.user-dashbord h4,
.user-dashbord h5,
.user-dashbord h6 {
    color: #fff;
}

.status-tag {
    background: #3da53b;
    padding: 2px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
}

.app-area .list-app img {
    width: 30px;
    margin-right: 15px;
}

.app-area .list-app li {
    margin-bottom: 35px;
}

.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item {
    color: #000;
    padding: 18px 20px !important;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.logo-header nav.core-nav .full-container .dropdown-menu .dropdown-item:nth-child(3) {
    border: none;
}

span.work-hrs {
    color: #bbbbbb;
    margin-left: 24px;
    font-size: 12px;
}

/*  support Area CSS  */
.support-ticket-wrapper .panel-body img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
}

.support-ticket-wrapper .panel-heading {
    font-size: 16px;
}

.support-ticket-wrapper button {
    border: 50pxpx;
}

.support-ticket-wrapper .panel-footer {
    /* background-color: #ffffff; */
    padding: 20px 0px 0px;
}

.support-ticket-wrapper table tr>td {
    width: 100%;
    border-top: none;
}

.support-ticket-wrapper .panel {
    border-color: #dddddd;
}

.support-ticket-wrapper .panel,
.support-ticket-wrapper .panel-heading,
.support-ticket-wrapper textarea,
.support-ticket-wrapper button {
    border-radius: 0;
}

.support-ticket-wrapper .ticket-date {
    font-size: 14px;
    color: #737373;
    margin-bottom: 0px;
}

.single-reply-area.user {
    padding: 10px;
}

.support-ticket-wrapper .panel-body img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
}

.support-ticket-wrapper .single-reply-area.user {
    padding: 20px 30px;
}

.support-ticket-wrapper .single-reply-area.user .reply-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-start;
}

.support-ticket-wrapper .single-reply-area.user .reply-area .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #83704f;
    padding: 10px;
    margin-top: 20px;
    border-radius: 20px 0px 20px 20px;
}

.support-ticket-wrapper .single-reply-area.user .reply-area .right {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
}

.support-ticket-wrapper .single-reply-area.admin {
    padding: 20px 30px;
    /* background: #ddd; */
}

.support-ticket-wrapper .single-reply-area.admin .reply-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-start;
}

.support-ticket-wrapper .single-reply-area.admin .reply-area .left {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 0px;
}

.support-ticket-wrapper .single-reply-area.admin .reply-area .right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    background: #ddd;
    padding: 10px;
    margin-top: 20px;
    border-radius: 0px 20px 20px;
}

.support-ticket-wrapper .single-reply-area.admin .reply-area p {
    margin-bottom: 0;
    color: #6c7781;
    text-transform: capitalize;
    text-align: left;
}

.support-ticket-wrapper .single-reply-area.user .reply-area p {
    margin-bottom: 0;
    color: #fff;
    text-transform: capitalize;
}

.support-ticket-wrapper .panel-footer textarea {
    border-radius: 20px;
}

.support-ticket-wrapper .panel-footer .mybtn1 {
    border-radius: 20px;
}

span.status-tag.offline {
    background: #d61120;
    padding: 2px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
}

.lease-custom h4 {
    color: #fff;
    display: inline;
}

.card-dash .print-order-btn {
    background: #947534;
    color: #fff;
    padding: 8px 25px;
    margin: 15px;
    margin-right: 0;
}

img.create-tick {
    width: 120px;
    transform: rotate(46deg);
}

/* AK Css*/

.section-padding.term-condition {
    padding-top: 200px;
}

.term-condition .paragraph {
    text-align: center;
}

.term-condition ul li {
    list-style: unset;
    margin-left: 20px;
}

.term-condition ul li p {
    line-height: 1.5;
}

.term-condition .title {
    margin: 30px 0;
}

.card-body.readmores {
    color: #fff;
}

.card-header {
    color: #fff;
}

.media-body ul li span {
    color: #fff !important;
}

.media-body div {
    color: #fff;
}

.st-form {
    color: #fff;
}

.del-tick-btn {
    margin-right: 20px;
}

#togglePassword {
    position: absolute;
    left: 90%;
}

.logo-header nav.core-nav .full-container .position-unset {
    position: unset;
}

.logo-header nav.core-nav .full-container .dropdown-menu.full-width {
    left: 0;
    right: 0;
    padding: 20px;
    margin-top: 10px;
}

.logo-header nav.core-nav .full-container .dropdown-menu.full-width:before {
    display: none;
}

.logo-header nav.core-nav .full-container .position-unset .nav-link img {
    min-width: 20px;
    filter: invert(1);
}

.logo-header nav.core-nav .full-container .position-unset .nav-link:after {
    display: none;
}

.foot-links-col {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 40px;
}

.ba-fold {
    margin: 70px 0;
}

.ba-fold .mheading {
    margin-bottom: 50px;
    text-align: center;
}

.section-padding.before-after-sec {
    padding: 20px 0;
}

ul.about-location li {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 28px;
    padding-left: 20px;
}

ul.about-location {
    justify-content: center;
    padding: 40px 0 30px 0;
    position: relative;
}

ul.about-location li:before {
    content: "";
    border-left: 2px solid;
    padding: 0 10px;
}

ul.about-location li:first-child:before {
    border: none;
}

/* modal css starting */
.audio-calling-modal {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    backdrop-filter: blur(16px);
    transition: .3s all
}

.audio-calling-modal .audio-calling-modal-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 80px;
    border-radius: 12px;
    background: #212330;
    box-shadow: 0px 0px 16px rgb(0, 0, 0, 50%);
    position: relative;
}

.audio-calling-modal .cross-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
}

.audio-calling-modal .cross-icon img {
    width: 30px;
    filter: invert(1);
}

.audio-calling-modal .audio-calling-modal-img {
    background: #fff;
    border-radius: 100%;
    padding: 20px;
    border: 5px solid;
}

.audio-calling-modal .audio-calling-modal-img img {
    width: 80px;
    height: 76px;
    object-fit: contain;
    object-position: center;
}

.audio-calling-modal .audio-calling-modal-content {
    color: #fff;
    text-align: center;
    font-family: "Fira Sans", sans-serif;
    margin: 30px 0;
}

.audio-calling-modal .audio-calling-modal-content h1 {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
}

.audio-calling-modal .audio-calling-modal-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 170px;
}

.audio-calling-modal .audio-calling-modal-btn .btn-accept {
    position: relative;
    background: green;
    border-radius: 100%;
    font-size: 24px;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.audio-calling-modal .audio-calling-modal-btn .btn-reject {
    position: relative;
    background: red;
    border-radius: 100%;
    font-size: 24px;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.audio-calling-modal .audio-calling-modal-btn.center {
    justify-content: center
}

.audio-calling-modal .audio-calling-modal-btn .btn-reject.rotate i {
    transform: rotate(135deg);
}

.audio-calling-modal.recieve-modal {
    display: none;
}

.audio-calling-modal.recieve-modal.active {
    display: flex;
    position: fixed;
    top: 0;
}

.audio-calling-modal.audio-modal {
    display: none;
}

.audio-calling-modal.audio-modal.active {
    display: flex;
    position: fixed;
    top: 0;
}

/* video modal */

.audio-calling-modal.video-modal .large-video {
    position: relative;
    border-radius: 10px;
}

.audio-calling-modal.video-modal .small-video {
    position: absolute;
    bottom: 162px;
    right: 115px;
    border-radius: 10px;
    border: 3px solid #212330;
}

.audio-calling-modal.video-modal h1 {
    color: #fff;
    font-size: 30px;
}

.audio-calling-modal.video-modal .audio-calling-modal-footer {
    width: 100%;
    margin-top: 30px;
}

.audio-calling-modal.video-modal .audio-calling-modal-btn.center {
    margin: auto;
    justify-content: center;
    width: 100%;
}

.audio-calling-modal.video-modal .audio-calling-modal-btn button {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    background: #86714d;
    margin: 0 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.audio-calling-modal.video-modal .audio-calling-modal-btn a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    background: #86714d;
    margin: 0 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

a.video-btn.video-btn-leave {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    background: #86714d;
    margin: 0 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    border: none;
    transform: rotate(225deg);
}

a.video-btn.video-btn-leave i {
    display: block !important;
}

.audio-calling-modal.video-modal {
    display: none;
}

.audio-calling-modal.video-modal.active {
    display: flex;
    position: fixed;
    top: 0;
}

.audio-calling-modal.video-modal .audio-calling-modal-btn button .fas.fa-phone-alt {
    transform: rotate(135deg);
}

.of-hidden {
    overflow: hidden;
}

/* modal css ending */

.mheading.small {
    font-size: 50px;
}

.footer .social-icon a {
    font-size: 34px;
    margin-right: 10px;
    margin-top: 10px;
    color: #fff;
    display: inline-block;
}

.footer .iso-logo {
    width: 100px;
}

.pos-abs {
    position: absolute !important;
}
