.theme-btn {
    border: none;
    height: 50px;
    color: #282828;
    font-size: 13px;
    line-height: 40px;
    font-weight: 600;
    max-width: 250px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 8px #ee6b09;
    text-transform: uppercase;
    background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);
}

.btn-theme {
    border: none;
    height: 40px;
    color: #282828;
    font-size: 13px;
    line-height: 40px;
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px 0px 8px #ee6b09;
    text-transform: uppercase;
    background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);
    transition: all 0.4s ease-in-out;
}

.btn-theme span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-theme:hover {
    color: #fff;
    box-shadow: 0px 0px 8px #444444;
}

.btn-theme:hover span {
    width: 225%;
    height: 262.5px;
}

.scroll-top {
    position: fixed;
    top: 50%;
    left: -22px;
    transform: rotate(270deg);
    z-index: 99;
    animation: updown ease-in-out 3s infinite;
}

.scroll-top a {
    color: #fe730a;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.scroll-top a:hover {
    color: #ff7209;
}

.scroll-top a::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    background: #ff7209;
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
}

.floating-social {
    position: fixed;
    right: -60px;
    ;
    top: 50%;
    transform: rotate(-90deg);
    display: flex;
    z-index: 3;
    animation: updown-2 ease-in-out 5s infinite;
}

.floating-social p {
    font-size: 12px;
    font-weight: 600;
    color: #ff7209;
    text-transform: uppercase;
    margin-right: 15px;
    position: relative;
}

.floating-social p::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 1px;
    background: #847f7f;
    top: 40%;
    margin: 0 4px;
}

.floating-social a {
    font-size: 12px;
    font-weight: 600;
    color: #847f7f;
    text-transform: uppercase;
    padding-right: 8px;
    transition: all 0.3s ease-in-out;
}

.floating-social a:hover {
    color: #ff7209;
}


/* menu icon css  */

.logo-menu-wrapper .overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 22, 26, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.logo-menu-wrapper .overlay.is-on {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.logo-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-icon-inner {
    position: relative;
    top: 34%;
    left: 54%;
    transform: translateX(-25%);
}


/* icon inner menu  */

.menu_navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateX(-320px);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 55px 20px 10px;
    overflow-y: auto;
}


/* menu navigation scrollbar  */


/* width */

.menu_navigation::-webkit-scrollbar {
    width: 4px;
}


/* Track */

.menu_navigation::-webkit-scrollbar-track {
    background: rgba(23, 22, 26, 0.16);
}


/* Handle */

.menu_navigation::-webkit-scrollbar-thumb {
    background: rgb(27, 27, 27);
}


/* Handle on hover */

.menu_navigation::-webkit-scrollbar-thumb:hover {
    background: rgb(27, 27, 27);
}

.menu_navigation.is-opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu-talk-wrapper {
    display: flex;
    margin-top: 40px;
}

.menu-talk-sec {
    width: 25%;
    margin-right: 60px;
}

.menu-talk-sec h6 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.menu-talk-sec a {
    display: block;
}

.menu-talk-sec p,
.menu-talk-sec a {
    color: #ffffff59;
    font-size: 14px;
    font-weight: 600;
}

.menu-nav-ul li {
    width: fit-content;
}

.menu-nav-ul li a {
    width: fit-content;
}

.menu_navigation ul {
    padding-top: 40px;
}

.menu_navigation ul li {
    margin-bottom: 20px;
}

.menu_navigation ul li a {
    font-size: 44px;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease-in-out;
}

.menu_navigation ul li a:hover {
    color: rgba(255, 255, 255, 0.35);
    padding-left: 10px;
}

.menu_navigation ul li a span {
    color: #ffffff59;
    font-size: 12px;
    padding-right: 10px;
}


/* sub menu inside menu nav css  */

.overlay_submenu a[data-toggle]::after {
    content: '+';
    position: absolute;
    font-size: 16px;
    right: -80px;
    top: 14px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.overlay_submenu:hover > a::after {
    transform: rotate(180deg);
}

.overlay_submenu .submenu-dropdown {
    background: transparent;
    width: fit-content;
    padding-left: 160px;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
    display: none;
}

.overlay_submenu .submenu-dropdown a {
    width: max-content;
    margin-bottom: 15px;
}


/* menu inside submenu css starts here  */

.submenu_inner_dropdown {
    position: relative;
}

.submenu_inner_dropdown_menu {
    width: fit-content;
    display: none;
}

.submenu_inner_dropdown_menu a {
    padding-left: 25px;
    font-size: 24px !important;
    text-transform: lowercase;
}

.submenu_inner_dropdown_menu a:hover {
    padding-left: 30px !important;
}

.menu-follow-wrapper ul {
    padding-top: 40px;
    display: flex;
}

.menu-follow-wrapper li {
    margin-right: 10px;
    margin-bottom: 0;
    height: 40px;
    width: 40px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.menu-follow-wrapper i {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin-top: 0px;
}

#nav-icon {
    width: 50px;
    height: 50px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    background: #f4f3f3;
    border-radius: 50%;
    position: relative;
    bottom: -10px;
    z-index: 1001;
}

#nav-icon.open {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 40px;
}

#nav-icon.open span {
    background: #fff;
}

#nav-icon span {
    position: absolute;
    height: 2px;
    width: 20px;
    background: #fe780e;
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

#nav-icon span:nth-child(2) {
    top: 7px;
    transform-origin: left center;
}

#nav-icon span:nth-child(3) {
    top: 14px;
    transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: -3px;
    width: 27px;
}

#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    width: 27px;
}


/* mega menu css  */

.megamenu {
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
    padding: 40px 30px;
    z-index: 3;
    background: #fff;
    box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
}

.megamenu h6 {
    color: #222222;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.megamenu h6::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    background: #fe780e;
    left: 0;
    bottom: -8px;
}

.megamenu ul li a {
    color: #888686;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.megamenu ul li a:hover {
    color: #fe780e;
}


/* custom dropdown css starts  */

.custom-dropdown {
    position: relative;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 40px 30px;
    z-index: 3;
    background: #fff;
    box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
}

.custom-dropdown-menu li {
    padding: 0 !important;
}

.custom-dropdown-menu li a {
    text-transform: capitalize !important;
    font-weight: 500 !important;
    white-space: nowrap;
}

.custom-dropdown-menu li a:hover {
    color: #fe780e !important;
}

.custom-dropdown-menu li a:hover::before {
    width: 0% !important;
}


/* index section 7 css starts here  */

.index-sec-7 {
    min-height: 700px;
    background: #282828 url(../images/sec-7-bg.jpg) no-repeat;
    background-size: cover;
    padding: 130px 0px 110px;
    background-attachment: fixed;
}

.index-sec-7-slider-wrapper {
    background: rgba(29, 34, 40, 0.97);
    padding-bottom: 40px;
}

.index-sec-7-slider {
    padding: 55px 45px;
    position: relative;
}

.index-sec-7-slider .owl-nav {
    text-align: right;
    position: absolute;
    right: 30px;
}

.index-sec-7-slider .owl-nav button {
    color: #fff !important;
    background: none !important;
}

.index-sec-7-slider .owl-nav button i {
    font-size: 20px;
}

.slider-item {}

.slider-item p {
    color: #fff;
    font-size: 23px;
    line-height: 36px;
    font-weight: 500;
    margin: 35px 0;
}

.slider-item h6 {
    color: #ff7007;
    font-size: 23px;
    line-height: 36px;
    font-weight: 600;
}

.index-sec-7-slider .owl-dots {
    counter-reset: dots;
    position: absolute;
    bottom: 15px;
}

.index-sec-7-slider .owl-dot:not(:first-child):not(:last-child):before {
    background: #fff;
    height: 2px;
    width: 50px;
    border-radius: 0;
    color: trasprent !important;
    counter-increment: dots;
    content: '';
    border: 1px;
}

.index-sec-7-slider .owl-dot:before {
    counter-increment: dots;
    content: counter(dots);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    padding-left: 5px;
}

.index-sec-7-slider .owl-dot span {
    display: none !important;
}


/* index section 7 css ends here  */


/* index section 8 css starts here  */

.color-orange {
    color: #ff7007;
}

.index-sec-8 {
    background: #fff;
    padding: 90px 0 0;
    position: relative;
}

.index-sec-8::before {
    content: '';
    background: url(../images/triple-arrows.png) no-repeat;
    position: absolute;
    top: 230px;
    left: 0;
    width: 120px;
    height: 160px;
    z-index: 1;
}

.index-sec-8::after {
    content: '';
    background: url(../images/prism-arrow.png) no-repeat;
    position: absolute;
    top: 140px;
    right: 35px;
    height: 360px;
    width: 340px;
    z-index: 1;
}

.index-sec-8 h3 {
    color: #20242a;
    font-size: 46px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 2;
}

.index-sec-8 .main-desc {
    max-width: calc(100% - 120px);
}

.index-sec-8 p {
    color: #737373;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    z-index: 2;
    margin-bottom: 30px;
    position: relative;
}

.sec8-img {
    position: relative;
    z-index: 2;
}

.sec-8-inner-wrap {
    background: linear-gradient(to right, #282828 75%, #ff7007 25%);
    padding: 25px 0;
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.sec-8-text-wrap h6 {
    color: #f7f7f7;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sec-8-text-wrap p {
    color: #f7f7f7;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    width: calc(100% - 50px);
    margin-bottom: 0;
}

.sec-8-text-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sec-8-text-inner-wrapper h3 {
    color: #f7f7f7;
    font-size: 40px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sec-8-text-inner-wrapper button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 130px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}


/* index section 8 css ends here  */


/* footer css starts */

footer {
    padding: 70px 0px 0px;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-top h6 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
}

.footer-top p {
    color: #737373;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.footer-top a {
    color: #737373;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.footer-top a:hover {
    color: #ff7209;
}

.footer-bottom {
    background: #f8f7f7;
    padding: 30px 0px;
}

.footer-bottom p {
    color: #282828;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
}

.footer-bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: #282828;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    line-height: 24px;
}

.footer-bottom a:hover {
    color: #ff7209;
}

.inp-btn-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background: #ededed;
    border-radius: 8px;
    margin-top: 15px;
}

.inp-btn-wrapper input {
    background: transparent;
    border: none;
    padding: 0 10px;
    font-size: 12px;
    width: 100%;
}

.inp-btn-wrapper button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 160px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*margin-right: 5px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}

.follow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.follow-wrapper ul {
    display: flex;
}

.follow-wrapper li {
    margin-right: 10px;
    height: 30px;
    width: 30px;
    background: #999999;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.follow-wrapper li:hover {
    background: #fc9827;
}

.follow-wrapper li:last-child {
    margin-right: 0px;
}

.follow-wrapper i {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin-top: 5px;
}


/* Popup Section css  */

.popup-section .modal {
    background: rgba(23, 22, 26, 0.88);
}

.popup-section .modal-content {
    border-radius: 15px;
}

.popup-section .popup-close {
    position: absolute;
    height: 50px;
    width: 50px;
    background: rgba(12, 12, 12, 0.95);
    right: -20px;
    top: -20px;
    color: #fff;
    font-weight: 800;
    line-height: 50px;
    font-size: 22px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.popup-body {}

.popup-left-col {
    padding: 0;
}

.popup-left-col .popup-img {
    border-radius: 15px 0px 0px 15px;
}

.popup-right-col {
    padding: 0;
}

.popup-form-wrapper {
    width: calc(100% - 15px);
    padding: 20px;
    text-align: center;
    height: 100%;
    background: #eaeaea;
    border-radius: 0 15px 15px 0;
    max-height: 485px;
    overflow-y: auto;
}

.popup-form-wrapper h4 {
    font-size: 38px;
    font-weight: 700;
    color: #211321;
    line-height: 1.1;
    margin: 5px 0;
}

.popup-form-wrapper input,
.popup-form-wrapper textarea {
    width: 100%;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #bbbbbb;
    font-size: 14px;
    min-height: 30px;
    padding: 10px 0px;
    background: transparent;
}

.popup-form-wrapper textarea {
    height: 90px !important;
}

.popup-form-wrapper button {
    border: none;
    height: 40px;
    color: #282828;
    font-size: 13px;
    line-height: 40px;
    font-weight: 600;
    max-width: 160px;
    width: 100%;
    border-radius: 8px;
    margin-right: 5px;
    box-shadow: 0px 0px 8px #ee6b09;
    text-transform: uppercase;
    background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);
}

@keyframes updown {
    0% {
        transform: translateY(-20px) rotate(270deg);
    }
    50% {
        transform: translateY(5px) rotate(270deg);
    }
    100% {
        transform: translateY(-20px) rotate(270deg);
    }
}

@keyframes updown-2 {
    0% {
        transform: translateY(-5px) rotate(-90deg);
    }
    50% {
        transform: translateY(70px) rotate(-90deg);
    }
    100% {
        transform: translateY(-5px) rotate(-90deg);
    }
}


/* services page css  */

.service-sec-1 {
    background: #fff url(../images/service-bg.jpg) no-repeat;
    background-attachment: fixed;
    min-height: 400px;
    position: relative;
}

.service-sec-1::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.service-sec-1 h1 {
    color: #fff;
    font-size: 88px;
    font-weight: 800;
    position: absolute;
    bottom: 0px;
    padding: 0px 100px;
    z-index: 2;
    text-transform: uppercase;
}

.service-sec-2 {
    padding-bottom: 20px;
    background: url(../images/about_bg.jpg) no-repeat;
    background-attachment: fixed;
}

.service-left-col {
    padding-left: 100px;
}

.service-left-col h2 {
    font-size: 52px;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.2;
}

.service-left-col p {
    font-size: 16px;
    letter-spacing: 1px;
    max-width: calc(100% - 100px);
    margin-bottom: 15px;
}

.service-left-col button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 150px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}

.service-col-right {
    text-align: center;
}

.service-col-right img {
    position: absolute;
    bottom: -20px;
    right: 100px;
    z-index: 2;
}


/* servioce sec tion 3 css  */

.service-sec-3 {}

.service-inner-wrapper {
    background: #eee;
    padding: 100px;
}

.service-inner-wrapper h3 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 40px;
}

.award-inner-wrapper {}

.award-inner-wrapper img {}

.award-inner-wrapper .award-name {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.award-inner-wrapper .award-year {
    color: #ff7007;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.4;
}

.award-inner-wrapper p {
    font-size: 16px;
    line-height: 1.5;
}

.service-sec-4 {
    padding: 100px 0;
    background: url(../images/about_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: bottom center;
}

.service-sec-4 h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333;
}

.service-sec-4 p {
    font-size: 16px;
    letter-spacing: 1px;
    max-width: calc(100% - 100px);
    margin-bottom: 15px;
    color: #333;
}


/* service section 5 css  */

.experties-row {
    margin: 45px 0px;
    align-items: flex-end;
}

.experties-row:last-child {
    margin-bottom: 0;
}

.experties-inner-left-wrapper {}

.experties-inner-left-wrapper h4 {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.2;
    color: #333;
    text-transform: capitalize;
}

.experties-inner-left-wrapper p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
}

.shadow-img {
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}


/* section 6 section  */

.service-sec-6 {}

.service-sec-6-inner-wrap {
    padding: 100px;
}

.service-sec-6-inner-wrap h3 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 40px;
}

.service-sec-7 {}

.service-color-inner-wrapper {
    background: #34B1B5;
    padding: 100px;
}

.ss7-left-col {}

.ss7-left-col h3 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
}

.ss7-left-col h3 span {
    color: #333;
}

.ss7-left-col p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    max-width: calc(100% - 100px);
    margin-bottom: 15px;
}

.ss7-left-col button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 250px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}

.service-sec-8 {}

.service-sec-8 p {
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    max-width: calc(100% - 20px);
    margin-bottom: 15px;
    text-align: justify;
}

.service-sec-8 button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 250px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}


/* service sec 10 css  */

.service-dark-inner-wrapper {
    background: #333;
    padding: 100px;
}

.service-dark-inner-wrapper h3 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
}

.service-dark-inner-wrapper img {
    max-width: 270px;
    margin-bottom: 30px;
}


/* service section 11 css  */

.expertise-wrapper {}

.expertise-wrapper img {}

.expertise-wrapper h6 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 15px;
    color: #333;
    text-transform: uppercase;
}


/* service section 12 css  */

.service-sec-12 {}

.service-sec-12 h4 {
    color: #fff;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.service-footer-inner-wrapper {
    padding: 100px;
    background: url(../images/tables-bg.jpg) no-repeat;
    background-attachment: fixed;
    position: relative;
}

.service-footer-inner-wrapper::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.service-form-wrapper .row {
    justify-content: center;
    z-index: 2;
    position: relative;
}

.service-form-wrapper input,
.service-form-wrapper textarea,
.service-form-wrapper select {
    width: 100%;
    margin-bottom: 20px;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
}

.service-form-wrapper button {
    /*border: none;*/
    /*height: 40px;*/
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 250px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}


/* Our work page css starts  */

.work-sec-1 {
    background: #121212 url(../images/work-bg2.jpg) no-repeat;
    min-height: 460px;
    padding: 90px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

.work-sec-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.work-sec-1 .row {
    position: relative;
    z-index: 2;
}

.work-sec-1 button,
.about_banner button {
    max-width: 250px;
}

.work-sec-1 h1,
.about_banner h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.work-sec-1 p,
.about_banner p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.work-sec-2 {
    position: relative;
    background: url(../images/about_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: center right;
    padding: 100px 0;
    text-align: center;
}

.work-sec-2 h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

.work-sec-2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: calc(100% - 350px);
    margin: 0 auto 20px;
}

.work-sec-2 button {
    /*border: none;*/
    height: 50px;
    /*color: #282828;*/
    /*font-size: 13px;*/
    /*line-height: 40px;*/
    /*font-weight: 600;*/
    max-width: 250px;
    /*width: 100%;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 8px #ee6b09;*/
    /*text-transform: uppercase;*/
    /*background-image: linear-gradient(to left, #ff7209, #fe7c10, #fe8617, #fd8f1f, #fc9827);*/
}


/* work section 3 css starts  */

.work-sec-3 {
    padding: 60px 0 0;
    background: url(../images/prism-arrow-opacity.png) no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.single-portfolio-wrap {
    margin-bottom: 80px;
}

.spw-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.spw-head h6 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
}

.spw-head h4 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
}

.single-portfolio-wrap p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.spw-table-wrap table {
    width: 100%;
}

.spw-table-wrap table th {
    text-align: left;
    padding: 7px 10px;
    font-weight: 700;
    color: #ff7007;
    font-size: 15px;
    line-height: 1.5;
}

.spw-table-wrap table td {
    text-align: left;
    padding: 7px 10px;
    font-weight: 400;
    color: #000;
    font-size: 15px;
    line-height: 1.5;
}

.spw-table-wrap table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .09);
}


/* work section 4 css  */

.work-sec-4 {
    position: relative;
    padding: 80px 0px;
    background: url(../images/testimonial-bg.jpg) no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
    text-align: center;
    background-size: cover;
}

.work-sec-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.work-sec-4 .container {
    z-index: 2;
    position: relative;
}

.work-sec-4 h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.work-slider-item {
    max-width: calc(100% - 500px);
    margin: 0 auto;
}

.work-slider-item img {}

.work-slider-item h5 {
    color: #fff;
    margin: 10px 0 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.work-slider-item p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.stars-wrapper {
    margin-top: 10px;
}

.stars-wrapper i {
    color: #F0922D;
}

.work-slider .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
}

.work-slider .owl-nav button {
    color: #fff !important;
    background: none !important;
}


/* get a quote cta  */

.cta-wrapper {
    position: fixed;
    bottom: -55px;
    z-index: 4;
    left: 30px;
    transform: rotate(180deg);
    animation: updowncta ease-in-out 3s infinite;
}

.cta-wrapper .cta-get_quote {}


/* new pages css 28-2-2020  */

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.new-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ff7007;
    margin-bottom: 8px;
}

.new-heading-list {}

.new-heading-list li {
    font-size: 13px;
    margin-bottom: 5px;
    padding-left: 7px;
}

.new-heading-list li i {
    color: #085308;
}

.second-new-layout .experties-inner-left-wrapper {
    text-align: center;
}

.second-new-layout .experties-inner-left-wrapper h4 {
    font-size: 24px;
}

.second-new-layout .experties-row {
    align-items: center;
}

.second-new-layout .experties-inner-left-wrapper p {
    text-align: center;
}

.process-new {
    margin-top: 25px;
}

.process-new h5 {
    color: #333;
    font-weight: 700;
    font-size: 28px;
    margin: 10px 0;
}

.process-new p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
}

@keyframes updowncta {
    0% {
        transform: translateY(-30px) rotate(180deg);
    }
    50% {
        transform: translateY(5px) rotate(180deg);
    }
    100% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.service-left-col ul li i {
    color: #ff6e00;
    margin-right: 10px;
    font-size: 14px;
}
.service-left-col ul {
    margin: 12px 0;
}
.service-left-col ul li {
    margin: 9px 0;
    font-weight: 500;
    color: #565351;
}
.third-categorey-packages {
    padding: 50px 0;
}
.third-categorey-packages h5 {
    font-size: 35px;
    text-align: center;
    color: #111935;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}
.custom_table thead th {
    vertical-align: bottom;
    border-bottom: 0;
    width: 20%;
    text-align: center;
}
.custom_table td, .custom_table th {
    border: none;
}
.third-categorey-packages-box-bg {
    background-color: #101834;
    color: #fff;
}

.third-categorey-packages-box {
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(129deg, rgba(209,150,54,1) 0%, rgba(251,172,56,1) 0%, rgba(255,105,3,1) 89%);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    transition: .5s linear;
    cursor: pointer;
}
.third-categorey-packages-box-bg h6 {
    color: #fff;
}
.third-categorey-packages-box h6 {
    font-size: 34px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff;
}
.third-categorey-packages-box span {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.custom_table thead th:nth-child(3) {
    color: #c61c58;
}
.custom_table tr.main_row {
    background: #000;
    color: #fff;
}
.p-0 {
    padding: 0!important;
}
.custom_table tbody tr:nth-of-type(odd) {
    background-color: #ededed;
    border: 1px solid #fff;
}
.custom_table tbody tr th {
    width: 20%;
    text-align: center;
}
.custom_table tbody td i {
    color: #9ed10f;
}
.third-categorey-packages-box-01 h6 {
    color: #000;
}
.third-categorey-packages-box-01 h6 {
    font-family: Quicksand;
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0 20px 0;
    text-transform: uppercase;
    text-align: center;
}
.third-categorey-packages-box-01 button{
    max-width: 190px;
}
.custom_table tr td h6 {
    text-align: center;
    width: 100%;
    border: none;
    font-size: 24px;
    background: linear-gradient(129deg, rgba(209,150,54,1) 0%, rgba(251,172,56,1) 0%, rgba(255,105,3,1) 89%);
    color: #fff;
    padding: 12px;
}
.custom_table tbody td:nth-child(3) {
    background-color: #000;
    color: #fff;
}
.custom_table tbody td {
    text-align: center;
}


.portfolio_text {
    max-width: 810px;
    display: block;
    margin: 0 auto 60px;
}

.portfolio_text h2 {
    text-align: center;
    color: #fe780e;
    font-weight: 900;
    font-size: 50px;
}
.text-black {
    background-image: linear-gradient( 
270deg
 , #fe730a, #fe780e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.portfolio_text p {
    font-weight: 500;
    color: #000;
    text-align: center;
    font-size: 21px;
    margin-top: 20px;
    line-height: 25px;
}
.box14 {
    position: relative;
    margin-bottom: 30px;
}
.box14 img {
    width: 100%;
    height: auto;
}
.box14 .box-content {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
}
.box14 .box-content:before {
    border-bottom: 2px solid rgba(255, 255, 255, .90);
    border-top: 2px solid rgba(255, 255, 255, .90);
    transform: scale(0, 1);
    transform-origin: 0 0 0;
}

.box14 .box-content:after, .box14 .box-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .7s ease 0s;
}
.box14 .icon {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all .7s ease 0s;
}
.box14 .icon, .box15 .icon {
    padding: 0;
    list-style: none;
}
.box14 .icon li {
    list-style: none;
}
.box14 .icon li a {
    font-size: 30px;
    color: #fff;
    margin-right: 5px;
    transition: all .4s ease 0s;
}
.box14 .icon li a {
    font-size: 30px;
    color: #fff;
    margin-right: 5px;
    transition: all .4s ease 0s;
}

.package-sec {
    background: #f8f9fc;
    padding: 60px 0;
}
.package-sec .text-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}
.text-wrap .heading {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
   background-image: linear-gradient( 
270deg
 , #fe730a, #fe780e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 20px;
}
.package-box {
    border-radius: 8px;
    padding: 20px 30px;
    position: relative;
    border: solid 1px #fe8718;
    background: #fff;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.package-box .package-head {
    text-align: center;
}
.package-box .package-head .name {
    font-size: 18px;
    line-height: 1.1;
    color: #2f2f2f;
    font-weight: 600;
    margin-bottom: 10px;
}
.package-box .package-head .o-price {
    color: #808c9c;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 5px 0 0;
}
.package-box .package-head .price {
    font-size: 48px;
    color: #fe7a11;
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.3;
}
.package-box .package-body {
    padding-bottom: 10px;
}
.package-box .package-body ul {
    height: 190px;
    overflow: auto;
}
.package-box .package-body ul li {
    position: relative;
    margin: 4px 0;
    font-size: 13px;
    font-weight: 600;
    padding: 0 0 0 30px;
    color: #353e47;
}
.package-box .package-body ul li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fe750b;
    display: block;
    position: absolute;
    left: 14px;
    top: 6.5px;
    border-radius: 100%;
}
.package-box .package-body ul {
    overflow-y: scroll;
    height: 190px;
    overflow-x: hidden;
}
.package-box .package-footer {
    text-align: center;
}
.package-box .package-footer .order {
    border-radius: 10px;
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    transition: 0.3s;
    font-weight: 700;
    margin: 10px auto;
    border: solid 1px #fe8617;
    background-image: linear-gradient( 
270deg
 , #fe730a, #fe780e);
    color: #fff;
    text-align: center;
}
.package-sec .package-col {
    padding-top: 10px;
    padding-bottom: 10px;
}
.package-box .package-body ul::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    border-radius: 5px;
}
.package-box .package-body ul::-webkit-scrollbar-thumb {
    background-color: #fe750b;
    border-radius: 5px;
}
.package-box .package-body ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #e2e2e2;
    border-radius: 5px;
}
.package-box .bottom a {
    text-align: left;
    display: inline-block;
    font-size: 14px;
    color: #000;
    padding: 0 10px;
    font-weight: 600;
    line-height: 1;
}
.box14:hover .icon {
    bottom: 0;
    opacity: 1;
    transition-delay: .15s;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box14 .icon {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all .7s ease 0s;
}
ul.icon li i {
    color: #ff6903;
}
.box14:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(251 175 58 / 35%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .35s ease 0s;
}
.box14:hover .box-content:after, .box14:hover .box-content:before {
    opacity: 1;
    transform: scale(1);
    transition-delay: .15s;
}
.box14 .box-content:before {
    border-bottom: 2px solid rgb(254 120 35);
    border-top: 2px solid rgb(253 118 36);
    transform: scale(0, 1);
    transform-origin: 0 0 0;
}
.box14 .box-content:after, .box14 .box-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .7s ease 0s;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box14:hover .box-content:after, .box14:hover .box-content:before {
    opacity: 1;
    transform: scale(1);
    transition-delay: .15s;
}
.box14 .box-content:after {
    border-left: 2px solid rgb(252 115 35);
    border-right: 2px solid rgb(253 116 36);
    transform: scale(1, 0);
    transform-origin: 100% 0 0;
}
.box14 .box-content:after, .box14 .box-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .7s ease 0s;
}
.box14:hover:before {
    opacity: 1;
}