* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 600;
}

img {
    width: 100%;
    height: auto;
}

ul {
    padding: 0;
    list-style: none;
}

p {
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 15px;
    color: #333333;
    letter-spacing: 0;
}

a:hover {
    text-decoration: none;
}

.text_white {
    color: #fff;
}

.padding_0 {
    padding: 0;
}

.gray_bg {
    background: #fff;
}

.dark_bg {
    background: #fff;
}


/* START PRELOADER DESIGN */

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.spinner {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    z-index: 10000;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f7420b;
    opacity: 0.6;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; */
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dark_preloader .double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; */
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/* END PRELOADER DESIGN */


/* ----------------------------------------------------------------
    [ 15 Start Top-control ]
-----------------------------------------------------------------*/

.topcontrol {
    background: #F7420B none repeat scroll 0 0;
    border-radius: 30px;
    margin-bottom: 80px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    height: 40px;
    opacity: 1;
    filter: alpha(opacity=100);
    padding: 6px 10px;
    position: fixed;
    margin-right: 10px;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: 40px;
    z-index: 99;
}

.topcontrol:hover {
    background: #fff;
    color: #F7420B;
}


/* ---------------------------------------------------------------
    [ End Top-control ]
-----------------------------------------------------------------*/

.rooms {
    display: flex;
    flex-direction: column;
    gap: 100px 24px;
    transition: ease 0.5s all;
}

.rooms .title-us {
    font-size: 41px;
    color: #F7420B;
    font-family: monospace;
    font-weight: 900;
}

.rooms .section_heading {
    padding: 60px 0 0 0;
}

.rooms .line {
    background-color: #F7420B;
    width: 76px;
    height: 2;
}

.rooms .corners {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rooms .Corners-left {
    width: 50%;
}

.rooms .Corners-left .img {
    height: 500px;
}

.rooms .Corners-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.rooms .title {
    font-size: 30px;
}

.rooms .text {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.rooms .gallery {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 42px;
}

.rooms .gallery .img {
    height: 450px;
    transition: ease 0.5s all;
    background-size: 135% !important;
    /* background-size: cover !important; */
    background-position: center !important;
}

.rooms .gallery .img:hover {
    background-size: 120% !important;
}

@media (max-width: 2559px) {
    .rooms .gallery {
        display: grid;
        grid-template-columns: auto auto auto auto;
    }
    .rooms .gallery {
        gap: 30px;
    }
    .rooms .gallery .img {
        height: 240px;
    }
}

@media (max-width: 1439px) {
    .rooms .gallery {
        display: grid;
        grid-template-columns: auto auto auto;
    }
    .rooms .gallery .img {
        height: 280px;
    }
}

@media (max-width: 1023px) {
    .rooms .gallery {
        display: grid;
        grid-template-columns: auto auto;
    }
    .rooms .gallery .img {
        height: 320px;
    }
    .rooms .corners .Corners-left {
        width: 100%;
    }
    .rooms .corners .Corners-right {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .rooms .gallery {
        display: grid;
        grid-template-columns: auto;
    }
    .rooms .gallery .img {
        height: 350px;
    }
}

@media (max-width: 454px) {
    .rooms .gallery .img {
        height: 330px;
    }
    .rooms .corners .Corners-left .img {
        height: 300px;
    }
}

@media (max-width: 374px) {
    .rooms .gallery .img {
        height: 290px;
    }
}


/* Start Section-Padding */

.section_padding {
    padding: 150px 0;
}


/* End Section-Padding */


/* Start Section-Heading */

.section_heading {
    padding-bottom: 80px;
}

.section_heading h2 {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
    margin-top: 45px;
    margin-bottom: 10px;
}

.dark_bg .section_heading h2 {
    color: #222;
}

.section_heading .sm_border {
    display: block;
    height: 2px;
    width: 70px;
    margin-bottom: 15px;
    bottom: -5px;
    position: relative;
    left: 50%;
    background-color: #F7420B;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.section_heading span {
    font-weight: 600;
    color: #F7420B;
}


/* End Section-Heading */


/* ----------------------------------------------------------------
    [ End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 02 Start Buttons ]
-----------------------------------------------------------------*/


/* Start Btn-Style */

.main_btn {
    color: #fff;
    font-size: 13px;
    margin-top: 30px;
    text-transform: capitalize;
    padding: 20px 20px;
    letter-spacing: 0.6px;
    font-weight: 600;
    background: #F7420B;
    line-height: 10px;
    border: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out 0s;
}

.main_btn:hover {
    color: #F7420B;
    background: #fff;
}

.blog-info .blog_btn {
    padding: 20px 30px;
}


/* ----------------------------------------------------------------
    [ End Buttons ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 03 Start Header ]
-----------------------------------------------------------------*/

.navbar-default {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 15px 0 15px 0;
    background: #fff;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-brand {
    width: 122px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 12px 0px -60px 0;
}

.flex {
    width: 1140px;
}

.navbar-brand p {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    color: #F7420B;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #fff;
}

.main-menu {
    width: 100%;
    display: flex;
    justify-content: end;
}

.main-menu .navbar-right {
    margin-right: -15px !important;
}

.menu-top {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.m-p {
    padding: 0px;
}

.navbar-default .navbar-nav>li>a {
    color: white !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.navbar-default.dark_bg_menu .navbar-nav>li>a {
    color: #333333 !important;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #F7420B !important;
}

.navbar-default.dark_bg_menu .navbar-nav>.active>a,
.navbar-nav>.active>a:hover,
.navbar-nav>.active>a:focus {
    color: #fff !important;
}

.mobile-nav {
    display: none;
}

.menu-button {
    display: none;
}

.menu-close {
    display: none;
}

.menu-list {
    display: none;
}


/* search input */

.search-box:hover input[type="text"] {
    background-color: white;
    /* box-shadow: 0 0 5px #F7420B, 0 0 25px #F7420B, 0 0 50px #F7420B, 0 0 100px #F7420B; */
}

.search-box:hover input[type="text"]:hover:not(:placeholder-shown) {
    color: #f7420b;
}

.search-box input[type="text"] {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: bold;
    width: 0px;
    background: transparent;
    height: 0px;
    color: #F7420B;
    padding: 14px 13px 13px 13px;
    border: none;
    box-sizing: border-box;
    border-radius: 50px;
    cursor: pointer;
    transition: width 800ms cubic-bezier(0.5, -0.5, 0.5, 0.5) 600ms
}

.search-box input[type="text"]:focus {
    outline: none
}

.search-box input[type="text"]:focus,
.search-box input[type="text"]:not(:placeholder-shown) {
    width: 130px;
    letter-spacing: 0.45px;
    text-transform: capitalize;
    cursor: pointer;
    padding: 14px 10px 14px 5px;
    transition: width 800ms cubic-bezier(0.5, -0.5, 0.5, 1.5)
}

.search-box input[type="text"]:focus+div,
.search-box input[type="text"]:not(:placeholder-shown)+div {
    bottom: 13px;
    right: 10px;
    transition: bottom 300ms ease-out 800ms, right 300ms ease-out 800ms
}

.search-box input[type="text"]:focus+div:after,
.search-box input[type="text"]:not(:placeholder-shown)+div:after {
    top: 22px;
    right: -4px;
    opacity: 1;
    transition: top 300ms ease-out 1100ms, right 300ms ease-out 1100ms, opacity 300ms ease 1100ms
}

.search-box input[type="text"]:focus+div:before,
.search-box input[type="text"]:not(:placeholder-shown)+div:before {
    top: 24.4px;
    right: -3.4px;
    opacity: 1;
    transition: top 300ms ease-out 1100ms, right 300ms ease-out 1100ms, opacity 300ms ease 1100ms
}

.search-box div {
    position: absolute;
    top: -18px;
    right: -5px;
    cursor: default;
    transition: bottom 300ms ease-out 300ms, right 300ms ease-out 300ms
}

.search-box div:before,
.search-box div:after {
    content: '';
    height: 15px;
    width: 5px;
    border-left: solid 4px #F7420B;
    position: absolute;
    top: 40px;
    right: -1px;
    transform: rotate(135deg)
}

.search-box div:after {
    transform: rotate(-135deg);
    opacity: 0;
    top: -8px;
    right: -20px;
    width: 10px;
    height: 15px;
    transition: top 300ms ease-out, right 300ms ease-out, opacity 300ms ease-out
}


/* end search input */

.navbar-default.menu-shrink {
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    padding: 10px 0 10px 0;
    width: 100%;
    animation: fadeInDown 1s both 0.2s;
}

.navbar-default.dark_bg_menu.menu-shrink {
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    padding: 10px 0;
    width: 100%;
    animation: fadeInDown 1s both 0.2s;
}

.navbar-default.menu-shrink .navbar-brand p {
    color: #F7420B !important;
}

.navbar-default.menu-shrink li a {
    color: black !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.navbar-default.menu-shrink li a:hover {
    color: #F7420B !important;
}

.navbar-default.menu-shrink .navbar-nav>.active>a,
.navbar-default.menu-shrink .navbar-nav>.active>a:hover,
.navbar-default.menu-shrink .navbar-nav>.active>a:focus {
    color: #F7420B !important;
    background-color: transparent;
    text-decoration: none;
}

.navbar-default .navbar-toggle {
    background: #fff none repeat scroll 0 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #fff !important;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #F7420B !important;
}


/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 04 Start Banner ]
-----------------------------------------------------------------*/

.none-page {
    display: none !important;
}

#home {
    height: 100%;
}

.banner-img {
    opacity: 1;
}

.overlay {
    background-color: black;
    /* opacity: 0.5; */
    /* height: 682px; */
    /* position: relative; */
}

.relative {
    position: relative;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: #00000045;
}

.benner-text {
    color: #a19baac2;
    font-size: 14px;
    line-height: 2;
    width: 600px;
    margin: 20px 0 35px 0;
}

.benner-btn {
    padding: 15px 10px;
    background-color: #f7420b;
    border: 1px solid #f7420b;
    font-size: 13px;
    transition: ease 0.4s all;
    width: 146px;
    margin-top: 20px;
}

.benner-btn:hover {
    background: transparent;
    border: 1px solid white;
    color: #f7420b;
}

.banner-overlay a {
    color: white;
}

.banner_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    /* margin-top: 67px; */
    padding-top: 70px !important;
}

.banner_content strong {
    /* color: #F7420B; */
    font-size: 25px;
    z-index: 1;
}

.banner_content h1 {
    color: white;
    font-size: 50px;
    text-transform: capitalize;
    margin: 20px 0;
}

.dark_bg .banner_content h1 {
    color: #333333;
}

.banner_content h1 span .fw_600 {
    font-weight: 600;
}

.banner_content h1 span .fw_300 {
    font-weight: 600;
}

.banner_social_link li {
    display: inline-block;
    margin-right: 12px;
    display: none;
}

.banner_social_link li a {
    color: white;
    border: 2px solid #F7420B;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    transition: .5s;
}

.dark_bg .banner_social_link li a {
    color: #F7420B;
    border: 1px solid #F7420B;
}

.banner_social_link li:nth-child(1) a:hover {
    background: #1b74e4;
    border-color: #1b74e4;
    color: #fff;
}

.banner_social_link li:nth-child(2) a:hover {
    background: #4cca5b;
    border-color: #4cca5b;
    color: #fff;
}

.banner_social_link li:nth-child(3) a:hover {
    border-color: #dc2743;
    color: #fff;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}


/* .banner_social_link li a:hover {
    background: #F7420B;
    border-color: #F7420B;
    color: #fff;
}

.dark_bg .banner_social_link li a:hover {
    background: #F7420B;
    border-color: #F7420B;
    color: #fff;
} */

.banner_content p {
    color: white;
    font-size: 14px;
    padding-bottom: 0;
    max-width: 100%;
}

.dark_bg .banner_content p {
    color: #333333;
}

.banner-images img {
    margin: 70px 0px 40px 30px;
}


/* ----------------------------------------------------------------
    [ End Banner ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 05 Start About ]
-----------------------------------------------------------------*/

.about_content_area {
    margin: 30px 0px 0px 0px;
}

.single_about h4 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 20px;
}

.dark_bg .single_about h4 {
    color: #333333;
}

.dark_bg .about_content_area p {
    color: #333333;
}

.about_content_area p {
    line-height: 2.2;
}

.about_details {
    margin-top: 20px;
}

.about_details li {
    color: #333;
    display: inline-block;
    margin-top: 15px;
    width: 49%;
}

.about_details span {
    color: #222;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    width: 25%;
}

.dark_bg .about_details span {
    color: #333333;
}

.ct_about {
    margin: 6px 0;
}

.dark_bg .ct_about {
    color: #333333;
}

.ct_about span i {
    margin-right: 5px;
}

.single_about a i {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}


/* ----------------------------------------------------------------
    [ End About ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 06 Start Service ]
-----------------------------------------------------------------*/

.single-service {
    border: 1px solid #e3e3e3;
    padding: 40px 30px;
    background: transparent;
    margin-bottom: 30px;
    height: 380px;
    transition: all 0.4s ease;
}

.single-service:hover {
    transform: translate(0, -10px);
}

.single-service i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #F7420B;
    text-align: center;
    transition: all 0.4s ease;
    font-size: 25px;
    display: inline-block;
    color: #F7420B;
}

.single-service:hover i {
    background: #F7420B;
    color: #fff;
    border: 1px solid #F7420B;
    cursor: pointer;
}

.single-service h4 {
    font-size: 20px;
    margin-top: 30px;
    text-transform: uppercase;
    color: #222;
    font-weight: 500;
    transition: all 0.4s ease;
}

.dark_bg .single-service h4 {
    color: #222;
}

.single-service p {
    transition: all 0.4s ease;
    margin-top: 15px;
}

.dark_bg .single-service p {
    color: #222;
}


/* ----------------------------------------------------------------
    [ End Service ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 08 Start Works ]
-----------------------------------------------------------------*/

.work_filter ul {
    padding-bottom: 30px;
    list-style: none;
}

.work_filter ul li {
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #F7420B;
    font-size: 16px;
    padding: 7px 25px;
    letter-spacing: 1px;
    background: transparent;
    color: #F7420B;
    margin: 0 5px 20px !important;
    transition: all .3s ease-in-out;
}

.work_filter ul li:hover {
    background: #F7420B;
    color: #fff;
}

.work_filter .active {
    color: #fff;
    background: #F7420B;
    border-color: #F7420B;
    text-decoration: none;
}

.work_content_area .item-img {
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.work_content_area .item-img:hover {
    -webkit-box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.work_content_area .item-img:hover .item-img-overlay {
    visibility: visible;
    opacity: 1;
}

.overlay-info {
    margin-top: 50px;
}

.work_content_area .item-img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 30px;
    background: #f7420b73;
    opacity: 0;
    visibility: hidden;
    transition: 2s;
}

.work_content_area .item-img-overlay .center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work_content_area .item-img-overlay .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-top: 15px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.work_content_area .item-img-overlay h5 {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 5px;
    transition: 2s;
}

/*.work_content_area:hover .item-img-overlay h5 {*/
/*    animation: fadeInDown 1000ms ease-in-out;*/
/*}*/

.work_content_area .item-img-overlay p {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: 2s;
    margin: 10px 10px 10px 10px;
}

/*.work_content_area:hover .item-img-overlay p {*/
/*    animation: fadeInDown 1300ms ease-in-out;*/
/*}*/

/*.work_content_area:hover a {*/
/*    animation: fadeInDown 700ms ease-in-out;*/
/*}*/


/* ----------------------------------------------------------------
    [ End Works ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 09 Start Counter ]
-----------------------------------------------------------------*/

.single_counter {
    background: #fafafa;
    box-shadow: 0 1px 30px rgba(255, 255, 255, 0.2);
    padding: 5px 10px 30px 0px;
}

.dark_bg .single_counter {
    background: #fafafa;
    box-shadow: 0 1px 30px rgba(255, 255, 255, 0.2);
}

.single_counter h3 {
    color: #F7420B;
    font-size: 30px;
}

.single_counter span {
    font-size: 30px;
    font-weight: 600;
}

.single_counter h5 {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0;
}

.dark_bg .single_counter h5 {
    color: #1F2235;
}


/* ----------------------------------------------------------------
    [ End Counter ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 12 Start Team ]
-----------------------------------------------------------------*/

.margin-bt {
    margin-bottom: 30px;
}

.single_team {
    position: relative;
}

.overlay-text {
    position: relative;
    -webkit-transition: all linear .7s;
    -o-transition: all linear .7s;
    transition: all linear .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: #f7420b73;
    z-index: 99;
    -webkit-transition: all linear .5s;
    -o-transition: all linear .5s;
    transition: all linear .5s;
}

.single_team h3 {
    font-size: 20px;
    color: #fff;
    padding-top: 10px;
    display: inline-block;
    -webkit-transition: all linear .5s;
    -o-transition: all linear .5s;
    transition: all linear .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: #F7420B;
    border: 1px solid #F7420B;
    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 .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.single_team p {
    font-size: 15px;
    color: black;
    font-weight: 600;
}


/* ----------------------------------------------------------------
    [ End Team ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 12 Start Pricing ]
-----------------------------------------------------------------*/

.pricingTable {
    text-align: center;
    border: 1px solid #dbdbdb;
    transition: 0.4s;
}

.pricingTable:hover {
    transform: translateY(-10px);
}

.pricingTable>.pricingTable-header {
    color: #fff;
}

.pricingTable-header>.heading {
    background: #F7420B;
    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: #F7420B;
    border: 2px solid #F7420B;
    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: #F7420B;
    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;
}


/* ----------------------------------------------------------------
    [ End Pricing ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 13 Start Contact ]
-----------------------------------------------------------------*/

.contact-padding {
    padding: 175px 0;
}

.form .form-group input {
    background: transparent;
    border-color: #e3e3e3;
    height: 40px;
    box-shadow: none;
}

.form .form-group input:focus {
    border-color: #F7420B;
}

.dark_bg .form .form-group input:focus {
    border-color: #F7420B;
    color: #555;
}

.form .form-group textarea {
    background: transparent;
    border-color: #e3e3e3;
    margin-top: 10px;
    padding-bottom: 5%;
    box-shadow: none;
    resize: none;
}

.form .form-group textarea:focus {
    border-color: #F7420B;
}

.dark_bg .form .form-group textarea:focus {
    border-color: #F7420B;
    color: #fff;
}


/* ----------------------------------------------------------------
    [ End Contact ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 14 Start Footer ]
-----------------------------------------------------------------*/

.home-footer {
    background-color: #202020;
    color: #ffffff;
    width: 100%;
    min-height: 1px;
    display: flex;
    padding: 25px 0;
    flex-direction: column;
}

.home-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-footer .footer-top .footer-columns {
    width: calc(100% / 3);
}

.home-footer .footer-top .footer-columns .title {
    font-size: 19px;
    font-weight: bold;
}

.home-footer .footer-top .footer-columns .info {
    font-size: 14px;
    margin: 15px 0;
    line-height: 1.8;
}

.home-footer .footer-top .footer-columns .info .media-flex {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 15px;
}

.home-footer .footer-top .footer-columns .info .media-flex .media {
    cursor: pointer;
}

.home-footer .footer-top .footer-columns .info .media-flex a:hover {
    color: #F7420B;
    transition: 0.4s ease all;
}

.home-footer .footer-top .footer-columns .info .media-flex i {
    font-style: italic;
}

.home-footer .footer-top .footer-columns .info .media-flex a {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.home-footer .footer-top .footer-columns .info .media-flex a:hover {
    text-decoration: none;
}

.home-footer .footer-top .footer-columns .phone {
    cursor: pointer;
}

.home-footer .footer-top .footer-columns .email {
    cursor: pointer;
}

.home-footer .footer-top .footer-columns .footer-menu {
    display: flex;
    flex-direction: column;
    line-height: 2.5;
    text-transform: uppercase;
}

.home-footer .footer-top .footer-columns .footer-menu a {
    text-decoration: none;
    color: #ffffff;
}

.home-footer .menu-page a:hover {
    color: #F7420B !important;
    text-decoration: none;
    transition: 0.4s ease all;
}

.menu-list .menu-media {
    display: flex;
    gap: 40px;
    border-bottom: none;
}

.menu-list .menu-media a:hover {
    color: #F7420B !important;
    transition: 0.3s ease all;
}

.menu-list .menu-page a:hover {
    color: #F7420B !important;
    transition: 0.3s ease all;
}

.home-footer .footer-top .footer-columns .footer-menu .footer-page:hover {
    text-decoration: none;
}

.home-footer .footer-top .footer-columns .descrip {
    font-size: 12px;
    margin: 15px 0;
    line-height: 1.5;
}

.benner-logo {
    display: none;
}

.logo-margin {
    margin-left: 0px !important;
}

.home-footer .footer-logo {
    width: 130px;
    height: 130px;
    background-size: cover;
}

.home-footer .footer-logo:hover {
    background-color: #191010;
}

.home-footer .footer-copy {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
}

.home-footer .footer-copy div:nth-of-type(2) {
    text-decoration: none;
    cursor: pointer;
}

.home-footer .footer-copy div:nth-of-type(2):hover {
    background-color: #191010;
}

.footer {
    padding: 30px 0 20px;
    background: #f7420b;
    width: 100%;
}

.home-footer .footer-s-m {
    display: flex;
}

.copy-text p {
    color: #fff;
}

.home-footer .menu-page {
    width: 100%;
    font-size: 15px !important;
    padding: 0;
    border-bottom: none;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    width: 315px;
}

.footer-img {
    height: 90px;
    width: 90px;
    transition: all 0.5s ease;
    background-size: 135%;
    background-position: center;
}

.footer-img:hover {
    background-size: 115%;
}

.f-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: center;
}

.f-right-start {
    display: flex;
    flex-direction: column;
    align-items: start;
}


/* ----------------------------------------------------------------
    [ End Footer ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 15 Start portfolio ]
-----------------------------------------------------------------*/

#portfolio .img {
    height: 280px;
    transition: all 0.5s ease;
    background-size: 135%;
    background-position: center;
      background-color: #d1d1d1;
}

#portfolio .img:hover {
    background-size: 120%;
}

.owl-carousel {
    margin-bottom: 150px;
}

.slider-home-carousel .img {
    width: 100%;
    height: 125px !important;
    background-position: center !important;
    background-size: contain !important;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: white !important;
}


/* ----------------------------------------------------------------
    [ End portfolio ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
    [ 15 Start active ]
-----------------------------------------------------------------*/

#navbar .active {
    text-decoration: none;
    color: #F7420B;
    border-bottom: 1px solid #F7420B;
}

.footer-columns .active a {
    color: #F7420B !important;
}


/* ----------------------------------------------------------------
    [ End active ]
-----------------------------------------------------------------*/

@media (min-width: 768px) {
    .navbar-default .navbar-nav>li>a {
        color: black !important;
    }
}

@media (min-width: 1024px) {
    .flex {
        display: flex;
        width: 1200px;
    }
    .search-box {
        border: solid 2px #F7420B;
        display: inline-block;
        position: absolute;
        right: 50px;
        top: 14px;
        border-radius: 50px;
    }
}

@media (min-width: 1440px) {
    .search-box {
        right: 140px;
    }
}

@media (min-width: 2560px) {
    .search-box {
        right: 700px;
    }
}

@media (max-width: 1439px) {
    .flex {
        width: 910px;
    }
    #home {
        height: 100%;
    }
}

@media (max-width: 1023px) {
    .navbar-default .navbar-brand {
        margin-right: 0;
    }
    .flex {
        width: 720px;
    }
    .about_content_area p {
        line-height: 1.8;
    }
    #home {
        height: 100%;
    }
    .navbar-right {
        display: none;
    }
    .navbar-default.menu-shrink {
        padding: 10px 0 40px 0;
    }
    /* menu-list */
    .menu-button {
        display: block;
        color: black !important;
        /* border: 2px solid #F7420B; */
        padding: 6px 0px;
        position: absolute;
        right: 24px;
        top: 15px;
        font-size: 25px;
        cursor: pointer;
    }
    .menu-button:hover {
        color: #F7420B !important;
        /* border: 2px solid black; */
        transition: 0.3s ease all;
    }
    .menu-close {
        display: block;
        color: white;
        position: absolute;
        right: -50px;
        top: 0;
        font-size: 30px;
    }
    .menu-close:hover {
        color: #F7420B !important;
    }
    .menu-close.active {
        right: 30px;
        top: 30px;
        font-size: 26px;
        color: white;
        z-index: 5;
        cursor: pointer;
    }
    .menu-list {
        display: block;
        height: calc(1700%);
        width: 463px;
        background-color: #1f1f1f;
        position: absolute;
        top: 0;
        right: -470px;
        padding-top: 80px;
        overflow: hidden;
        position: fixed;
        transition: ease 0.35s all;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .menu-list .active a {
        color: #F7420B !important;
        text-decoration: none;
    }
    .menu-list.active {
        width: 463px;
        top: 0;
        right: 0;
        z-index: 4;
    }
    .menu-list a {
        text-decoration: none;
        color: white;
        font-size: 15px;
    }
    .menu-page {
        font-size: 18px !important;
        color: #F7420B !important;
        cursor: pointer;
        padding: 20px 0 20px 10px;
        border-bottom: 1px solid #979797;
        width: 350px;
        text-transform: uppercase;
    }
    .menu-overlay.active {
        width: 100%;
        height: calc(1700%);
        background-color: #0000002b;
        position: absolute;
        top: 0;
        left: 0;
    }
    .search-box {
        border: solid 2px #F7420B;
        display: inline-block;
        position: absolute;
        right: 80px;
        top: 15px;
        border-radius: 50px
    }
    .home-footer .footer-top {
        justify-content: space-between;
    }
    .home-footer .footer-logo {
        width: 100px;
        height: 100px;
    }
    .navbar-default {
        padding: 15px 0 40px 0;
    }
    .footer-flex {
        width: auto;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-brand {
        margin-right: 200px;
    }
    .flex {
        width: 425px;
    }
    #home {
        height: 61%;
    }
    .menu-list.active {
        width: 55%;
    }
    .menu-page {
        width: 155px;
    }
    .home-footer .footer-top {
        justify-content: space-between;
    }
    .home-footer .footer-top .footer-columns {
        width: 100%;
        margin-top: 20px;
    }
    .home-footer .footer-logo {
        width: 100px;
        height: 100px;
    }
    .home-footer .footer-top .footer-columns .footer-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .menu-button {
        right: 15px;
    }
    .search-box {
        right: 71px;
    }
    .footer-flex {
        width: 315px;
    }
    .work_filter ul li {
        padding: 6px 5px !important;
    }
    .banner_content {
        padding: 68px 0 0 15px !important;
    }
    .benner-btn {
        padding: 12px 8px;
        width: 141px;
    }
    .benner-text {
        display: none;
    }
    .f-left {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .f-center {
        cursor: pointer;
    }
    .f-right {
        align-items: start;
    }
}

@media (max-width: 424px) {
    .navbar-default .navbar-brand {
        margin-right: 175px;
    }
    .flex {
        width: 375px;
    }
    #home {
        height: 54%;
    }
}

@media (max-width: 374px) {
    .navbar-default .navbar-brand {
        margin-right: 120px;
    }
    .flex {
        width: 320px;
    }
    .footer-flex {
        width: auto;
    }
}