body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #333333;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-weight: 600;
}
img {
    max-width: 100%;
    height: auto;
}
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
}
p {
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0;
    font-size: 15px;
    color: #333333;
    letter-spacing: 0;
}
.gray_bg {
    background: #f7f8fa;
}
.dark_bg {
    background: #1d293e;
}
/*START PRELOADER DESIGN*/
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 3px solid rgba(0, 0, 0, 0.08);
    border-right: 3px solid rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid #e98b24;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* END PRELOADER DESIGN */

/* START BUTTON DESIGN */
.main_btn {
    display: inline-block;
    background: #e98b24;
    border: 1px solid #e98b24;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 28px;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.4s ease;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
}
.main_btn:hover {
    background: transparent;
    border: 1px solid #e98b24;
    color: #e98b24;
}
/* END BUTTON DESIGN */

/* START SECTION-HEADING DESIGN */
.section_padding {
    padding: 60px 0px;
}
.section_heading {
    margin-bottom: 60px;
}
.section_heading h2 {
    text-transform: capitalize;
    font-size: 40px;
    line-height: 36px;
    color: #222;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}
.dark_bg .section_heading h2 {
    color: #fff;
}
.section_heading p {
    margin: 15px 0 5px;
}
.dark_bg .section_heading p {
    color: #fff;
}
.section_heading h2 span {
    color: #e98b24;
}
.section_heading_border:before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: -55px;
    top: 50%;
    background-color: #e98b24;
    margin-top: 26px;
}
.section_heading_border:after {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    right: -55px;
    top: 50%;
    background-color: #e98b24;
    margin-top: 26px;
}
.section_heading_border {
    width: 20px;
    display: inline-block;
    margin-top: -50px;
    position: relative;
}
.section_heading_border span {
    height: 2px;
    width: 16px;
    background: #e98b24;
    display: inline-block;
}
.section_heading_border span:nth-child(1) {
    margin-bottom: -46px;
}
.section_heading_border span:nth-child(2) {
    margin-bottom: -23px;
}
.section_heading_border span:nth-child(3) {
    margin-top: 2px 0;
}
/* END SECTION-HEADING DESIGN */

/* START SCROLL TO-TOP */
.topcontrol {
    background: #e98b24 none repeat scroll 0 0;
    border-radius: 50px;
    bottom: 5px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 26px;
    margin-bottom: 70px;
    height: 40px;
    opacity: 1;
    filter: alpha(opacity=100);
    padding: 5px 12px;
    position: fixed;
    right: 5px;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: 40px;
    z-index: 999;
}
.topcontrol:hover {
    background: #222;
    color: #fff;
}

.navbar-default {
    background-color: transparent;
    border: none;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 999;
}
.navbar-brand p {
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    margin: -5px 10px 10px 0px;
    letter-spacing: 1px;
    color: #e98b24;
    font-family: "Poppins", sans-serif;
}
.navbar-default.sticky_menu .navbar-brand p {
    color: #e98b24;
}
.navbar-default .navbar-nav > li > a {
    color: #e98b24;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin-top: 10px;
    margin-left: 26px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #e98b24;
    background-color: transparent;
}
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
#nav li.current a {
    color: #e98b24;
    background-color: transparent;
}
.main_header.sticky_menu {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    top: 0;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    height: 110px;
}
.main_header.dark_bg_menu.sticky_menu {
    background-color: #1d293e;
    color: #fff;
    padding: 10px 0;
    border: none;
    box-shadow: 0 1px 20px rgba(255, 255, 255, 0.1);
    width: 100%;
    animation: fadeInDown 1s both 0.2s;
}
.main_header.sticky_menu .navbar-nav > li > a {
    color: #333 !important;
    transition: all 0.3s ease;
}
.main_header.dark_bg_menu.sticky_menu .navbar-nav > li > a {
    color: #fff !important;
    transition: all 0.3s ease;
}
.main_header.sticky_menu .navbar-nav > li > a:hover {
    color: #e98b24 !important;
}
.main_header.sticky_menu .navbar-nav > .active > a,
.main_header.dark_bg_menu.sticky_menu .navbar-nav > li > a:hover,
.main_header.sticky_menu .navbar-nav > .active > a:hover,
.main_header.sticky_menu .navbar-nav > .active > a:focus {
    color: #e98b24 !important;
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border: none;
    padding: 0;
    color: #fff;
    font-size: 20px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.main_header.sticky_menu .navbar-toggle .icon-bar {
    background-color: #e98b24;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
}
.welcome-area,
.welcome-slider-area,
.welcome-slider-area div {
    height: 700px;
}
.welcome-slider-area div.single-slide-item-tablecell,
.welcome-slider-area div.single-slide-item-tablecell div {
    height: auto;
}
.single-slide-item-table {
    display: table;
    text-align: center;
    width: 100%;
}
.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 80px;
}
.single-slide-item {
    position: relative;
    z-index: 1;
    padding-top: 3%;
}
.single-slide-item:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 1;
    filter: alpha(opacity=0);
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    filter: alpha(opacity=100);
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.single-slide-item h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.single-slide-item h2 {
    color: #e98b24;
    font-size: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.single-slide-item p {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 50px;
}
.single-slide-item span {
    color: #e98b24;
}
.single-slide-item .slider_btn {
    background: transparent;
    border: 1px solid #fff;
    margin-right: 20px;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.2s ease 0s;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 30px;
}
.single-slide-item .slider_btn:hover {
    color: #fff;
    background: #e98b24;
    border-color: #e98b24;
    text-decoration: none;
    border-radius: 30px;
}
.single-slide-item .s_bg_btn {
    background: #e98b24;
    border-color: #e98b24;
    border-radius: 30px;
}
.single-slide-item .s_bg_btn:hover,
.single-slide-item .s_bg_btn:focus {
    background: transparent;
    border-color: #fff;
}
.carousel-control {
    z-index: 1;
    background-image: none !important;
    top: 46.6%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    border: 1px solid #fff;
    opacity: 1;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    transition: 0.5s;
}
#welcome-slide-carousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin: 0 5px;
}
#welcome-slide-carousel .carousel-indicators .active {
    background: #75ceae;
    border-color: #75ceae;
}
.carousel-control.left {
    margin-left: 25px;
}
.carousel-control.right {
    margin-right: 25px;
}
.carousel-control:hover {
    background: #e98b24;
    border-color: #e98b24;
}
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    filter: alpha(opacity=0);
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    filter: alpha(opacity=100);
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.single_about {
    margin-top: 0px;
}
.single_about .about_title span {
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #e98b24;
    font-size: 15px;
    font-weight: 700;
    margin-top: 100px;
}
.single_about .about_title h2 {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin: 15px 0 20px;
}
.dark_bg .single_about .about_title h2 {
    color: #fff;
}
.single_about .about_title .description {
    margin-bottom: 20px;
    text-align: justify;
}
.description {
    margin-bottom: 20px;
    text-align: justify;
}
.dark_bg .single_about .about_title .description {
    color: #fff;
}
.single-about img {
    border: 5px solid #e98b24;
    padding: 10px 10px 10px 10px;
}

.single-service {
    padding: 40px 30px;
    box-shadow: 0px 17px 60px #00000012;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 350px;
}
.service {
    width: 18%;
    display: inline-block;
}
.service.service_img {
    max-width: 100%;
    text-align: center;
}
.dark_bg .single-service {
    background: transparent;
    border: 1px solid #384967;
}
.single-service i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #efeded;
    border: 1px solid #efeded;
    text-align: center;
    transition: all 0.4s ease;
    font-size: 35px;
    display: inline-block;
    color: #e98b24;
}
.dark_bg .single-service i {
    background: transparent;
    border: 1px solid #e98b24;
}
.single-service:hover i {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #e98b24;
    border: 1px solid #e98b24;
    color: #fff;
}
.single-service h4 {
    font-size: 20px;
    margin-top: 30px;
    text-transform: capitalize;
    color: #222;
    transition: all 0.4s ease;
}
.dark_bg .single-service h4 {
    color: #fff;
}
.single-service p {
    transition: all 0.4s ease;
    color: #333333;
    margin-top: 15px;
}
.dark_bg .single-service p {
    color: #fff;
}

.our_port_menu {
    margin-bottom: 50px;
}
.our_port_menu ul {
    list-style-type: none;
    padding: 0;
}
.our_port_menu ul li {
    border: 1px solid #bbb;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin: 7px;
    padding: 5px 20px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}
.dark_bg .our_port_menu ul li {
    border: 1px solid #fff;
    color: #fff;
}
.our_port_menu ul li:hover,
.our_port_menu ul li.active {
    border-color: #e98b24;
    background-color: #e98b24;
    color: #fff;
}
.box {
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
}
.box:after {
    content: "";
    width: 65%;
    background: #e98b24;
    padding-bottom: 65%;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0 0;
    transition: all 0.3s ease 0s;
}
.box:hover:after {
    opacity: 1;
}
.box img {
    width: 100%;
    height: auto;
    transition: all 1s ease 0s;
}
.box:hover img {
    transform: scale(1.3);
}
.box .box-content {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.box:hover .box-content {
    opacity: 1;
}
#portfolio .box .title {
    display: inline-block;
    padding: 10px 0;
    color: #fff;
    margin: 0;
    font-size: 17px;
}
.box .icon {
    padding: 0;
    margin: 12px 0 0 0;
    list-style: none;
}
.box .icon li {
    display: inline-block;
}
.box .icon li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    border: 1px solid #e98b24;
    background: #e98b24;
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease 0s;
}
.box {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: inherit;
    position: relative;
}
.box:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(7, 1, 90, 0.6);
    padding-bottom: 65%;
    opacity: 0;
    position: absolute;
    transform-origin: 0 0 0;
    transition: all 0.3s ease 0s;
}
.box:hover:after {
    opacity: 1;
}
.box img {
    width: 100%;
    height: auto;
}
.box .box-content {
    width: 100%;
    position: absolute;
    top: 30%;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.box:hover .box-content {
    opacity: 1;
}
.box .title {
    display: inline-block;
    padding: 10px 0;
    color: #fff;
    margin: 0;
}

.count_overlay {
    background: rgba(7, 1, 90, 0.6) none repeat scroll 0 0;
    padding: 60px 0;
}
.count h3 {
    color: #e98b24;
    font-size: 30px;
}
.count span {
    font-size: 30px;
    font-weight: 600;
}
.count h5 {
    color: #fff;
    font-size: 16px;
}

.single_team {
    position: relative;
}
.overlay-text {
    position: relative;
    -webkit-transition: all linear 0.7s;
    -o-transition: all linear 0.7s;
    transition: all linear 0.7s;
}
.single_team:hover .overlay-text {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.team-overlay {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    content: "";
    background: rgba(7, 1, 90, 0.6);
    z-index: 99;
    -webkit-transition: all linear 0.5s;
    -o-transition: all linear 0.5s;
    transition: all linear 0.5s;
}
.single_team h3 {
    font-size: 20px;
    color: #fff;
    padding-top: 10px;
    display: inline-block;
    -webkit-transition: all linear 0.5s;
    -o-transition: all linear 0.5s;
    transition: all linear 0.5s;
}
.single_team:hover .team-overlay {
    height: 100%;
}
.team_icon {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.single_team:hover .team_icon i {
    opacity: 1;
}
.team_icon i:hover {
    background: #e98b24;
    border: 1px solid #e98b24;
    color: #fff;
}
.team_icon i {
    margin: 0 3px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.single_team p {
    font-size: 15px;
    color: #e98b24;
}

.pricingTable {
    text-align: center;
    border: 1px solid #dbdbdb;
    border-radius: 20px;
    transition: 0.4s;
}
.pricingTable:hover {
    transform: translateY(-10px);
}
.pricingTable > .pricingTable-header {
    color: #fff;
}
.pricingTable-header > .heading {
    border-radius: 20px;
    background: #e98b24;
    display: block;
    padding: 30px 0;
}
.heading > h3 {
    color: #fff;
    font-weight: 500;
    font-size: 27px;
    margin: 0;
    text-transform: uppercase;
}
.heading > .subtitle {
    font-size: 13px;
    margin-top: 3px;
    display: block;
}
.pricingTable-header > .price-value {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #555;
    display: block;
    margin: 0 auto;
    color: #555;
    font-size: 25px;
    font-weight: 800;
    margin-top: 20px;
    padding: 20px 10px 0 10px;
    line-height: 35px;
}
.dark_bg .pricingTable-header > .price-value {
    border: 2px solid #fff;
    color: #fff;
}
.pricingTable-header > .price_value {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e98b24;
    border: 2px solid #e98b24;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    margin-top: 20px;
    padding: 20px 10px 0 10px;
    line-height: 35px;
}
.price-value span {
    font-size: 40px;
}
.price_value span {
    font-size: 40px;
}
.price-value > .mo {
    display: inline-block;
    line-height: 0;
    padding-top: 13px;
    border-top: 1px solid #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: -20px;
}
.price_value .mo {
    display: inline-block;
    line-height: 0;
    padding-top: 13px;
    border-top: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: -20px;
}
.pricingTable > .pricingContent {
    margin: 20px 0 0 0;
}
.pricingContent > ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}
.pricingContent > ul > li {
    border-top: 1px solid #ddd;
    padding: 5px 0;
    letter-spacing: 0.5px;
    line-height: 25px;
    color: #555;
    text-align: center;
    transition: 0.4s ease-in-out;
}
.dark_bg .pricingContent > ul > li {
    color: #fff;
    border-top: 1px solid #fff;
}
.pricingContent > ul > li:before {
    content: "\f101";
    font-family: "FontAwesome";
    color: #e98b24;
    margin-right: 10px;
}
.pricingContent > ul > li:hover {
    padding-left: 15px;
    transition: 0.4s ease-in-out;
}
.pricingContent > ul > li:last-child {
    border-bottom: 1px solid #dbdbdb;
}
.pricingTable > .pricingTable-sign-up {
    padding: 25px 0;
}

.testi_overlay {
    background: rgba(7, 1, 90, 0.6) none repeat scroll 0 0;
    padding: 60px 0;
}
.single_testimonial {
    text-align: center;
}
.single_testimonial .pic img {
    width: 85px;
    width: 85px;
    display: inline-block;
}
.single_testimonial .pic {
    margin-bottom: 35px;
}
.single_testimonial .pic img {
    background: #fff;
    border-radius: 50%;
}
.single_testimonial .testimonial-review {
    color: #fff;
    line-height: 28px;
    margin-bottom: 14px;
}
.testimonial-review .testimonial-description {
    font-style: italic;
    margin: 15px 0;
    color: #fff;
}
.single_testimonial .testimonial-title {
    color: #e98b24;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.post-slide {
    transition: all 0.3s ease 0s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.dark_bg .post-slide {
    border: 1px solid #384967;
}
.post-slide .post-img {
    position: relative;
}
.post-slide .post-img img {
    width: 100%;
    height: auto;
}
.post-slide .post-img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(7, 1, 90, 0.6);
    transition: all 0.3s ease 0s;
}
.post-slide:hover .post-img:after {
    opacity: 1;
}
.post-slide .icons {
    position: absolute;
    bottom: -16px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.post-slide .icons img {
    width: 100%;
    height: auto;
}
.post-slide .post-review {
    border-top: none;
    padding: 35px 20px 25px;
    background: #fff;
    position: relative;
}
.card-height {
    height: 325px;
}
.dark_bg .post-slide .post-review {
    background: transparent;
}
.post-slide .post-bar {
    padding: 0;
    list-style: none;
}
.post-slide .post-bar li {
    display: inline-block;
    font-size: 15px;
    color: #555;
    margin-right: 10px;
    text-transform: capitalize;
}
.dark_bg .post-slide .post-bar li {
    color: #e98b24;
    /* #FF671F */
}
.post-slide .post-bar li i {
    color: #e98b24;
    margin-right: 8px;
}
.post-slide .post-title {
    margin: 0 0 15px 0px;
    color: #222;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
}
.post-slide .post-title:hover {
    color: #e98b24;
}
.dark_bg .post-slide .post-title {
    color: #fff;
}
.dark_bg .post-slide .post-title:hover {
    color: #e98b24;
}
.post-slide .read {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    color: #e98b24;
}
.dark_bg .post-slide .read {
    color: #fff;
}
.post-slide .read i {
    margin-left: 10px;
}
.post-slide .post-description {
    margin-bottom: 10px;
}
.dark_bg .post-slide .post-description {
    color: #fff;
}
.post-slide .read {
    transition: all 0.4s;
}
.post-slide .read:hover {
    text-decoration: none;
    color: #333;
}
.dark_bg .post-slide .read:hover {
    color: #e98b24;
    text-decoration: none;
}

.contact-form-area form input {
    width: 97%;
    margin: 0 auto;
    padding: 25px;
    border-width: 1px;
    border-color: #e98b24;
    border-style: solid;
    border: 1px solid #e98b24;
    font-size: 16px;
    box-shadow: 0px 3px 29px 0px rgb(0 0 0 / 14%);
}
.contact-form-area form textarea {
    width: 97%;
    padding: 25px 0px 0px 25px;
    border-width: 1px;
    border-color: rgb(57 79 236);
    border-style: solid;
    border: 1px solid #e98b24;
    box-shadow: 0px 3px 29px 0px rgb(0 0 0 / 14%);
    margin: 0 auto;
    height: 160px;
    font-size: 16px;
}

.copyright_area {
    background: #e98b24;
}
.copy_text {
    padding: 10px 0;
}
.copy_text p {
    color: #fff;
    margin-top: 20px;
    padding: 2px;
}
.copy_text a {
    color: #fff;
}
.about_con {
    margin-top: 50px;
}
.img-fix {
    width: 100% !important;
}
.text-color-tes {
    color: #e98b24;
}
.btn-mr {
    margin-top: 10px;
    position: absolute;
    bottom: 40px;
    left: 32%;
    padding: 5px, 0px, 10px;
}
.cc {
    display: flex;
    justify-content: center;
}
.nav-item-center {
    position: relative;
    top: 22px;
}
/* modal css */
.modal-header {
    border: none !important;
}
.modal-content {
    border-radius: 40px;
    border: 1px solid #e98b24 !important;
}
.but-cl {
    background-color: #e98b24 !important;
    width: 40px;
    height: 40px;
    padding: 10px;
    color: white !important;
    /* border-radius: 20px !important; */
    border-top-right-radius: 37px;
    position: absolute;
    border-bottom-left-radius: 30px;
    top: 8px;
    right: 8px;
    box-shadow: none !important;
}
.white-popup {
    position: relative;
    background: #fff;
    padding: 40px;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
    transition: 1s all;
    border-radius: 20px;
    border: 2px solid #e98b24;
}

.mfp-bg {
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
#heading {
    text-transform: uppercase;
    color: #e98b24;
    font-weight: normal;
}
.form-select {
    border-radius: 18px;
    /* background: #ECEFF1; */
}
.form-select:focus {
    border-color: #e98b24 !important;
    box-shadow: none;
}
#msform {
    text-align: center;
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform input,
#msform textarea,
#msform select {
    padding: 8px 15px 8px 15px;
    /* border: 1px solid #ccc; */
    box-shadow: 0 0.325rem 0.35rem rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #eae8e8;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;

    font-size: 16px;
    letter-spacing: 1px;
}

#msform input:focus,#msform input:focus-visible,
#msform textarea:focus,#msform textarea:focus-visible {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #e98b24;
    outline-width: 0;
}

#msform .action-button {
    width: 100px;
    background: #e98b24;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #e98b24;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000;
}

.card {
    z-index: 0;
    border: none;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #e98b24;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: #e98b24;
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    color: lightgrey;
    align-items: center;
    display: flex;
    justify-content: center;
}

#progressbar .active {
    color: #e98b24;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f013";
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030";
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f073";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    /* border-radius: 10%; */
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #e98b24;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #e98b24;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}
.mfp-close {
    color: #000;
    background: #e98b24 !important;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 20px;
    outline: #000;
}
/* start state */
.mfp-zoom-in {
    /* animate in */
    /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
/*-----------------------*/
.cover-background {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}

.cover-background .s-py-xl-150 > [class*="container"] {
    padding-bottom: 150px;
    padding-top: 150px;
}

.cover-background .page_title h1 {
    color: #e98b24;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 22px;
    padding-bottom: 0;
    position: relative;
    text-transform: uppercase;
    font-size: 55px;
}

.cover-background .page_title .breadcrumb {
    line-height: 1;
}

.cover-background ul:last-child,
.cover-background ol:last-child,
.cover-background p:last-child {
    margin-bottom: 0;
}
.cover-background .breadcrumb {
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 0px;
    padding: 0;
    text-transform: capitalize;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.cover-background .breadcrumb > li {
    display: inline-block;
    float: none;
    padding: 0;
}

.cover-background .cs a:not(.btn) {
    color: #fff;
}

.cover-background .breadcrumb-item + .cover-background .breadcrumb-item {
    padding-left: 6px;
}

.cover-background .breadcrumb > .active {
    color: #e98b24;
}
.popup-modal.main_btn {
    padding: 8px 28px !important;
    margin-top: 0px !important;
    color: #fff !important;
}
.popup-modal.main_btn:hover {
    background: transparent;
    border: 1px solid #e98b24;
    color: #e98b24 !important;
}
h3.post-title {
    color: #e98b24 !important;
}
.error {
    color: red;
}
#loader,
#loaderTouch {
    margin-top: 10px;
    display: none;
}
#loader img,
#loaderTouch img {
    width: 60px;
}
.iti {
    width: 100%;
}
.hiddenloadModel {
    display: none;
}
#contactForm .form-group {
    margin-bottom: 20px;
}
.copyright p{
    margin: 10px auto;
}
.error-page .text-primary{
    color: #e98b24 !important;
}
.error-page .main_btn{
    margin-top: 20px;
}