@font-face {
    font-family: regular;
    src: url(../font/jost/Jost-Regular.ttf);
}

@font-face {
    font-family: medium-font;
    src: url(../font/jost/Jost-Medium.ttf);
}

@font-face {
    font-family: bold-font;
    src: url(../font/jost/Jost-Bold.ttf);
}

@font-face {
    font-family: semibold;
    src: url(../font/jost/Jost-SemiBold.ttf);
}

@font-face {
    font-family: extrabold;
    src: url(../font/jost/Jost-ExtraBold.ttf);
}


/* body{ 
    background: var(--body);
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: regular;
}

a {
    text-decoration: none;
}

i.fi {
    height: 15px !important;
}


/* Color Varaibles */

:root {
    --primary: #fa8b44;
    --secondary: #cc596d;
    --light: #ffffff;
    --dark: #141414;
}


/* ===button===== */

.button {
    padding: 10px 25px;
    /* background-color: var(--primary); */
    background: linear-gradient(-135deg, var(--secondary), var(--primary));
    outline: none;
    border: none;
    color: var(--light);
    text-transform: uppercase;
    border-radius: 50px;
}

.button-outline {
    padding: 10px 25px;
    border: 1px solid var(--primary);
    outline: none;
    color: var(--primary);
    text-transform: uppercase;
    border-radius: 50px;
    background: transparent;
}


/* =======top navigation======== */

.top_navigation {
    background: linear-gradient(-135deg, var(--secondary), var(--primary));
}

.top-nav-box {
    padding: 8px 0;
}

.top-nav-box ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top-nav-box ul li {
    color: var(--light);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.top-nav-box ul li i {
    margin-right: 8px;
}

.top-nav-box.left ul li {
    margin-right: 30px;
}

.top-nav-box.right {
    display: flex;
    justify-content: flex-end;
}

.top-nav-box.right ul li {
    margin-left: 30px;
}


/* ==========end============= */


/* ================navigation=========== */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.side-menu {
    display: none;
    float: right;
    padding-top: 8px;
}

.side-menu span div {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    margin: 0 0 5px 0;
}

.side-menu i {
    font-size: 20px;
}

.logo {
    cursor: pointer;
}

.logo img {
    max-width: 68%;
}

.navigation {
    background-color: var(--light);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menu-list {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 100%;
}

.menu-list ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-list ul li {
    margin-left: 25px;
    padding: 20px 0;
    cursor: pointer;
    color: var(--dark);
}

.menu-list ul li a {
    color: var(--dark);
}

.dropdown {
    position: relative;
    /* overflow: hidden; */
}

.dropdownList {
    opacity: 0;
    transition: 0.3s linear;
    transform: translateY(-1rem);
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    background: var(--light);
    height: 0;
    width: 190px;
    overflow: hidden;
}

.dropdownList p {
    margin: 0;
    padding: 10px 15px;
    transition: 0.5s;
}

.dropdown:hover .dropdownList {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    margin-top: 1rem;
    height: max-content;
    width: 190px;
}

.dropdown .dropdownList p:hover {
    background-color: var(--primary);
    color: var(--light);
}

.home_header {
    background-image: url("../img/home/header_banner/homebg.jpg");
    width: 100%;
    height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}


/* ================end=============== */


/* ===========header============= */

.header_text {
    margin: 10rem 0;
}

.header_text h1 {
    color: var(--light);
    font-weight: 800;
    font-size: 46px;
}

.header_text h1 span {
    color: var(--primary);
}

.header_text p {
    color: var(--light);
    text-align: justify;
    -webkit-text-align: justify;
}

.header_text button:first-child {
    margin-right: 15px;
}


/* ========marquee==== */

.marquee {
    background: linear-gradient(-135deg, #cc596dd6, #fa8b44cf);
    width: 100%;
    padding: 1rem;
    height: 120px;
    color: #fff;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 2.5rem 1.5rem;
}

.marquee-tag {
    width: 200px;
    margin: 0 0.5em;
    padding: 0.5em;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 auto;
}

.marquee-tag a {
    color: var(--light);
}

.marquee-tag:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    cursor: pointer;
}

.marquee .slick-arrow {
    display: none !important;
}


/* ===========end============ */


/* ========home-about======== */

.home-about span {
    color: var(--primary);
    font-size: 18px;
}

.home-about h2 {
    color: var(--dark);
    font-weight: 600;
    font-size: 38px;
}

.home-about p {
    margin: 1.5rem 0;
    text-align: justify;
}

.about-tag-box {
    display: flex;
    width: 100%;
    border-top: 1px solid #141414;
    border-bottom: 1px solid #141414;
    padding: 1.5rem 6rem 1.5rem 0;
    margin-bottom: 1.5rem;
}

.about-tag {
    width: 50%;
    display: flex;
    align-items: center;
}

.about-tag .about-tag-icon {
    width: 20%;
}

.about-tag .about-tag-icon i {
    font-size: 40px;
    color: var(--primary);
}

.about-tag .about-tag-name {
    width: 80%;
    padding-left: 10px;
}

.about-tag .about-tag-name h4 {
    font-weight: 600;
    font-size: 24px;
}


/* ========end=========== */


/* =======home service===== */

.service-margin {
    margin: 8rem 0;
}

.home-service-card {
    background-color: var(--light);
    width: 100%;
    padding: 2rem;
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer;
}

.home-service-card img {
    max-width: 100px;
}

.home-service-card h4 {
    margin-top: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.home-service-card p {
    color: var(--dark);
}


/* ======end======== */


/* =====who we are====== */

.who-we-are-box {
    background-color: #EDF1F7;
}

.who-we-are-box .who-we-are-img {
    position: relative;
}

.who-we-are-box .who-we-are-img .who-we-are-overlay {
    position: absolute;
    background: linear-gradient(to bottom, #cc596d00, var(--primary));
    top: 0;
    width: 100%;
    height: 100%;
}

.who-we-are-box .row {
    margin-right: 0;
}

.about-who-we-are {
    padding-right: 15rem;
}

.about-who-we-are ol {
    list-style-type: none;
    margin-bottom: 1.5rem;
    height: 100%;
    padding: 1rem 0 1rem 0;
}

.about-who-we-are ol li {
    width: 50%;
    float: left;
}

.about-who-we-are ol li div {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary);
}

.about-who-we-are ol li div i {
    font-size: 30px;
    color: var(--primary);
}

.about-who-we-are h4 {
    margin: 1rem 0;
}

.about-who-we-are span {
    color: var(--primary);
}

.about-who-we-are h2 {
    font-size: 40px;
    font-weight: 600;
}


/* =======end======= */


/* ======why choose us===== */

.choose-box {
    display: flex;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer;
    padding: 2rem;
    transition: 0.5s;
    margin-bottom: 1.5rem;
}

.choose-box:hover {
    background-color: var(--dark);
}

.choose-box:hover .choose-text h4 {
    color: var(--light);
}

.choose-box:hover .choose-text p {
    color: var(--light);
}

.choose-box .choose-icon {
    width: 20%;
    display: flex;
    align-items: center;
}

.choose-box .choose-icon i {
    font-size: 40px;
    color: var(--primary);
}

.choose-box .choose-text {
    width: 80%;
    display: flex;
    align-items: center;
}

.choose-box .choose-text h4 {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.choose-img {
    padding: 3rem;
}


/* ======end======= */


/* =====title==== */

.title {
    margin: 0 0 3rem;
}

.title span {
    color: var(--primary);
    font-size: 18px;
}

.title h2 {
    color: var(--dark);
    font-weight: 600;
    font-size: 40px;
}


/* ======end====== */


/* ======footer====== */

.footer-logo img {
    max-width: 68%;
}

.footer hr {
    background-color: #ffffff91;
    margin: 2rem 0;
}

.footer {
    background-color: var(--dark);
    padding: 2rem;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-newsletter h2 {
    font-size: 40px;
    color: var(--light);
    font-weight: 600;
}

.footer-text p {
    text-align: justify;
}

.footer-link h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 30px;
}

.footer-link ul {
    list-style-type: none;
    padding: 0;
}

.footer-link ul li {
    float: left;
    width: 50%;
    padding: 10px 0;
    cursor: pointer;
}

.footer-link ul li a {
    color: var(--light);
}

.footer-contact {
    display: flex;
}

.footer-contact .footer-icon {
    width: 10%;
}

.footer-contact .footer-icon i {
    color: var(--primary);
    font-size: 18px;
}

.footer-contact .footer-address {
    width: 90%;
}

.footer-contact .footer-address p {
    color: var(--light);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright p a{
    color: var(--primary);
}

.footer-text ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-text ul li {
    margin-right: 1rem;
}

.footer-text ul li i {
    color: var(--light);
    max-width: 20px;
    color: var(--primary);
}


/* ======end===== */


/* =======slider===== */

.client-slider {
    background-color: #f1824c14;
    padding: 1rem 0;
}

.client-logo-hover-box {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    position: relative;
    padding: 1rem;
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, 0);
}

.client-logo-hover-box:hover {
    background: var(--light);
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
}

.client-logo {
    height: 66px;
    overflow: hidden;
    position: relative;
    width: 280px;
}

.client-logo .client-top {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in;
    bottom: 0;
    background: var(--light);
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
}

.client-logo .client-bottom {
    position: absolute;
    transition: 0.3s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    bottom: 80px;
}

.client-logo-hover-box:hover .client-top {
    bottom: -80px;
    transition: 0.3s ease-in;
}

.client-logo-hover-box:hover .client-bottom {
    bottom: 0;
    transition: 0.3s ease-in;
}

.client-logo img {
    max-height: 100%;
}

.client-top img {
    filter: grayscale(100);
}

.client-slider .slick-arrow {
    display: none !important;
}


/* =====end==== */


/* ======page header===== */

.page-header.about_us {
    background-image: url("../img/page_header/about_us.jpg");
}

.page-header.service {
    background-image: url("../img/page_header/service-bg.jpg");
}


/* ======end====== */


/* =====about us page===== */

.page-header {
    /* background-color: var(--dark); */
    width: 100%;
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #141414bf;
}

.page-header-name {
    width: 100%;
    height: 100%;
    padding: 9.2rem;
    text-align: center;
}

.page-header-name h1 {
    color: var(--light);
    font-weight: 700;
}

.page-header-name nav ol .breadcrumb-item a {
    color: var(--light);
}

.page-header-name nav ol .breadcrumb-item.active {
    color: var(--primary);
}

.page-header-name .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
    content: '>';
}


/* ======end======== */


/* =====leader========= */

.leader-box {
    display: flex;
    position: relative;
}

.leader-pic {
    position: relative;
}

.leader-pic::before {
    position: absolute;
    content: '';
    width: 150px;
    height: 500px;
    background: linear-gradient(to top, var(--secondary), var(--primary));
    left: -5rem;
    top: -4rem;
    z-index: -1;
}

.about-leader {
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 2rem;
    position: absolute;
    background-color: var(--light);
    width: 65%;
    height: auto;
    right: 0;
    top: 4rem;
    overflow: hidden;
    transition: 1s;
    cursor: pointer;
}

.about-leader span {
    color: var(--primary);
}

.about-leader h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 10px 0 0;
}

.about-leader p {
    margin: 1rem 0 1rem;
    transition: 0.6s;
}

.about-leader ul {
    list-style-type: none;
    display: flex;
    padding: 0;
}

.about-leader ul li {
    margin-right: 1.5rem;
}

.about-leader ul li svg {
    fill: var(--primary);
    max-width: 20px;
}


/* ========end======== */


/* =======testimonal=== */

.testi-box {
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    transform: scale(0.9);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.testi-message {
    padding: 3rem;
}

.testi-img {
    position: relative;
}

.testi-quote {
    position: absolute;
    top: -20px;
    left: 1rem;
}

.testi-quote i {
    color: var(--primary);
    font-size: 50px;
}

.testi-message h4 {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.testi-message span {
    color: var(--primary);
    font-style: italic;
}

.testimonial-text h2 {
    font-weight: 600;
    font-size: 38px;
}

.testimonial .slick-arrow {
    display: none !important;
}

.testi-btn {
    background-color: transparent;
    outline: none;
    border: none;
    margin: 10px;
    color: var(--primary);
    font-size: 20px;
}


/* ======end===== */


/* ======about service in service page====== */

.service-name-div {
    display: flex;
    align-items: center;
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer;
    padding: 2rem;
}

.service-name-div .service-icon-box {
    width: 20%;
}

.service-name-div .service-name-box {
    width: 80%;
}

.service-name-div .service-name-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

.service-name-div .service-name-box p {
    color: var(--dark);
}

.service-name-div .service-icon-box i {
    color: var(--primary);
    font-size: 46px;
}

.service-name-div .service-icon-box img {
    max-width: 85%;
}


/* ========end========= */


/* ========service category points===== */

.points-name {
    box-shadow: 0 7px 30px -10px rgba(150, 170, 180, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 2rem;
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
}

.points-name:hover {
    background-color: var(--dark);
}

.points-name:hover h4 {
    color: var(--primary);
}

.points-name:hover p {
    color: var(--light);
}

.points-name h4 {
    font-weight: 600;
}


/* ==========end=========== */


/* =====contact page====== */

.contact-address {
    display: flex;
    margin: 1.5rem 0;
}

.contact-address .contact-icon {
    width: 12%;
}

.contact-address .contact-icon i {
    font-size: 28px;
    color: var(--light);
    background: var(--primary);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-address .contact-content {
    width: 88%;
}

.contact-address .contact-content h4 {
    font-size: 24px;
}

.contact-detail {
    margin: 2rem 0;
}

.contact-detail h2 {
    font-weight: 600;
    font-size: 40px;
}

textarea {
    resize: none !important;
}

.contact-form-bg {
    background: #f1824c14;
    padding: 4rem;
}

.contact-form-bg input {
    background: transparent;
    outline: none;
    border: 1px solid #cecece;
    padding: 12px 12px;
}

.contact-form-bg textarea {
    background: transparent;
    outline: none;
    border: 1px solid #cecece;
    resize: none;
}

.contact-button {
    background: var(--dark);
    padding: 15px 25px;
    outline: none;
    border: none;
    width: 100%;
    color: var(--light);
    border-radius: 4px;
}

.contact-map {
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}


/* ========end======= */


/* ======table====== */

.table-dark {
    --bs-table-bg: var(--dark) !important;
}

.list-table table tbody tr td a {
    color: #2196f3;
    text-decoration: revert;
}

.table-tag-name {
    color: var(--primary);
}


/* =======side menu bar====== */

.sidenav ul li a {
    border-bottom: 1px solid #202020;
    display: flex;
    justify-content: space-between;
}

.sidenav ul li .card a:last-child {
    border: none;
}

.sidenav ul li .card.card-body {
    padding: 0;
}

.sidenav ul li .card {
    background: #2c2c2c;
}

.sidenav ul li .card a {
    padding: 0;
}

.sidenav ul li .card a p {
    margin: 0;
    padding: 15px 8px 15px 32px;
    width: 100%;
}


/* The side navigation menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    background-color: var(--dark);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.sidenav ul {
    list-style-type: none;
    padding: 0;
}


/* The navigation menu links */

.sidenav a {
    padding: 15px 8px 15px 32px;
    text-decoration: none;
    font-size: 16px;
    color: var(--light);
    display: block;
    transition: 0.3s;
}


/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: #f1f1f1;
}


/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}


/* =========end======== */

.desktop-none {
    display: none;
}

.act-tab .nav {
    justify-content: space-between;
}

.act-tab .nav-item {
    width: 50%;
}

.act-tab .nav-item button {
    width: 100%;
    background-color: #cecece;
    border-radius: 0;
    color: var(--dark);
}

.act-tab .nav-item .nav-link.active {
    background-color: var(--primary);
}

.review-img .modal-content {
    background-color: transparent;
    border: none;
}

.review-img {
    text-align: center;
}

.review-img img {
    max-width: 70%;
}

.review-img .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--light);
    padding: 15px;
}

.review-screen-shot img {
    position: absolute;
    max-height: 80px;
    right: 1rem;
    bottom: 1rem;
    cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 5px;
}


/* search section */

.seach_sectio {
    width: 410px;
    height: 100%;
    background-color: #141414;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    display: none;
    border-left: 3px solid #c65367
}

.search_inner_sect {
    width: 100%;
    height: 100%;
    padding: 25px 10px;
}

.search_input {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    flex-direction: column;
}

.search_result_heading {
    text-align: left;
    color: #fff;
    margin: 15px 0;
    padding: 10px 0;
    display: block;
    width: 100%;
}

.input_search {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-size: 18px;
}

.link_list {
    width: 100%;
    list-style-type: none;
    padding: 0;
    /* background-color: #fff; */
    /* border-top: 1px solid #ccc; */
    /* overflow-y: scroll; */
    /* height: calc(max-content - 80px); */
}

.list_item {
    padding: 5px 15px;
    /* border-bottom: 1px solid #ccc; */
}

.list_item>a {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #fff;
    height: 100%;
}

.close_icon {
    /* position: absolute;
  right: 50px;
  top: 50px; */
    cursor: pointer;
    height: 30px;
    text-align: left;
    margin-left: 15px;
    margin-bottom: 15px;
}

.close_icon>p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 50px;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}