* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

body {
    font-size: 15px;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

::placeholder {
    color: #aeb1be;
}

header {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #c4a15d;
}

a:hover {
    color: #c4a15d;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-200 {
    margin-top: 200px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-5 {
    margin-bottom: 50px;
}

.br-1 {
    border-right: 1px solid #919191;
}

.img-responsive {
    max-width: 100%;
}

.pt-38 {
    padding-top: 38px;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.header-top {
    width: 100%;
    float: left;
    background-color: #353535;
    padding: 10px 0px;
    position: relative;
    z-index: 3;
}

.header-top ul {
    margin: 0;
    padding: 0;
}

.header-top li {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
    list-style: none;
    border-right: 0px solid #a6a7b4;
}

.header-top li:last-child {
    border-right: 0;
    padding-right: 0;
}

.header-top li:first-child {
    padding-left: 0;
}

.header-top li a {
    color: #a6a7b4;
    padding-right: 0;
    font-size: 14px;
}

.header-top li a:hover {
    color: #ffb100;
}

.top-social i {
    color: #353535;
    margin: 0 4px;
    font-size: 13px !important;
    background: #ffb100;
    /* padding: 7px 8px; */
    border-radius: 50px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

.top-social i:hover {
    background: #ffe4b6;
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

.float-none {
    float: none !important;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: left;
}

.carousel {
    position: relative;
     height: 86vh; 
    /* height: 450px; */
}

.carousel-item img {
    width: 100%;
    height: 100vh;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
}

.carousel-indicators {
    position: absolute;
    right: unset;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: block;
    -ms-flex-pack: center;
    width: 82px;
    background: #fff;
    height: 86vh;
    list-style: decimal;
    padding-top: 10%;
}

.carousel-indicators li {
    margin: 0 auto;
    background-color: #999;
    width: 1px;
    height: 20%;
    border: 0;
}

.carousel-indicators li.active {
    border-radius: 0;
    width: 3px;
    background-color: #000;
}

.carousel-caption {
    position: absolute;
    right: unset;
    bottom: 33%;
    left: 15%;
    width: 80%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center !important;
}

/* .carousel-inner {
    height: 86vh;
} */
.carousel-inner {
    height: 100%;
}

.about-bg {
    background: url(../images/curve-1.png) no-repeat;
    background-position: 0 0;
}

.curve-2 {
    background: url(../images/curve-2.png) no-repeat;
    background-position: top right;
    background-position-x: 100;
    background-position-y: 0;
    background-size: 20%;
}

.curve-3 {
    background: url(../images/curve-3.png) no-repeat;
    background-position-x: -4%;
    background-position-y: 102%;
    background-size: 18%;
}


/* __________nav________ */


/*  BURGER MENU______________*/

.menu {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 21;
    right: 0;
    top: 44px;
}

.menu span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}

.menu span,
.menu span::before,
.menu span::after {
    display: block;
    width: 26px;
    right: 0;
    height: 3px;
    background-color: #000;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu span::before,
.menu span::after {
    position: absolute;
    content: "";
}

.menu span::before {
    top: -9px;
    width: 20px
}

.menu span::after {
    top: 9px;
    width: 33px;
}

.menu.clicked span {
    background-color: transparent;
}

.menu.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
    width: 33px;
}

.menu.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.menu.clicked span:before,
.menu.clicked span:after {
    background-color: #ffffff;
}

.menu:hover {
    cursor: pointer;
}


/*  NAV___________________ */

#nav {
    background: #121212;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 320px;
    width: 100%;
    padding: 100px 40px 60px 40px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

#nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

.menu.clicked {
    position: fixed;
    z-index: 99;
    top: 2%;
    right: 0;
}

#nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}

#nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}

#nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}

#nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}

#nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}

#nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}

#nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}

#nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}

#nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}

#nav.show .about,
#nav.show .social,
#nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

@media (min-width: 667px) {
    #nav {
        padding: 120px 30px 70px 20px;
    }
}

#nav ul.main {
    list-style-type: none;
}

#nav ul.main li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    float: none;
    list-style: circle;
    color: #fff;
    text-align: left;
    margin-left: 20px;
}

#nav ul.main li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.main li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1rem;
    display: block;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.main li a span {
    color: #b7ac7f;
}

#nav ul.main li a:hover {
    color: #b7ac7f;
    margin-left: 10px;
}

#nav ul.main li ul li a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c7aa51;
}

#nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#nav ul.sub li {
    margin-bottom: 10px;
}

#nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.sub li a:hover {
    color: #b7ac7f;
}

.submenu li a {
    font-size: 13px;
}


/*  OVERLAY___________________ */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #603e82;
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
}


/* __________END nav________ */

.brand-logo {
    width: 100%;
    float: left;
    text-align: left;
}

.brand-logo ul {
    margin: 0;
    padding: 0;
}

.brand-logo li {
    margin: 20px;
    padding: 0;
    display: inline-block;
    list-style: none;
}

.serve {
    width: 100%;
    float: left;
    padding: 50px;
    transition: all ease 0.5s;
}


/* .serve:hover {
    background: #f00;
} */

.serve::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background-color: rgba(121, 113, 68, 0.7);
    z-index: -1;
    transition: transform .8s ease;
    transform: scaleY(0);
}

.serve:hover::before {
    transform: scaleY(1);
    transform-origin: bottom left;
}

.text-left-top {
    text-align: left;
}

.white-text {
    color: #fff;
}

.black-text {
    color: #000;
}

.orange-text {
    color: #ffb100;
}

.text-right-top {
    text-align: right;
}

.btn {
    background: #a37e25;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.bdr-bt {
    border-bottom: 1px solid #a37e25;
}

.btn-primary {
    color: #fff;
    background-color: #a37e25;
    border-color: #a37e25;
}

.btn-primary:hover {
    color: #fff;
    background-color: #817047;
}

.round {
    border-radius: 100%;
}

h1 {
    font-size: 50pt;
    line-height: 66px;
    font-weight: 600;
    color: #fff;
    text-align: left
    /* text-transform: uppercase; */
}

h2 {
    font-size: 30px;
    font-weight: 700;
    color: #c4a15d;
}

h2 span {
    font-size: 16px;
    font-weight: 500;
    color: #ffb100;
    line-height: 15px;
}

h3 {
    font-size: 26px;
    color: #2193d5;
    font-weight: 600;
    margin: 30px 0 20px;
}

header h4 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
}

h4 a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

h4 a:hover {
    color: #8e7a3d;
    text-decoration: none;
}

h4 {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px !important;
}

h5 {
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 400;
    color: #ffffff;
}

h6 {
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 400;
    color: #555555;
}

h6 span {
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 600;
    color: #dc8c01;
    text-decoration: underline;
}

p {
    font-size: 15px;
    line-height: 1.9em;
    font-weight: 400;
    color: #555555;
}

.carousel-caption h1 {
    text-align: center;
    font-size: 40pt;
    line-height: 66px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.carousel-caption p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    color: #fff;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.7em;
    font-weight: 400;
    color: #a7a7a7;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 0;
}

footer p a {
    font-size: 0.9rem;
    line-height: 1.4em;
    font-weight: 400;
    color: #a7a7a7;
    text-align: left;
}

footer p a:hover {
    color: #dc8c01;
}

.m-100 {
    margin: 100px 0;
}

.p-50 {
    padding: 50px;
}

.p-100 {
    padding: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.nav-main-sub {
    position: relative !important;
    left: unset !important;
    transform: unset !important;
    width: 100% !important;
}

.nav-main-sub .sub-logo img {
    width: 60% !important;
}

.nav-main-sub nav.navbar {
    margin-top: 37px;
}

.nav-main {
    width: 100%;
    padding: 0 6%;
    background: rgb(255 255 255);
}

a.nav-link {
    font-size: 15px;
    color: #000327 !important;
}

a.nav-link {
    padding: 10px 25px !important;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    ;
}

a.nav-link:hover {
    color: #ffb100 !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: #ffffff;
    margin-top: 0px;
    border-radius: 0 0 3px 3px;
    color: #fff;
    border: 0;
    border-bottom: 5px solid #ffb100 !important;
    min-width: 215px;
    max-width: 100%;
}

.dropdown-item {
    color: #212529;
    border-top: 1px solid #d0d0d0;
    font-size: 14px;
    font-weight: 400;
    margin-top: 2px !important;
}

.dropdown-item:first-child {
    border-top: 0;
}

.border-right {
    border-right: 1px solid #3949a2!important;
}

button.navbar-toggler {
    background: #fff;
}

a.nav-link.active {
    color: #ffb100 !important;
}

span.elementor-icon-list-icon {
    color: #ffb100;
}


/* END nav________________ */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff!important;
    background-color: #ff156e;
    border-color: #ff156e
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-link {
    color: #000 !important;
}

.tab a.nav-link {
    padding: 20px 14px !important;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.4s ease-in;
}

.tab a.nav-link:hover {
    color: #ffffff!important;
    background-color: #ff156e;
}

.tab i {
    color: #0051b2;
}

.tab-pane li {
    float: left;
    list-style: none;
    border: 1px solid #eee;
    margin: 2px;
    width: 23%;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    box-shadow: 0 3px 13px rgba(0, 0, 0, .10)!important;
    margin: 0 8px;
}

.nav-tabs .nav-link {
    border-radius: 0rem;
}

.grey-bg {
    background-color: #f6f7f8;
}

.black-bg {
    background-color: #000;
}

.dark-bg {
    background-color: #353535;
}

.bg-none {
    background: unset !important;
}

.tab {
    display: table;
}

img.card-img-top {
    width: fit-content;
    margin: 0 auto;
}

a.btn-floating {
    float: right;
    background: none;
    margin-right: -1px;
    text-align: center;
    padding: 8px 12px;
}

.btn-floating i {
    color: #333;
    font-size: 32px;
    font-weight: 200;
}

.grey-bg .carousel-item {
    height: auto;
    min-height: auto;
}

.controls-top {
    position: absolute;
    right: 5px;
    top: 40%;
    width: 100%;
    z-index: 1;
}

.card-title {
    margin-bottom: .75rem;
    font-size: 23px;
    color: #333;
    font-weight: 600;
    margin-top: 0;
    text-align: left;
}

.card-body {
    border-radius: 4px;
    padding: 15px 0;
}

.card-body p {
    font-size: 15px;
    line-height: 1.9em;
    font-weight: 400;
    color: #555555;
    height: 85px;
    overflow: hidden;
}

a.btn-floating.prev {
    float: left;
}

.more-btn {
    border-radius: 2px;
    padding: 12px 30px;
    display: inline-block;
    text-align: center !important;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: #c4a15d;
    transition: all 0.25s linear;
    border: 1px solid #c4a15d;
}

.more-btn:hover {
    color: #fff;
    text-decoration: none;
    background: #744900;
}

.more-btn-a {
    border-radius: 3px;
    padding: 18px 35px;
    display: inline-block;
    text-align: center !important;
    color: #253745;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    transition: all 0.25s linear;
    border: 2px solid #253745;
}

.more-btn-a:hover {
    color: #fff;
    text-decoration: none;
    background: #dc8c01;
    border: 2px solid #dc8c01;
}

.more-btn-blk {
    border-radius: 5px;
    padding: 15px 35px;
    text-align: center !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    transition: all 0.25s linear;
    border: 2px solid #353535;
    background-color: #353535;
    float: left;
}

.more-btn-blk:hover {
    color: #fff;
    text-decoration: none;
    background: #dc8c01;
    border: 2px solid #353535;
}

.card-text {
    color: #333;
    font-size: 16px;
    text-transform: capitalize;
    text-align: left;
}

.card-text a {
    color: #333;
    font-size: 16px;
    text-transform: capitalize;
}

.card-text a:hover {
    color: #ffb100;
    font-size: 16px;
    text-transform: capitalize;
}

.products .carousel-item {
    height: auto;
    padding: 23px 60px;
}

.products .card {
    -webkit-box-shadow: 0 5px 14px 0 rgb(3 3 3 / 13%);
    box-shadow: 0 5px 14px 0 rgb(3 3 3 / 13%);
    transition: all 1s;
}

.products .card:hover {
    box-shadow: 0 5px 40px 0 rgb(3 3 3 / 35%);
}

.products li {
    font-size: 18px;
    font-weight: 500;
    color: #525252 !important;
    line-height: 35px !important;
}

.support-sec {
    background: rgb(255, 22, 110);
    background: linear-gradient(5deg, rgba(255, 22, 110, 1) 0%, rgba(255, 76, 84, 1) 100%);
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0;
}

.support-sec i {
    font-size: 45px;
    color: #fff;
    margin-bottom: 30px;
}

.size-12 {
    font-size: 12px;
}

#footer {
    overflow: hidden;
    background-size: 70%;
    background-color: #000;
    padding: 50px 0;
    text-align: center;
    float: left;
    width: 100%;
    margin-top: 1px;
}

#footer hr {
    background-color: #3d3a47;
}

#footer h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
    margin-bottom: 30px;
}

#footer h1 span {
    font-size: 2rem;
    font-weight: 300;
    color: #767a79;
}

#footer h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #c4a15d;
    text-align: left;
    margin-bottom: 20px;
}

#footer h2 span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffb100;
    text-align: left;
    letter-spacing: -0.1px;
}

#footer h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #41c175;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
}

#footer h3 a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 20px;
    text-decoration: none;
}

#footer h3 a:hover {
    color: #33f882;
}

#footer li {
    display: inline-block;
    list-style: none;
}

.footer-links {
    width: 30%;
    float: left;
    margin-left: 15%;
}

.footer-rgt {
    width: 60%;
    float: right;
    background: #c4a15d;
    padding: 37px 40px;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: -78px;
    right: 0;
    transform: skewX(-4deg);
    height: 142%;
}

.footer-rgt p {
    color: #fff;
    line-height:30px;
    margin-top: 0px;
}

.footer-rgt p a:hover {
    color: #000;
}

footer i {
    color: #8e7a3d;
    font-size: 25px;
    margin: 0 20px 0 0;
}

.footer-rgt i {
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 11px;
}

.footer-rgt-div {
    transform: skewX( 4deg);
    width: 100%;
    float: left;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

*+.rd-form {
    margin-top: 25px;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

@media (min-width: 768px) {
    .price-tabs {
        margin-bottom: 60px;
    }
}

.price-tabs .nav-link {
    color: #00b5ec;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 35px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .price-tabs .nav-link {
        padding: 12px 40px;
    }
}

.price-tabs .nav-link.active {
    background-color: #00b5ec;
    color: #fff;
}

.price-item {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    border-radius: 10px;
    margin-bottom: 20px !important;
}

@media (min-width: 768px) {
    .price-item {
        margin: 0 10px;
        padding-top: 20px;
    }
}

.price-item .price-top {
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    padding: 50px 0 25px;
    background-color: #867f70;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    margin-bottom: 33px;
}

@media (min-width: 768px) {
    .price-item .price-top {
        margin: 0 -20px;
        border-radius: 20px;
    }
}

.price-item .price-top:after {
    height: 50px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #867f70;
    position: absolute;
    content: '';
    left: 0;
    bottom: -17px;
    z-index: -1;
    -webkit-transform: skewY(5deg);
    transform: skewY(5deg);
    -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
    box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
}

@media (min-width: 768px) {
    .price-item .price-top:after {
        border-radius: 0 0 20px 20px;
    }
}

.price-item .price-top * {
    color: #fff;
}

.price-item .price-top h2 {
    font-weight: 700;
}

.price-item .price-top h2 sup {
    top: 13px;
    left: -5px;
    font-size: 0.35em;
    font-weight: 500;
    vertical-align: top;
}

.price-item .price-content {
    padding: 30px;
    padding-bottom: 40px;
}

.price-item .price-content li {
    position: relative;
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
    color: #000;
}

@media (min-width: 992px) {
    .price-item .price-content li {
        padding-left: 0px;
        text-align: left;
        color: #000;
        line-height: 18px;
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .price-item .price-content li i {
        position: absolute;
        left: 0;
        top: 3px;
    }
}

.price-item .price-content .zmdi-check {
    color: #28a745;
}

.price-item .price-content .zmdi-close {
    color: #f00;
}

.popular {
    background-color: #82734f;
}

.popular .price-top h2 {
    color: #fff !important;
}

.popular .price-top {
    background-color: #a37e25;
}

.popular .price-top:after {
    background-color: #a37e25;
}

.popular .price-top h4 {
    color: #101f41;
}

.popular .price-top h2,
.popular .price-top span,
.popular .price-top sup {
    color: #a37e25;
}

.popular .price-content ul *,
.popular .price-content ul .zmdi-close,
.popular .price-content ul .zmdi-check {
    color: #fff !important;
}

.fluid {
    margin: 0 5%;
    width: 90%;
}

.breadcrumb {
    padding: 0px;
    background: #a37e25;
    list-style: none;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
}

.breadcrumb>li+li:before {
    padding: 0;
}

.breadcrumb li {
    float: left;
}

.breadcrumb li.active a {
    background: brown;
    /* fallback color */
    background: #817047;
}

.breadcrumb li.completed a {
    background: brown;
    /* fallback color */
    background: #817047;
}

.breadcrumb li.active a:after {
    border-left: 30px solid #817047;
}

.breadcrumb li.completed a:after {
    border-left: 30px solid #817047;
}

.breadcrumb li a {
    color: white;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: block;
    float: left;
}

.breadcrumb li a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid rgb(163 126 37);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.breadcrumb li a:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}

.breadcrumb li:first-child a {
    padding-left: 15px;
}

.breadcrumb li a:hover {
    background: #817047;
}

.breadcrumb li a:hover:after {
    border-left-color: #817047 !important;
}

.mail {
    width: 75%;
}


/* img-hover _____________*/

.box16 {
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}

.box16 .box-content,
.box16:after {
    width: 100%;
    position: absolute;
    left: 0
}

.box16:after {
    content: "";
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 69%, rgba(0, 0, 0, .5) 100%);
    top: 0;
    transition: all .5s ease 0s
}

.box16 .post,
.box16 .title {
    transform: translateY(140px);
    transition: all .4s cubic-bezier(.13, .62, .81, .91) 0s
}

.box16:hover:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .01) 0, rgba(0, 0, 0, .09) 11%, rgba(0, 0, 0, .12) 13%, rgba(0, 0, 0, .19) 20%, rgba(0, 0, 0, .29) 28%, rgba(0, 0, 0, .29) 29%, rgba(0, 0, 0, .42) 38%, rgba(0, 0, 0, .46) 43%, rgba(0, 0, 0, .53) 47%, rgba(0, 0, 0, .75) 69%, rgba(0, 0, 0, .87) 84%, rgba(0, 0, 0, .98) 99%, rgba(0, 0, 0, .94) 100%)
}

.box16 img {
    width: 100%;
    height: auto
}

.box16 .box-content {
    padding: 0 0px 40px 0;
    height: 210px;
    margin-bottom: 0px;
    bottom: 0;
    z-index: 1;
}

.box16 .title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 00px
}

.box16 .post {
    display: block;
    padding: 8px 0;
    font-size: 15px
}

.box16 .social li a,
.box17 .icon li a {
    border-radius: 50%;
    font-size: 20px;
    color: #fff
}

.box16:hover .post,
.box16:hover .title {
    transform: translateY(0)
}

.box16 .social {
    list-style: none;
    padding: 0 0 5px;
    margin: 40px 0 25px;
    opacity: 0;
    position: relative;
    transform: perspective(500px) rotateX(-90deg) rotateY(0) rotateZ(0);
    transition: all .6s cubic-bezier(0, 0, .58, 1) 0s
}

.box16:hover .social {
    opacity: 1;
    transform: perspective(500px) rotateX(0) rotateY(0) rotateZ(0)
}

.box16 .social:before {
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    top: -23px;
    left: 0;
    right: 0
}

.box16 .social li {
    display: inline-block
}

.box16 .social li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #6d3795;
    margin-right: 10px;
    transition: all .3s ease 0s
}

.box17 .icon li,
.box17 .icon li a {
    display: inline-block
}

.box16 .social li a:hover {
    background: #bea041
}

.box16 .social li:last-child a {
    margin-right: 0
}

@media only screen and (max-width:990px) {
    .box16 {
        margin-bottom: 30px
    }
}

.category-dtl ul {
    margin: 0 0 30px 50px;
    padding: 0;
}

.category-dtl li {
    margin: 0;
    padding: 0;
    list-style: disc;
    color: #333;
    line-height: 30px
}


/* .btn:focus, .btn:active, button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
  } */

#image-gallery .modal-footer {
    display: block;
}

.thumb {
    margin-top: 7px;
    margin-bottom: 0px;
    padding-right: 3px;
    padding-left: 3px;
}

.footer-area i {
    color: #282828;
    background-color: #ffffff;
    padding: 6px 6px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

.footer-area i:hover {
    color: #fff;
    background-color: #dc8c01;
}

.footer-area i.fab.fa-youtube {
    padding: 6px 5px;
}


/* ---------------------------------------------------------------- */

.card-img,
.card-img-bottom,
.card-img-top {
    width: auto;
}

.tab-content>.active {
    z-index: 1;
    position: relative;
    width: 100%;
    background: #fff !important;
}

.subscribe-form {
    width: 60%;
    float: left;
    background: #fff;
    padding: 15px;
    text-align: left;
    border-radius: 5px 0 0px 5px;
    color: #999;
}

.subscribe-btn {
    width: 40%;
    float: left;
    padding: 15px;
    text-align: center;
    background: #691dd3;
    border-radius: 0px 5px 5px 0px;
    color: #fff;
    transition: all 0.2s linear;
}

.subscribe-btn:hover {
    width: 40%;
    float: left;
    padding: 15px;
    text-align: center;
    background: #8229ff;
    border-radius: 0px 5px 5px 0px;
    color: #fff;
}

.team-member,
.team-member .team-img {
    position: relative;
}

.team-member {
    overflow: hidden;
}

.team-member,
.team-member .team-img {
    position: relative;
}

.team-hover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    border: 20px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.90);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-member:hover .team-hover .desk {
    top: 55%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
    opacity: 1;
}

.team-hover .desk {
    position: absolute;
    top: 0%;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
    -webkit-transition: all 0.3s 0.2s;
    transition: all 0.3s 0.2s;
    padding: 0 20px;
}

.desk,
.desk h4,
.team-hover .s-link a {
    text-align: center;
    color: #222;
}

.team-member:hover .team-hover .s-link {
    bottom: 10%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
    opacity: 1;
}

.team-hover .s-link {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    -webkit-transform: translateY(45%);
    -ms-transform: translateY(45%);
    transform: translateY(45%);
    -webkit-transition: all 0.3s 0.2s;
    transition: all 0.3s 0.2s;
    font-size: 35px;
}

.desk,
.desk h4,
.team-hover .s-link a {
    text-align: center;
    color: #222;
}

.team-member .s-link a {
    margin: 0 10px;
    color: #333;
    font-size: 16px;
}

.team-title {
    position: static;
    padding: 20px 0;
    display: inline-block;
    letter-spacing: 2px;
    width: 100%;
}

.team-title h5 {
    margin-bottom: 0px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    color: #ffb100;
}

.team-title span {
    font-size: 12px;
    text-transform: uppercase;
    color: #a5a5a5;
    letter-spacing: 1px;
}

.careers {
    color: #0792d2;
    background-color: #f5f9ff;
    padding: 10px 20px;
    border: 1px solid #e6eef9;
    border-radius: 5px;
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.careers p {
    font-size: 16px;
    line-height: 1.6em;
    /* border-bottom: 1px dashed #858484; */
    padding-bottom: 10px;
    color: #333;
    border-radius: 0px;
    margin-bottom: 10px;
}

.careers h4 {
    margin-bottom: 20px;
    color: #00a1ff;
}

.card.mb-2 {
    margin-bottom: 25px !important;
    padding: 40px 40px 25px 40px;
    border-bottom: 5px solid #e89806;
}

.products .card.mb-2 {
    margin-bottom: 25px !important;
    padding: 20px;
    border-bottom: 5px solid #e89806;
}

#minimal-bootstrap-carousel {
    margin-top: 0px;
    position: relative;
}

#minimal-bootstrap-carousel .carousel-caption {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    text-align: right;
    text-shadow: none;
}

#minimal-bootstrap-carousel .carousel-caption .container {
    display: table;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 1199px) {
    #minimal-bootstrap-carousel .carousel-caption .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    #minimal-bootstrap-carousel .carousel-caption .container {
        max-width: 720px;
    }
    .carousel {
        height: 330px;
    }
    
}

#minimal-bootstrap-carousel .carousel-caption .container .box {
    display: table-cell;
    text-align: left;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-top {
    vertical-align: top;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-bottom {
    vertical-align: bottom;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-middle {
    vertical-align: middle;
}

#minimal-bootstrap-carousel .carousel-caption .container .box .content {
    display: block;
}

#minimal-bootstrap-carousel [class*=carousel-control] {
    background: none;
    width: 50px;
    height: 50px;
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    background-color: transparent;
    visibility: visible !important;
    opacity: 1;
    /* border: 1px solid #fff; */
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}

@media (max-width: 667px) {
    #minimal-bootstrap-carousel [class*=carousel-control] {
        width: 30px;
        height: 30px;
        font-size: 15px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {
    #minimal-bootstrap-carousel [class*=carousel-control] {
        width: 40px;
        height: 40px;
        font-size: 17px;
        line-height: 40px;
        background: rgba(255, 255, 255, 0.4);
        color: #000;
    }
    .carousel {
        height: 200px;
    }
    .login-btn{
        width: 48%;
    }
}

#minimal-bootstrap-carousel .carousel-control-prev {
    left: 1%;
}

#minimal-bootstrap-carousel .carousel-control-next {
    right: 1%;
}

#minimal-bootstrap-carousel [class*=carousel-control]:hover {
    opacity: 1;
    background: #ffb100;
    border-radius: 50px;
}


/* fixing slider height */

#minimal-bootstrap-carousel.slider-home-one .carousel-inner .carousel-item {
    height: 90vh;
    max-height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #222;
}

.slider-content-style .content {
    text-align: center;
    position: relative;
    z-index: 999;
}

.slider-content-style .content h3,
.slider-content-style .content h2,
.slider-content-style .content p {
    margin: 0;
}

.slider-content-style .content h3 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 800;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    text-transform: none;
    text-align: center;
    line-height: 45px;
    text-shadow: 3px 2px 15px #060000;
    backdrop-filter: blur(0px);
    /* float: left; */
    padding: 20px;
    margin-top: 4%;
}

.slider-content-style .content h3 span {
    font-size: 1.5rem;
    line-height: 3rem;
    background: #042efb;
    padding: 6px 20px;
    border-radius: 5px;
}

.slider-content-style .content p {
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: .150em;
    margin-top: 20px;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.slider-content-style .content a.thm-btn {
    background: rgb(0 0 0/0.4);
    vertical-align: middle;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 17px;
    margin-top: 10px;
    transition: all .4s ease;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    border-radius: 5px;
    border: 1px solid #fff !important;
}

.slider-content-style .content a.thm-btn:hover {
    background: #fff;
    background: #976a00;
}


/*-=-=-=-=-=-=-=-=-=-*/


/* GENERAL STYLES */


/*-=-=-=-=-=-=-=-=-= */

.section--white {
    background-color: #FFFFFF;
}

.section--red {
    background-color: #E74C3C;
}

.section--purple {
    background-color: #D6A8E9;
}

.section--blue {
    background-color: #33CCF7;
}

.section--yellow {
    background-color: #F4E9B4;
}

.section--green {
    background-color: #80D99D;
}

.section--cyan {
    background-color: #80D99D;
}

.section--pale {
    background-color: #F4E9B4;
}

.col_third section {
    margin: 0;
}

.icn_red {
    color: #FF3D6A;
}

.icn_purple {
    color: #9B59B6;
}

.icn_blue {
    color: #3498DB;
}

.icn_yellow {
    color: #F1C40F;
}

.icn_green {
    color: #80D99D;
}


/*-=-=-=-=-=-=-=-=-=-*/


/* Wow Image */


/*-=-=-=-=-=-=-=-=-= */

.service-section {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.wow_imgage {
    position: relative;
    float: left;
    margin: 0 20px 20px 0;
    width: 270px;
    height: 180px;
}

.wow_imgage img {
    border: 4px solid #e4e4e1;
}


/*-=-=-=-=-=-=-=-=-=-*/


/* Column Grids */


/*-=-=-=-=-=-=-=-=-= */

.col_half {
    width: 49%;
}

.col_third {
    width: 32%;
}

.col_fourth {
    width: 23.5%;
}

.col_fifth {
    width: 18.4%;
}

.col_sixth {
    width: 15%;
}

.col_three_fourth {
    width: 74.5%;
}

.col_twothird {
    width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
    position: relative;
    display: inline;
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 20px;
}

.end {
    margin-right: 0 !important;
}


/*-=-=-=-=-=-=-=-=-=-*/


/* Links */


/*-=-=-=-=-=-=-=-=-= */

.brand figure {
    margin: 0;
    padding: 15px;
    background: #fff;
    overflow: hidden;
    transition: 1s ease all;
    border: 1px solid #eee;
    margin-bottom: 25px;
}

figure {
    margin: 0;
    padding: 15px;
    background: #fff;
    overflow: hidden;
    transition: 1s ease all;
}

figure:hover+span {
    bottom: -36px;
    opacity: 1;
}

figure img {
    width: 100%;
}


/* Rotate */

.hover06 figure img {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover06 figure:hover img {
    -webkit-transform: rotate(0deg) scale(2);
    transform: rotate(0deg) scale(2);
}

.hover06 figure:hover {
    -webkit-box-shadow: 0 5px 30px 0 rgba(77, 77, 77, 0.5);
    box-shadow: 0 5px 30px 0 rgba(77, 77, 77, 0.5);
}

.vission ul {
    margin: 0 0 0 30px;
    padding: 0;
    float: left;
}

.vission li {
    margin: 0;
    padding: 0;
    list-style: circle;
    color: #000;
    line-height: 30px;
}

.dropdown-menu .col-md-3 {
    border-right: 1px solid #abb6c5;
    transition: 0.4s ease-in;
}

.dropdown-menu .col-md-3:last-child {
    border-right: 0px solid #d1e4fb;
}

.dropdown-menu .col-md-3 a {
    width: 100%;
    float: left;
    text-align: center;
}

.dropdown-menu .col-md-3:hover {
    box-shadow: 0 10px 23px rgba(0, 0, 0, .15)!important;
}

.dropdown-menu h5 {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.dropdown-menu h5 a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #292121;
    line-height: 19px;
    float: left;
    transition: 0.4s ease-in;
    min-height: 50px;
}

.dropdown-menu h5 a:hover {
    color: #ffb100;
    border-radius: 5px;
}

.dropdown-menu h6 {
    margin-left: 21px;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: #212529;
}

.megamenu-li {
    position: static;
}

.megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    border: 0 !important;
    padding: 15px;
}

.megamenu h6 {
    margin-left: 21px;
    font-size: 19px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.megamenu i {
    width: 20px;
}

.radius-5 {
    border-radius: 5px;
    width: 150px;
}

.orange-box {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    padding: 30px 10px;
    text-align: center !important;
    background: #dc8c01
}

.orange-box-white {
    background-color: #fff;
    border-radius: 6px;
    width: 80%;
    margin: 0 auto;
    display: inline-block;
}

.orange-box-white ul {
    margin: 0;
    padding: 0;
}

.orange-box-white li {
    margin: 0;
    width: 25%;
    height: 185px;
    padding: 40px 1%;
    float: left;
    list-style: none;
    box-shadow: 1px 0px 16px rgb(175 175 175 / 20%);
    transition: 0.9s ease all;
}

.orange-box-white li:hover {
    box-shadow: inset 1px 0px 56px rgb(175 175 175 / 60%);
}

.orange-box-white li img {
    width: 70px;
}


/* .orange-box-white li:hover{
  background-color: #dc8c01;
} */

.radius-6 {
    border-radius: 6px;
}

.orange-box-white h2 {
    font-size: 16px;
    color: #212a31;
    line-height: 17px;
    margin: 10px;
}

.orange-box-white p {
    font-size: 15px;
    color: #fff;
    line-height: 22px;
}

.container ul {
    margin: 0 0 0 40px;
    padding: 0;
}

.container li {
    margin: 0;
    padding: 0;
    list-style: circle;
    line-height: 30px;
    color: #5aaad0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ccc !important;
}

table th {
    color: #5F5F5F;
    font-size: 15px;
    font-weight: normal;
    padding: 17px;
    font-weight: 600;
}

table td {
    text-align: left;
    padding: 5px;
    vertical-align: middle;
    padding: 12px 17px;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}

ul.column li {
    list-style: none;
    margin: 10px;
}

li.nav-item {
    list-style: none;
}

.footer-area p {
    padding: 20px 0 0;
    text-align: right;
    font-size: 12px;
    font-weight: 300;
    color: #989898 !important;
}

#footer .container ul {
    margin: 0 0 0 0px !important;
    padding: 0;
}

.thm-btn {
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000;
    width: 185px;
    display: inline-block;
    text-align: center;
    margin-left: 20px;
    transition: 0.4s ease-in;
}

.thm-btn:hover {
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background-color: #915201;
    width: 185px;
    display: inline-block;
    text-align: center;
    margin-left: 20px;
}

.video-bg {
    background: url(../images/video-bg.html) no-repeat left top;
    background-size: 52%;
    margin: 0;
}

.rgt-box {
    width: 100%;
    float: right;
    border-radius: 30px 0 30px 0;
    background: #fff;
    padding: 0px 50px 50px 55px;
    height: 100%;
}

.rgt-box-top {
    background: #dc8c01;
    border-radius: 0 0 15px 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    width: 70%;
    margin-bottom: 50px;
    padding: 10px 10px;
}

.rgt-box h3 {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-style: italic;
}

.rgt-box h3 span {
    font-size: 14px;
    color: #83dba6;
    text-decoration: none;
    font-style: normal;
}

.green-box {
    background: #e0f6e9;
    border-radius: 15px;
    padding: 30px;
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
}

.green-box ul {
    margin: 0;
    padding: 0;
}

.green-box li {
    margin: 0 0 6px 0;
    padding: 1px 0 0 35px;
    color: #666;
    list-style: none;
    line-height: 27px;
    font-size: 16px;
    background: url(../images/tick.png) no-repeat 0% 50%;
}

.curve-bg {
    background: url(../images/curve_bg.png) no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: #3d3a47;
    padding: 100px 0 100px 5%;
    height: 700px;
    position: relative;
}

.green-color {
    color: #30ae5e !important;
}

.curve-bg h6 {
    font-size: 16px !important;
    color: #41c175 !important;
    line-height: 18px !important;
}

.curve-bg .carousel-caption {
    position: relative;
    left: 0;
    text-align: left;
    width: 65%;
    height: 300px;
}

.curve-bg .carousel-caption h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #41c175 !important;
}

.curve-bg .carousel-caption h5 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0;
}

.curve-bg .carousel-caption p {
    line-height: 20px;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff !important;
}

.curve-bg .carousel-indicators {
    display: inline-block;
    margin-left: 0;
    top: 250px;
    bottom: 0;
}

.curve-bg .carousel-indicators li {
    background: #999;
    border: 0px solid #fff;
    height: 3px;
    border-radius: 0;
    width: 30px;
    float: left;
}

.curve-bg .carousel-item img {
    border-radius: 0 0 0 15px;
}

.curve-bg h5 {
    font-size: 100px;
    line-height: normal;
    font-weight: 300;
    color: #44a06b;
    margin-top: 150px;
}

.curve-bg h5 span {
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #ffffff;
}

.curve-bg p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #ffffff;
}

.curve-bg-bottom {
    width: 54%;
    padding: 30px 50px;
    position: absolute;
    display: inline-block;
    background: #dc8c01;
    border-radius: 10px 0 0px 0px;
    bottom: -50px;
    right: 0;
    z-index: 99;
}

.curve-bg-bottom h3 {
    font-size: 20px;
    line-height: 23px;
    color: #ffffff;
    font-weight: 500;
    margin: 0px 0 20px;
}

.curve-bg-bottom p {
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #ffffff;
}

.curve-bg-bottom h4 {
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    color: #ffffff;
}

.curve-bg-bottom h4 a {
    font-size: 15px;
    line-height: 40px;
    font-weight: 600;
    color: #ffffff;
}

.curve-bg-bottom h4:hover {
    color: #ffffff;
}

.curve-bg-bottom h4:hover img {
    margin-left: -4px;
    transition: 0.4s ease-in;
}

.curve-bg-bottom h4 a img {
    margin-left: 7px;
    margin-top: -2px;
}

.white {
    color: #fff;
}

.gold-text {
    color: #c4a15d !important;
}

.gold-text-a {
    color: #ffc44f !important;
}

.wing-ic {
    position: absolute;
    bottom: 41%;
    left: 24%;
}

.quote-main {
    display: inline-block;
    background: #dc8c01;
    border-radius: 10px;
    padding: 50px;
    transform: translateX(5%);
    width: 90%;
}

.quote-main h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
    text-align: left/* text-transform: uppercase; */
    ;
}

.quote-main h4 {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    line-height: 20px;
}

.quote-div {
    width: 100%;
    float: right;
    padding: 5%;
    background: #fff;
    border-radius: 10px;
}

label.mdb-main-label {
    width: 100%;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

select.mdb-select.md-form.colorful-select.dropdown-primary {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #efebeb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.article-slider .slick-slide {
    width: 100%;
    float: left;
    background: #fff;
    box-shadow: 0 5px 28px 0 rgb(37 55 69 / 10%);
    margin: 23px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 0 6px 6px 6px;
    border-bottom: 5px solid #fff;
    transition: all .5s ease;
}

.article-slider .slick-slide:hover {
    border-bottom: 5px solid #dc8c01;
    box-shadow: 0 5px 50px 0 rgb(37 55 69 / 30%);
    transform: scale(1);
}

.article-slider .slick-slide:hover .slick-img img {
    transition: all 0.5s ease;
    overflow: hidden;
    transform: scale(1.1);
}

.article-slider .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 00%;
    right: 12% !important;
    left: unset;
    background: none !important;
}

.article-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 00%;
    right: 3%;
    background: none !important;
}

.article-slider .slick-prev:hover {
    background: #fff;
}

.article-slider .slick-next:hover {
    background: #fff;
}

.article-slider .slick-prev:before {
    color: #000;
    font-size: 40px;
}

.article-slider .slick-prev:before:hover {
    color: #ffc800;
    font-size: 40px;
}

.article-slider .slick-next:before {
    color: #000;
    font-size: 40px;
}

.article-slider .slick-img {
    width: 100%;
    position: relative;
    margin-left: -30px;
    margin-top: -30px;
    height: 230px;
}

.article-slider .slick-img img {
    border-radius: 0 0 5px 0;
    height: 100%;
}

.article-slider h1 {
    font-size: 25px !important;
    color: #333 !important;
    line-height: 32px !important;
    font-weight: 500;
    height: 100px;
    overflow: hidden;
}

.article-slider h2 {
    font-size: 16px !important;
    font-weight: 400;
    color: #fff !important;
    line-height: 26px !important;
    background-color: #da8d01;
    padding: 6px;
    border-radius: 3px;
    width: 80%;
    margin-top: -21px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.article-slider h3 {
    font-size: 15px !important;
    color: #333 !important;
    line-height: 26px !important;
    font-weight: 400;
    margin: 15px 0;
}

.article-slider p {
    height: 91px;
    overflow: hidden;
    font-size: 15px !important;
    color: #a2a2a2 !important;
    line-height: 22px !important;
    font-weight: 300;
}

.article-slider .more-btn-blk {
    border-radius: 5px;
    padding: 15px 35px;
    text-align: center !important;
    color: #253745 !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    transition: all 0.25s linear;
    border: 2px solid #253745;
    background-color: #fff;
    float: left;
}

.article-slider .more-btn-blk:hover {
    color: #fff !important;
    text-decoration: none;
    background: #dc8c01;
    border: 2px solid #dc8c01;
}

.article-slider .more-btn-blk i {
    font-size: 20px;
    float: right;
    margin: 2px 0 0 10px;
}

.mouse-bg {
    background: url(../images/footer_mouse.html) no-repeat right top;
}

.about-div {
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
    margin-left: -15px !important;    
    padding-bottom: 15px;
}

.about-div ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.about-div li {
    margin: 5px;
    float: left;
    list-style: none;
    background: url(../images/list-arrow.html) no-repeat 7% 53%;
    font-size: 15px;
    color: #504f4d;
    text-decoration: none;
    border-radius: 100px;
    line-height: 9px;
    border: 1px solid #dbbb7d;
    padding: 10px 28px;
}

.white-bg {
    background-color: #fff !important;
}

.img-style {
    box-shadow: 0px 0px 27px rgb(0 0 0 / 10%);
    border-radius: 7px;
    border: 1px solid #ccc;
}

#container {
    margin: auto;
}

.grid-item {
    display: inline-block;
    height: 259px;
    overflow: hidden;
    text-align: center;
    width: 400px;
    position: relative;
    padding: 20px 10px;
}

.grid-item img {
    width: 100%;
    height: auto;
    filter: url(filters.html#grayscale);
    filter: gray;
    -webkit-filter: grayscale(1);
    transition: 0.9s;
}

.grid-item img:hover {
    filter: none;
}

.isotope-pager .pager {
    display: inline-block;
}

.filters {
    width: 100%;
    text-align: center;
    padding-bottom: 35px;
    padding-top: 20px;
}

.filters ul {
    list-style: none;
    padding: 20px 10px;
    margin: 0 40px;
    border-radius: 30px;
}

.filters li {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0px;
}

.filters li a {
    color: #000;
    text-decoration: none;
    padding: 10px 25px;
    margin: 10px 5px;
}

.filters li a:hover {
    color: #fff;
    background-color: #ffb100;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
}

.filters li.active a {
    color: #fff;
    background-color: #ffb100;
    border: 1px solid #ffb100;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
    border-radius: 5px;
    padding: 10px 25px;
}

.isotope-pager a {
    margin: 6px 1px;
    display: inline-block;
    width: 50px;
    /* height: 60px; */
    line-height: 31px;
    color: #b6b6b6;
    font-weight: 600;
    transition: 0.3s;
    /* position: relative; */
    /* padding-right: 26px; */
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .1);
    border-radius: 25px;
    background-color: #232323;
    border: .5px solid #e3ca66;
    text-decoration: none;
}

.isotope-pager a:hover {
    color: #fff;
    border: .5px solid #ffeeac;
    box-shadow: -1px 1px 10px 3px rgba(0, 0, 0, .1);
}

.isotope-pager .active {
    color: #e3ca66 !important;
    box-shadow: -1px 1px 10px 5px rgba(0, 0, 0, .1);
    border-radius: 25px;
    background-color: #161616;
    border: 1px dotted #e3ca66;
}

.isotope-pager .prev {
    border-radius: 30px 0 0 30px;
}

.isotope-pager .next {
    border-radius: 0 30px 30px 0;
}

.isotope-pager a::before,
.isotope-pager a:after {
    content: "";
    position: absolute;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
}

.isotope-pager .num::before,
.next::before {
    border-right: 20px solid #2c3e50;
    right: 100%;
}

.isotope-pager .num:after,
.prev:after {
    border-right: 20px solid #f1f1f1;
    right: 0;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    /* Black see-through */
    color: #f1f1f1;
    width: 95%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.grid-item:hover .overlay {
    opacity: 1;
}


/* blog-------------------- */

.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 400px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #111111;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #e03a3c;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #777777;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.blog .entry .entry-meta a {
    color: #5e5e5e;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #e03a3c;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #e65d5f;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #111111;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #5e5e5e;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #8b8b8b;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #e03a3c;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
}

.blog .blog-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.blog .blog-author .social-links {
    margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
    color: #777777;
}

.blog .blog-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    width: 50px;
}

.blog .blog-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #e03a3c;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #111111;
}

.blog .blog-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #777777;
    margin-bottom: 5px;
}

.blog .blog-comments .comment p {
    margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 20px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #ee9293;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px0;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #ee9293;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 8px 20px;
    border: 0;
    background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #e03a3c;
}

.blog .blog-pagination {
    color: #444444;
}

.blog .blog-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.blog .blog-pagination li {
    border: 1px solid white;
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li.active {
    background: white;
}

.blog .blog-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #e03a3c;
    border: 1px solid #e03a3c;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .blog-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #111111;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #e03a3c;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
    background: #2b2b2b;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #515151;
}

.blog .sidebar .categories ul a:hover {
    color: #e03a3c;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #777777;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 0;
    font-weight: bold;
    line-height: 19px;
    padding: 5px;
    transition: all .5s ease 0s
}

.blog .sidebar .recent-posts h4:hover {
    box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
}

.blog .sidebar .recent-posts h4 img {
    margin-right: 20px;
}

.blog .sidebar .recent-posts h4 a {
    color: black;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #e03a3c;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #777777;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #515151;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #c4c4c4;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #111111;
    background: #111111;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.chairman {
    width: 92%;
    margin: 0 auto;
    /* margin-top: 50px;
    margin-bottom: 50px; */
    border-bottom: 6px solid #ffc800;
    padding: 4% 5%;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
    /* background-color: #fff; */
    background-color: rgb(12 12 11/0.6);
}

.chairman h4 {
    font-size: 20px;
    color: #ffc800;
}

.chairman p {
    font-size: 15px;
}

#section1 {
    background: url(../images/service-bg.jpg) no-repeat center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /*height: 100vh;  100% of viewport height */
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

#section2 {
    background: url(../images/luxus.jpg) no-repeat center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /*height: 100vh;  100% of viewport height */
    margin: 0 auto;
    padding: 0px 0 300px 0;
    position: relative;
}

#section3 {
    background: url(../images/why-bg.jpg) no-repeat center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /*height: 100vh;  100% of viewport height */
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

#section3 ul {
    margin: 0;
    padding: 0;
}

#section3 li {
    margin: 0 0 25px 10px;
    list-style: none;
    padding: 0 0 0 30px;
    background: url(../images/list-arrow.html) no-repeat 0 60%;
}

#section3 li h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: unset;
    margin: 0;
}

.mission-img {
   border-radius: 5px;
}

.vission-img {
    border-radius: 5px;
}


/* END blog-------------------- */

.chairman-div {
    background-color: #fff;
    padding: 100px 0;
}

.premium .slick-slide {
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 5px 28px 0 rgb(37 55 69 / 10%);
}

.premium .slick-img {
    height: 283px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
    -ms-transform: skew(-10deg);
    /* IE 9 */
    transform: skew(-10deg);
    /* Standard syntax */
    transition: ease all .5s;
}

.premium .slick-img:hover {
    transform: skew(-11deg);
    /* Standard syntax */
}

.premium-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0px;
    transform: skew(3deg);
    background: #333;
    text-align: center;
    border-radius: 0;
}

.premium-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #c4a15d;
}

.premium-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}


/* .machineries .slick-prev {
  border-radius: 50px;
  background: rgb(255 177 1/0.9);
    border: 2px solid #fff;
}
.machineries .slick-next {
  border-radius: 50px;
  background: rgb(255 177 1/0.9);
    border: 2px solid #fff;
} */


/*********************** Demo - 15 *******************/

.box15 {
    position: relative;
    margin: 15px 0;
}

.box15 img {
    width: 100%;
    height: auto
}

.box15 .box-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease 0s
}

.box15:hover .box-content {
    background-color: rgb(249 167 53 / 80%);
}

.box15 .box-content:after,
.box15 .box-content:before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    transform: scale(1.5);
    transition: all .6s ease .3s
}

.box15 .box-content:before {
    border-left: 1px solid #040404;
    border-top: 1px solid #040404;
    top: 19px;
    left: 19px
}

.box15 .box-content:after {
    border-bottom: 1px solid #040404;
    border-right: 1px solid #040404;
    bottom: 19px;
    right: 19px
}

.box15:hover .box-content:after,
.box15:hover .box-content:before {
    opacity: 1;
    transform: scale(1)
}

.box15 .title {
    font-size: 22px;
    color: rgb(255, 255, 255);
    margin: 0;
    position: relative;
    top: 0;
    opacity: 0;
    transition: all 1s ease 10ms;
    text-align: center;
}

.box15:hover .title {
    top: 39%;
    opacity: 1;
    transition: all .5s cubic-bezier(1, -.53, .405, 1.425) 10ms
}

.box15 .title:after {
    content: "";
    width: 0;
    height: 1px;
    background: #ffffff;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 1s ease 0s
}

.box15:hover .title:after {
    width: 80%;
    transition: all 1s ease .8s
}

.box15 .icon {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(1, -.53, .405, 1.425);
    transition-delay: .1s;
    text-align: center;
    margin-top: 17px;
}

.box15:hover .icon {
    bottom: 39%;
    opacity: 1
}

.box15 .icon li {
    display: inline-block
}

.box15 .icon li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
    border: 1px solid #000;
    margin-right: 5px;
    transition: all .3s ease-in-out 0s
}

.box15 .icon li a:hover {
    background: #000;
    color: #fff
}

p.title {
    font-size: 15px !important;
    line-height: 20px;
    padding: 10px 0 !important;
}

@media only screen and (max-width:990px) {
    .box15 {
        margin-bottom: 30px
    }
}


/*********************** Demo - 8 *******************/

.box8 .icon,
.box8 .title {
    margin: 0;
    position: absolute
}

.box8 {
    box-shadow: 0 0 12px rgb(0 0 0 / 10%);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 3px;
    border: 1px solid #efefef;
}

.box8 img {
    width: 100%;
    height: auto
}

.box8 .box-content {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s
}

.box8 .icon li a,
.box8 .title {
    background: #ffb100;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0px 4px 0 rgb(37 55 69 / 60%);
    display: none;
}

.box8:hover .box-content {
    opacity: 1;
    transform: perspective(400px) rotateX(0)
}

.box8 .title {
    padding: 5px 7px;
    border-radius: 5px;
    font-weight: 600;
    bottom: 20px;
    left: 20px;
    transition: all .9s ease 0s
}

.box8 .icon li a,
.box9 .box-content,
.box9 .icon li,
.box9 img {
    transition: all .35s ease 0s
}

.box8:hover .title {
    bottom: -40px
}

.box8 .icon {
    list-style: none;
    padding: 0;
    top: 42%;
    left: 30%;
    right: 0
}

.box8 .icon li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 7px
}

.box9 .icon,
.box9 .title {
    width: 100%;
    font-size: 22px
}

.box8 .icon li a:hover {
    background: #fff;
    color: #000
}

.icon li {
    list-style: none;
    float: left;
    text-align: center;
    margin-left: 25%;
}

@media only screen and (max-width:990px) {
    .box8 {
        margin-bottom: 20px
    }
}

.mission {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 14px rgb(37 55 69 / 14%);
    /* border: 1px solid #ccc; */
    padding: 20px 30px;
    border-radius: 5px;
    min-height: 540px;
}

.mission p {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}

.shadow-img {
    box-shadow: 0px 0px 19px rgb(37 55 69 / 38%);
    margin: 0 20px;
    border-radius: 4px;
}

.group-div h1 {
    color: #ff9400;
    font-size: 22px;
    text-align: center;
    line-height: 32px;
}

.group-div p {
    height: 155px;
    overflow: hidden;
    text-align: center;
    padding: 0 20px 20px 20px;
    color: #989898;
    font-size: 15px;
}

.group-div .btn-dtl {
    width: 80%;
    left: 10%;
    bottom: 40%;
    display: inline-block;
    padding: 9px 27px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 44px;
    background: url(../images/black-arrow.png) no-repeat 88% 48%;
    background-color: #ff9400;
    transition: all 0.25s linear;
    position: absolute;
}

.group-div .btn-dtl:hover {
    background-color: #c57300;
    color: #fff;
}

.size-20 {
    font-size: 20px !important;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
}

.close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

.play-button {
    position: absolute;
    left: 48%;
    top: 40%;
    border-radius: 50px;
}

.play-button:hover {
    box-shadow: 0 3px 20px rgb(255 255 255 / 90%) !important;
}

.rgt-box {
    text-align: left !important;
}

.rgt-box h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
}

.grey-text {
    color: #525252 !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.car-bg {
    background: url(../images/left-car.html) no-repeat left top;
    width: 100%;
    float: left;
    height: 100%;
    background-position: left bottom;
    background-size: cover;
}

.img-style {
    border-radius: 7px;
    box-shadow: 0 0 16px rgb(0 0 0 / 40%);
    margin: 20px;
}

.ban-text {
    background-color: rgb(0 0 0/0.7);
    padding: 10px 10px 20px 15px;
    margin-top: 0 !important;
}

.ban-text h3 {
    margin-bottom: 0 !important;
    line-height: 74px !important;
    text-align: center !important;
    padding: 0 !important;
    display: initial !important;
    margin: 0 !important;
    font-size: 3.5rem;
}

.ekko-lightbox {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0!important
}

.ekko-lightbox-container {
    position: relative;
    border: 10px solid rgb(255 255 255/0.5);
    border-radius: 5px;
}

.ekko-lightbox-container>div.ekko-lightbox-item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%
}

.ekko-lightbox iframe {
    width: 100%;
    height: 100%
}

.ekko-lightbox-nav-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex
}

.ekko-lightbox-nav-overlay a {
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: opacity .5s;
    color: #fff;
    font-size: 30px;
    z-index: 1
}

.ekko-lightbox-nav-overlay a>* {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.ekko-lightbox-nav-overlay a>:focus {
    outline: none
}

.ekko-lightbox-nav-overlay a span {
    padding: 0 30px
}

.ekko-lightbox-nav-overlay a:last-child span {
    text-align: right
}

.ekko-lightbox-nav-overlay a:hover {
    text-decoration: none
}

.ekko-lightbox-nav-overlay a:focus {
    outline: none
}

.ekko-lightbox-nav-overlay a.disabled {
    cursor: default;
    visibility: hidden
}

.ekko-lightbox a:hover {
    opacity: 1;
    text-decoration: none
}

.ekko-lightbox .modal-dialog {
    display: none
}

.ekko-lightbox .modal-footer {
    text-align: left
}

.ekko-lightbox-loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.ekko-lightbox-loader>div {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center
}

.ekko-lightbox-loader>div>div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    animation: a 2s infinite ease-in-out
}

.ekko-lightbox-loader>div>div:last-child {
    animation-delay: -1s
}

.modal-dialog .ekko-lightbox-loader>div>div {
    background-color: #333
}

@keyframes a {
    0%,
    to {
        transform: scale(0);
        -webkit-transform: scale(0)
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

.brands {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.brands-img {
    width: 20%;
    margin: 2%;
    display: inline-block;
    transition: all ease-in-out .3s;
}

.brands h2 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.5px;
}

.brands img {
    transition: all ease-in-out .3s;
    width: 100%;
}

.brands-img:hover {
    transform: scale(1.3);
    /* box-shadow: 0 0px 10px rgba(0, 0, 0, .10); */
    border-radius: 2px;
}

.event-main {
    width: 100%;
    float: left;
    background: #fff;
    transition: all ease .5s;
    margin-bottom: 25px;
}

.event-main:hover {
    box-shadow: 0 0px 50px rgba(0, 0, 0, .30);
    transform: translate3d(0px, -30px, 0px);
}

.event-main img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.event-text {
    width: 100%;
    float: left;
    padding: 50px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, .20);
    border-radius: 0 0 7px 7px;
    min-height: 250px;
    padding-bottom: 0;
}
.event-text i {
    font-weight: 400;
    font-size: 13px;
}

.event-text h4 {
    font-weight: 600;
}

.event-text p {
    font-weight: 500;
    line-height: 22px;
    color: #000;
    font-size: 14px;
    margin-top: 14px;
}

.event-text p a {
    color: #8e7a3d;
    font-weight: 500;
}


/* testimonilas________________________ */

.testimonilas {
    width: 100%;
    float: left;
}

.testimonilas .carousel {
    height: auto;
}

.testimonilas .carousel-inner {
    height: auto;
}

.testimonilas .carousel-item img {
    width: auto;
    height: auto;
    box-shadow: 17px 13px 60px rgb(0 0 0 / 30%);
}

.testimonilas .carousel-caption {
    position: absolute;
    right: 0%;
    left: 0%;
    width: 80%;
    bottom: unset;
}

.testimonilas .testimonial-user {
    position: relative;
    padding-top: 25px;
}

.testimonilas .testimonial-user::before {
    content: "";
    display: inline-block;
    background: url(../images/coma-a.html) no-repeat right top;
    width: 126px;
    height: 86px;
    position: absolute;
    right: 0;
    top: -33px;
    z-index: -1;
}

.testimonilas .testimonial-user::after {
    content: "";
    display: inline-block;
    background: url(../images/coma-b.html) no-repeat right top;
    width: 126px;
    height: 86px;
    position: absolute;
    left: 0;
    bottom: -70px;
    z-index: -1;
}

.testimonilas .card .carousel-item {
    height: 350px;
}

.testimonilas .card .carousel-caption {
    right: 0;
    left: 10%;
    color: #3d3d3d;
    padding: 35px 0;
}

.testimonilas .card .carousel-caption h3 {
    color: #3d3d3d;
}

.testimonilas .card .carousel-caption p {
    line-height: 30px;
}

.testimonilas .card .carousel-caption .col-sm-3 {
    display: flex;
    align-items: center;
}

.testimonilas .card .carousel-caption .col-sm-9 {
    text-align: left;
}

.testimonilas .navi a {
    text-decoration: none;
    float: left;
    left: 5%;
    top: 50%;
    position: absolute;
    width: 90%;
}

.testimonilas a>.ico {
    padding: 10px;
}

.testimonilas a:hover>.ico {
    /* background-color: #666; */
    opacity: 0.5;
}

.carousel-control-prev-icon {
    background: url(../images/left-arrow.png) no-repeat;
}

.carousel-control-next-icon {
    background: url(../images/right-arrow.png) no-repeat;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 35px;
    height: 20px;
    transition: ease all .5s;
}

.carousel-control-next-icon,
.carousel-control-prev-icon:hover {
    background-color: none;
}

span.carousel-control-next-icon.ico {
    right: 0;
    position: absolute;
}


/* END testimonilas________________________ */

.service-list {    
    min-height: 335px;
    text-align: center;
    padding: 25px 15px !important;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    transition: all ease 0.5s;
    border-radius: 3px;
    border: 0px solid #eee;
    width: 22%;
    margin: 1%;
    background-color: #fff;
    float: left;
}

.service-list:hover {
    background-color: rgb(248, 248, 248);
    box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 20%);    
    color: #fff;   
}

.service-list h3 {
    font-size: 15px;
    color: #c29847;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 9px
}

.service-list li {
    margin: 0 10px 35px 0;
    padding: 0;
    /* float: left; */
    list-style: none;
    display: inline-block;
    background: #eee;
    padding: 10px;
}

.service-list p {
    color: #000;
    font-size: 13px;
    line-height: 20px;
}

.service-list h4 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #dfdbdb;
    padding: 5px 0;
    width: 170px;
    margin: 0 auto;
    border-radius: 5px;
    transition: all ease 1s;
}

.service-list h4:hover {
    color: #fff;
    background: #333;
}

.brochure {
    width: 100%;
    float: left;
}

.brochure h1 {
    color: #fff;
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    line-height: 45px;
    transition: ease all 0.5s;
}

.brochure h1 a {
    color: #fff;
}

.brochure h1 a:hover {
    color: #c4a15d;
    text-shadow: 0 0 20px rgb(196 161 93/0.3);
}

.brochure h1 a:hover>i {
    color: #c4a15d;
}

.brochure i {
    color: #fff;
    font-size: 100px;
    margin-bottom: 20px;
}

#section4 {
    background: url(../images/airport-new-1.jpg) no-repeat center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /*height: 100vh;  100% of viewport height */
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
    float: left;
    width: 100%;
}


/* image-gallery________________ */

.btn:focus,
.btn:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

#image-gallery .modal-footer {
    display: block;
}

.thumb {
    margin-top: 15px;
    margin-bottom: 15px;
}

.media-new {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.media-new img {
    position: relative;
    z-index: -1;
    box-shadow: 0 0 24px 0px rgb(0 0 0 / 30%);
    border-radius: 3px;
    width: 100%;
}

.media-new h3 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    bottom: -15%;
    left: 5%;
    line-height: 25px;
    width: 90%;
    box-shadow: 0 0 24px 0px rgb(0 0 0 / 30%);
}

.media-new h3 span {
    font-size: 22px;
    float: left;
    width: 100%;
    font-weight: 700;
    margin-bottom: 10px;
}


/*** 

_______
	Contact Page Section
________

***/

.contact-page-section {
    position: relative;
    padding: 0px 0px 0px;
}

.contact-page-section .info-column {
    position: relative;
    padding-bottom: 40px;
    background-color: #000;
}

.contact-page-section .info-column .inner-column {
    position: relative;
    margin-right: -20px;
    padding: 50px 35px 45px 23px;
    /*
	-webkit-box-shadow:0px 0px 45px rgba(0,0,0,0.20);
	-ms-box-shadow:0px 0px 45px rgba(0,0,0,0.20);
	box-shadow:0px 0px 45px rgba(0,0,0,0.20);	
*/
}

.contact-page-section .info-column .inner-column .title-box {
    position: relative;
}

.contact-page-section .info-column .inner-column .title-box h3 {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3em;
}

.contact-page-section .info-column .inner-column .title-box .title-text {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 8px;
    margin-bottom: 30px;
    color: #fff;
}

.contact-page-section .info-column .inner-column .social-links {
    position: relative;
}

.contact-page-section .info-column .inner-column .social-links li {
    position: relative;
    margin-right: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.contact-page-section .info-column .inner-column .social-links li a {
    position: relative;
    color: #cacaca;
    width: 45px;
    height: 45px;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #cacaca;
}

.contact-page-section .info-column .inner-column .social-links li a:hover {
    color: #fff;
    border-color: #c4a15d;
    background-color: #c4a15d;
}


/* Contact Info List */

.contact-info-list {
    position: relative;
}

.contact-info-list span.txt {
    font-size: 14px;
}

.contact-info-list li {
    position: relative;
    margin-bottom: 30px;
    font-size: 16px;
    min-height: 50px;
    line-height: 25px;
    padding-left: 50px;
    color: #fff;
    font-family: arial;
    padding-left: 0;
    list-style: none;
}

ul.contact-info-list i {
    font-size: 21px;
    position: absolute;
    left: -38px;
}

.contact-info-list li strong {
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.contact-info-list li .icon {
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 26px;
    line-height: 1em;
}

.contact-page-section .form-column {
    position: relative;
}

.contact-page-section .form-column .inner-column {
    position: relative;
    padding-left: 60px;
}

.contact-page-section .form-column .inner-column .row {
    margin: 0px -11px;
}

.contact-page-section .form-column .inner-column .contact-form .form-group {
    padding: 0px 10px;
}


/* Contact Form */

.contact-form {
    position: relative;
    margin-bottom: 30px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    color: #000;
    line-height: 26px;
    padding: 10px 28px;
    height: 60px;
    font-size: 14px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #999;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #df6512;
}

.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 28px;
    color: #000;
    height: 200px;
    font-size: 14px;
    resize: none;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #999;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ff0000 !important;
}

.contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ff0000;
    font-weight: 500;
}

.car-bg {
    background: url(../images/car-bg-a.png) repeat-x bottom;
    background-size: 50%;
    padding-bottom: 85px !important;
    /* width: 100%;
  float: left; */
}


/* section{
   width: 100%;
  float: left; 
} */

.service-bg {
    background: url(../images/service-bg-a.png) no-repeat bottom right;
    transition: all ease 2s;
}

.green-bg {
    background-color: #f9fde7;
    float: left;
    width: 100%;
}

.car-list li {
    list-style: none;
    margin: 0 0 16px 0px;
    padding: 0 0 0 30px;
    background: url(../images/tick.png) no-repeat 0 50%;
    background-size: 17px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #000;
}


/* Slider */

.carousel-item {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.carousel-item.active {
    border-radius: 10px 10px 10px 10px;
}

.car-sec .carousel-item {
    /* height: 70vh; */
    height: 100%;
}

.price h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
}

.text-color {
    color: #ed8323!important;
}

h3 {
    font-size: 26px;
    color: #544321;
    font-weight: 400;
    margin: 30px 0 20px;
}


/* car-carousel_________________________ */

.ourworks-box {
    width: 60%;
    justify-content: center;
    text-align: center;
}

.our-works-head {
    font-size: 30px;
    font-weight: 400;
    color: black;
}

.introduce {
    height: 250px;
    background-color: white;
    box-shadow: 0 3px 10px #5969f642;
    border-bottom: 4px solid #5969f6;
    color: black;
}

.introduce:hover {
    box-shadow: 0 3px 15px #5969f666;
    border-bottom: 4px solid #B122e5;
    color: black;
    text-decoration: none;
}

.flex-column-1 {
    height: 70%;
    width: 100%;
}

.flex-column-2 {
    height: 30%;
    width: 100%;
    align-items: center;
}

.text-gray {
    color: gray;
}

.pic {
    height: 70px;
    width: 70px;
    margin-left: 20px;
    border-radius: 50%;
    transition: all .2s ease-in-out;
}

.introduce:hover .pic {
    transform: scale(1.1);
}

.carousel-indicators .active {
    background-color: #46eeaa;
}

.carousel-indicators li {
    background-color: #8d9093;
    color:#333
}


/* .carousel-indicators {
    bottom: -50px;
} */

.car-carousel .brands-img {
    width: 100%;
}

.car-carousel .carousel-item img {
    height: auto;
    width: 85%;
}

.car-carousel .carousel-item h5 {
    color: #000;
    text-align: center;
}

.car-carousel .carousel-item {
    height: auto;
}

.car-carousel .carousel-inner {
    height: auto;
}

.car-carousel .carousel {
    position: relative;
    height: auto;
}

.w-95 {
    max-width: 95%;
    margin-left: 2%;
    margin-top: 10px;
}
.w-80 {
    width: 80%;
}

.rotate-img {
    /* width: 300px;
    height: 300px;
    display: block;
    content:"";
    background-color: #f00;*/
    position: absolute;
    animation: rotation 8s infinite linear;
    left: 0;
    top: 00px;
    z-index: 999;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.call-top{
    transform: rotate(95deg);
}
.top-ic{
    color: #5c594f;
}
.login-btn{
    border-radius: 4px;
    padding: 8px 30px;
    display: inline-block;
    text-align: center !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s linear;
    border: 0px solid #555555;
    background: #8e7a3d;
    color: #fff;
    margin-top: 31px;
}
.login-btn:hover{    
    background: #b38701;
    color: #fff;
}
.login-btn i{
    padding-left: 4px;
}
.vision{    
    width: 80%;
    border-radius: 10px;
    background-color: #eee;
    padding: 20px;
    margin: 0 auto;
    min-height: 405px;

}
.vision h4 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 23px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px !important;
}
.about-div h3{
    font-size: 25px;
    color: #544321;
    font-weight: 400;
    margin: 0;
}
.about-div h3 span{
    font-size: 28px;
    color: #c38a1c;
    font-weight: 600;
}
.bg-log{
    background: url(../images/log-bg.jpg) no-repeat left top;
    background-color: #000;
    background-size: cover;
    height: 100vh;
    padding-top: 19%;
}
#login .container #login-row #login-column #login-box {
    margin-top: 50px;
    max-width: 600px;
    height: 320px;
    width: 250px;
    text-align: center;
  }
#login .container #login-row #login-column #login-box #login-form {
    padding: 20px;
  }
#login .container #login-row #login-column #login-box #login-form #register-link {
    margin-top: -85px;
  }


.car-sec .carousel {
    position: relative;    
    height: 450px;
}

/* _______slider_____ */

        @media (max-width: 768px) {
            .car-slider.carousel-inner .carousel-item > div {
                display: none;
            }
            .car-slider .carousel-inner .carousel-item > div:first-child {
                display: block;
            }
        }

        .car-slider .carousel-inner .carousel-item.active,
        .car-slider .carousel-inner .carousel-item-next,
        .car-slider .carousel-inner .carousel-item-prev {
            display: flex;
        }

        /* large - display 6 */
        @media (min-width: 992px) {
            
            .car-slider .carousel-inner .carousel-item-right.active,
            .car-slider .carousel-inner .carousel-item-next {
            transform: translateX(50%);
            }
            
            .car-slider .carousel-inner .carousel-item-left.active, 
            .car-slider .carousel-inner .carousel-item-prev {
            transform: translateX(-50%);
            }
        }

        .car-slider .carousel-inner .carousel-item-right,
        .car-slider .carousel-inner .carousel-item-left{ 
        transform: translateX(0);
        }
        .car-slider .movie-img {
            /* height:200px; */
            width: 100%;           
            overflow: hidden;
            background-repeat:no-repeat;
            background-size: cover;
            object-fit: fill;
        }
        .car-slider .movie-img:hover {
            /* transition: all ease-in 1s; */
            transition: all ease 1s;
            transform: scale(0.8);
        }

        .car-slider .movie-title {
            /* height: 40px;  */
            width:150px;
            width: 100%;
            text-align: center;
            background-color: #fff;
            overflow: hidden;
        }
        .car-slider .carousel-item img{
            height: auto;
        }
        .car-slider .carousel-item{
            height: auto;
        }
        .car-slider .carousel{
            height: auto;
        }

/* _______END slider_____ */

.booknow-btn {
    border-radius: 2px;
    padding: 12px 30px;
    display: inline-block;
    text-align: center !important;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: #c4a15d;
    transition: all 0.25s linear;
    border: 1px solid #c4a15d;
    position: fixed;
    z-index: 9999;
    right: 0;
    margin-top: -100px;
    width: 250px;
        box-shadow: -4px 4px 4px #e5e5e5;
    
}

.booknow-btn:hover {
    color: #fff;
    text-decoration: none;
    background: #744900;
}

#section1 h2 {
    font-size: 20px;
    font-weight: 600;
    color: #c29847;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
#section1 p {
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
}

/* ==================== media query ====================== */

@media (max-width: 1199px) {
    .service-list {
        width: 31%;
        margin: 2% 1%;
        float: left;
        min-height: 357px;
    }
    .carousel-item img {
        width: 100%;
        height: auto;
    }
    .carousel-indicators {
        bottom: unset;
        height: 100% !important;
        }
    .pt-150 {
            padding-top: 20px;
        }
    .sub-banner h1 {
            font-size: 25pt;
        }
}

@media (max-width: 1024px) {
    .carousel-item {
        z-index: -1;
    }
    .testimonilas .carousel-item {
        z-index: 99;
    }
    .testimonilas .navi a {
        z-index: 999;
    }
    .footer-links {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-top: 30px;
    }
    .footer-rgt {
        width: 100%;
        position: relative;
        float: right;
        background: #c4a15d;
        padding: 37px 40px;
        border-radius: 15px;
        bottom: unset;
        right: unset;
        transform: skewX(-4deg);
        height: auto;
        margin: 15px;
    }
    #nav {
        height: 100vh;
    }
    .car-sec .carousel-inner {
        height: 86%;
    }
    .car-slider .carousel {
        height: auto;
        width: 85%;
    }
    .premium .slick-img {
        height: 210px;
    }
    .slick-slide h4 {
        font-size: 15px !important;
        font-weight: 300;
    }
    
    
}

@media (min-width: 1367px) {
    #section2 {
        padding-bottom: 500px;
    }
    .sub-banner img {
        width: auto;
        height: 600px;
    }
   
}

@media (min-width: 768px) {
    nav.navbar {
        padding: 0px;
        margin-top: 30px;
    }
    .nav-tabs {
        display: flex;
    }
    .card {
        border: none;
    }
    .card .card-header {
        display: none;
    }
    .card .collapse {
        display: block;
    }
    .tab-content>.active {
        display: block;
        padding: 20px 10px;
        float: left;
    }
}

@media (max-width: 1024px) {
    .article-slider p {
        height: auto;
        overflow: hidden;
    }
    .orange-box-white li img {
        width: 55px;
    }
    .orange-box-white h2 {
        font-size: 14px;
    }
    img.float-left.mr-5.mb-2.img-shadow {
        width: 50%;
    }
    button.navbar-toggler {
        position: absolute;
        right: 0;
        top: 0px;
    }
    .nav-main {
        left: 0%;
        transform: translateX(-0%);
        width: 100%;
        padding: 0 2%;
    }    
    
}

.sub-banner {
    width: 100%;
    float: left;
    margin: 0;
}

.sub-banner img {
    width: 100%;
    overflow: hidden;
}

.sub-banner h1 {
    font-size: 45pt;
    color: #000;
    font-weight: 700;
    background-color: #fff;
    position: absolute;
    top: 35%;
    left: -100%;
    padding: 20px 30px;
}

.sub-banner h1 span {
    font-size: 17pt;
    color: #000;
    font-weight: 600;
    float: left;
    line-height: 35px !important;
}

.img-inr::before {
    background-color: #333;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    display: block;
}
.head-top ul{
    margin: 0;
    padding: 0;
}
.head-top li{
    margin: 32px 10px 0 0;
    padding: 0;
    list-style: none;
    float: left;
    
}

/* ====================== media query ======================= */
@media (max-width: 1367px) {
    .bg-log{     
        padding-top: 10%;
    }    
    .p-100 {
        padding: 30px;
    }
}
@media (max-width: 1023px) {
    .navbar-collapse {
        padding-top: 45px;
        background: #fff;
        border-radius: 5px;
        z-index: 100;
    }
    .service-list {
        width: 47%;
        margin: 3% 1%;
    }
    .head-top li {
        margin-top: 18px;
        margin-bottom: 0;
        margin-right: 0;
    }
    .head-top li:last-child {
        margin-top: 0;
    }
    .login-btn {
        float: left;
        margin-right: 5px;
        padding: 8px 15px;
    }
    .col-sm-4.head-top {
        padding-right: 0;
    }
    .row.p-50 {
        padding: 0;
    }
    .brands-img {
        width: 25%;
    }
    .brands h2 {
        font-size: 18px;
        font-weight: 500;
    }
    .sub-banner h1 {
        font-size: 20pt;
    }
}

@media (max-width: 767px) {
    .pt-100rsm {
        margin-top: 100px;
    }
    .pt-50rsm {
        margin-top: 50px;
    }
    .mb-0rs {
        margin-bottom: 0;
    }
    h2 {
        font-size: 27px;
    }
    ul.contact-info-list i {
        left: 0;
    }
    .contact-info-list li {
        padding-left: 40px;
    }
    .contact-page-section .form-column .inner-column {
        padding-left: 0;
    }
    .media-new {
        margin-bottom: 0px;
    }
    .media-new h3 {
        position: relative;
        line-height: 26px;
        width: 90%;
        text-align: center;
        font-size: 17px;
        padding: 20px;
        left: 5%;
        top: -60px;
    }
    .service-list {
        width: 100%;
        margin: 3% 1%;
    }
    .footer-rgt-div {
        transform: skewX( 0deg);
    }
    .pt-38 {
        padding-top: 0;
        text-align: center;
    }
    header h4 {
        font-size: 17px;
        font-weight: 400;
    }
    .menu {
        right: 0%;
        top: 25px;
    }
    .carousel-indicators {
        width: 50px;
        height: 100%;
    }
    .carousel {
        position: relative;
        /* height: auto; */
    }
    .carousel-item img {
        width: 100%;
        height: auto;
    }
    .carousel-inner {
        /* height: auto; */
    }
    #myCarousel .carousel-caption {
        display: none;
    }
    .p-100 {
        padding: 15px;
    }
    .pt-150 {
        padding-top: 20px;
    }
    .p-50 {
        padding: 10px;
    }
    .serve {
        padding: 20px
    }
    .br-1 {
        border-right: 0px solid #919191;
    }
    .pl-5,
    .px-5 {
        padding-left: 10px !important;
    }
    .brands-img {
        width: 100%;
    }
    #section2 {
        padding: 0px 0 00px 0;
    }
    .footer-rgt {
        transform: unset;
        margin: 0 auto;
        margin-top: 20px;
    }
    span.ml-5 {
        width: 100%;
        float: left;
        text-align: center;
        padding: 6px;
        margin: 0 !important;
    }
    h4.pt-38.pr-3 {
        text-align: center;
    }
    .isotope .grid-item {
        width: 100%;
    }
    .filters ul {
        margin: 0;
        padding: 0;
    }
    .filters li {
        width: 40%;
    }
    .curve-bg .carousel-caption {
        width: 100%;
    }
    .orange-box-white li {
        margin: 0;
        width: 100%;
    }
    .container ul {
        margin: 0 !important;
    }
    .slider-content-style .content h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    button.navbar-toggler {
        top: -41px;
    }
    a.nav-link {
        padding: 30px 25px !important;
    }
    .navbar {
        padding: 0;
    }
    .header-top li {
        border-right: 0
    }
    .fluid {
        margin: 0 1%;
        width: 98%;
    }
    .products .carousel-item {
        height: auto;
        padding: 23px 0px;
    }
    h1 {
        font-size: 28px;
        text-align: center;
    }
    .carousel-item {
        height: auto;
    }
    .text-left-top {
        text-align: center;
    }
    .text-right-top {
        text-align: center;
    }
    li.nav-item {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    li.nav-item:last-child {
        border-bottom: 0;
    }
    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        color: #fff !important;
        height: 100%;
    }
    .tab a.nav-link:hover {
        color: #fff !important;
        height: 100%;
    }
    .tab-pane li {
        width: 46%;
        margin: 2% !important;
    }
    .tab-pane li img {
        width: 100%;
    }
    .bdr-bt {
        font-size: 20px;
    }
    .bdr-bt img {
        width: 40px;
    }
    .controls-top {
        top: 30%;
        left: 0;
    }
    .mt-150 {
        margin-top: 80px;
    }
    .mb-150 {
        margin-bottom: 80px;
    }
    img.float-left.mr-5.mb-2.img-shadow {
        width: 100%;
    }
    .nav-justified .nav-item {
        margin: 0 2px;
        border: 0;
    }
    .tab a.nav-link {
        padding: 20px 8px !important;
        font-size: 13px;
        line-height: 18px;
    }
    .subbanner {
        height: 200px;
        overflow: hidden;
    }
    .subbanner img {
        overflow: hidden;
        height: 100%;
        width: auto;
    }
    .price-top {
        background-color: #fff;
        margin: 0 -10px;
    }
    .w-50 {
        width: 100% !important;
    }
    .subbanner h2 {
        font-size: 30px;
    }
    .breadcrumb {
        padding-top: 5px;
    }
    .breadcrumb li {
        float: left;
        border: 1px solid #fff;
        margin-bottom: 5px;
    }
    .breadcrumb li a:before {
        border-top: 23px solid transparent;
        border-bottom: 23px solid transparent;
        border-left: 18px solid #fff;
        height: 4px;
        top: 47px;
    }
    .breadcrumb li a:after {
        border-top: 24px solid transparent;
        border-bottom: 22px solid transparent;
        border-left: 17px solid rgb(163 126 37) !important;
        height: 4px;
        top: 47px;
    }
    .breadcrumb li.completed a:before {
        border-left: 30px solid #fff !important;
    }
    .breadcrumb li.completed a:after {
        border-left: 30px solid #817047 !important;
    }
    .breadcrumb li.active a:before {
        border-left: 30px solid #fff !important;
    }
    .breadcrumb li.active a:after {
        border-left: 30px solid #817047 !important;
    }
    .item {
        margin-bottom: 20px;
    }
    .video-bg {
        background-size: cover;
        margin: 0;
    }
    .ban-text {
        width: 100% !important;
        text-align: center !important;
    }
    .ban-text h3 {
        padding-bottom: 0 !important;
    }
    .testimonilas .carousel-item img {
        width: 100px;
    }
    .testimonilas .card .carousel-item {
        height: 500px;
    }
    .testimonilas .navi a {
        left: 0;
        width: 100%;
    }
    .sub-banner h1 {
        position: relative;
        top: 0;
        left: 0;
        font-size: 27pt;
        background: none;
        line-height: 45px;
        margin-bottom: 20px;
        float: left;
        padding: 20px 0;
    }
    .sub-banner {
        z-index: -1;
        position: relative;
    }
    .sub-banner h1 span {
        font-size: 13pt;
        line-height: 22px !important;
        margin-top: 20px;
    }
    #login .container #login-row #login-column #login-box {
        margin-top: 50px;
        margin-bottom: 25px;
        max-width: unset;
        height: unset;
        width: 100%;
        margin: 18px 10px;
        padding: 0;
    }
    .bg-log{       
        height: 100vh;
        padding-top: 19%;
    }
    .login-btn{
        font-size: 17px;
        font-weight: 600;
    }
    h4 a {
        font-size: 16px;
        color: #000;
        text-decoration: none;
    }  
    .head-top li {
        width: 100%;
        margin-top:0%;
    }
}