:root {
    --maincolor: #5B99C2;
    --subcolor: #1F316F;
    --secondcolor: #F6D8B6;
    --textcolor: #2D3742;
    --graycolor: #9BA4B4;
    --lightcolor: #EEEEEE;
    --whitecolor: #FFFFFF;
    --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
}


/*---------------------- Public Style ---------------------*/

body {
    background: var(--whitecolor) url('../images/site/services-bg.png') repeat top center / 1920px;
    margin: 0;
    padding: 150px 0 0;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.overhide {
    overflow: hidden !important;
}

* {
    font-family: YekanBakh;
    outline: medium none !important;
    text-decoration: none !important;
}

.container {
    max-width: 1535px;
    padding: 0;
}

::selection {
    background-color: var(--subcolor);
    color: var(--whitecolor);
}

.options-swiper {
    position: relative;
    width: 240px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    z-index: 10;
    transition: all 0.3s;
}

.options-swiper:hover {
    opacity: 1;
}

.options-swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    color: var(--whitecolor);
    bottom: -2px;
}

.options-swiper .swiper-pagination::after {
    content: "-";
    color: var(--textcolor);
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-family: Barlow;
    font-weight: 500;
    font-size: 24px;
}

.options-swiper .swiper-pagination>span {
    position: relative;
    font-family: Barlow;
    font-weight: 500;
    margin: 0 10px;
    font-size: 24px;
    color: var(--textcolor);
}

.options-swiper .swiper-pagination>span::before {
    content: "0";
}

.options-swiper .swiper-button-next::after,
.options-swiper .swiper-button-prev::after {
    display: none;
}

.options-swiper .swiper-button-next,
.options-swiper .swiper-button-prev {
    z-index: 99;
    cursor: pointer;
    font-size: 28px;
    color: var(--textcolor);
    transition: all 0.4s;
}

.options-swiper .swiper-button-next:hover,
.options-swiper .swiper-button-prev:hover {
    color: var(--maincolor);
}

.lg-container {
    position: relative;
    z-index: 999999;
}

.lg-outer .lg-inner {
    direction: ltr;
}

.lg-outer .lg-thumb-item {
    float: right;
}

/*---------------------- /Public Style ---------------------*/


/*---------------------- Tooltip ---------------------*/

.tooltip {
    z-index: 99999;
}

.tooltip-inner {
    background-color: var(--subcolor);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 6px;
}

.tooltip .arrow::before {
    border-bottom-color: var(--subcolor);
    border-top-color: var(--subcolor);
}


/*---------------------- /Tooltip ---------------------*/

/*---------------------- Header ---------------------*/

.wrapper-affix {
    display: none;
}

.header-main {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.3s;
}

.header-main.affix {
    background-color: var(--whitecolor);
    box-shadow: 0px 10px 100px 0px rgba(20, 39, 78, 0.2);
    transition: all 0.3s;
}

.header-main .haader-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    transition: all 0.3s;
}

.header-main.affix .haader-row {
    margin: 10px 0;
}

.header-main .haader-row .logo-main {
    background-color: var(--maincolor);
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.header-main.affix .haader-row .logo-main {
    width: 70px;
    height: 70px;
}

.header-main .haader-row .logo-main .img-logo {
    height: 90px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.header-main.affix .haader-row .logo-main .img-logo {
    height: 50px;
}

.header-main .haader-row .nav-pills {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
}

.header-main .haader-row .nav-right-cabinet {
    justify-content: flex-start;
}

.header-main .haader-row .nav-left-cabinet {
    justify-content: flex-end;
}

.header-main .haader-row .nav-pills .nav-link {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: var(--textcolor);
    padding: 0;
    transition: all 0.3s;
}

.header-main.affix .haader-row .nav-pills .nav-link {
    font-size: 16px;
}

.header-main .haader-row .nav-pills .nav-link:hover {
    color: var(--maincolor);
}

.header-main .haader-row .nav-pills .nav-link::after {
    content: "";
    background-color: var(--maincolor);
    width: 0;
    height: 5px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header-main .haader-row .nav-pills .nav-link:hover::after {
    background-color: var(--secondcolor);
    width: 40px;
    opacity: 1;
    visibility: visible;
}

.header-main .haader-row .nav-pills .nav-link.active {
    position: relative;
    background-color: transparent;
    font-weight: 800;
    color: var(--maincolor);
}

.header-main .haader-row .nav-pills .nav-link.active>i {
    display: none;
}

.header-main .haader-row .nav-pills .nav-link.active::after {
    width: 40px;
    opacity: 1;
    visibility: visible;
}

.header-main .haader-row .nav-pills .nav-link.active:hover::after {
    width: 100%;
}

.header-main .haader-row .nav-pills .nav-link.active .count {
    width: 25px;
    height: 25px;
    background-color: var(--secondcolor);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--subcolor);
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/*---------------------- /Header ---------------------*/

/*---------------------- Content Main ---------------------*/

/*---------------------- Section Services ---------------------*/

.sec-services {
    position: relative;
    margin-top: 60px;
}

.sec-services .en-cabinet {
    position: absolute;
    top: 0;
    right: -68px;
    left: 0;
    width: 105%;
    font-family: Teko;
    font-weight: 900;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-size: 150px;
    letter-spacing: 46px;
    direction: ltr;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(91, 153, 194, 0.15) 0%, rgba(255, 255, 255, 0.10) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    transform: scaleY(1.5);
}

.sec-services .title-website {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
    margin-top: 45px;
}

.sec-services .title-website .fa-cabinet {
    font-size: 120px;
    font-weight: 800;
    text-align: center;
    color: var(--subcolor);
}

.sec-services .title-website .slogan {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: var(--maincolor);
    left: 5px;
    top: -20px;
}

.sec-services .list-services {
    margin-top: 80px;
}

.sec-services .list-services .box-srv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--whitecolor);
    width: 100%;
    height: 280px;
    border: 2px solid var(--lightcolor);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.sec-services .list-services .box-srv:hover {
    border-color: var(--subcolor);
}

.sec-services .list-services .box-srv .box-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-services .list-services .box-srv .box-icon .svg-icon {
    width: 100px;
    height: 100px;
}

.sec-services .list-services .box-srv .svg-icon .secondcolor {
    fill: var(--subcolor);
}

.sec-services .list-services .box-srv .svg-icon .maincolor {
    fill: var(--secondcolor);
    transition: all 0.3s;
}

.sec-services .list-services .box-srv:hover .svg-icon .maincolor {
    fill: var(--maincolor);
}

.sec-services .list-services .box-srv .title-box {
    background-color: var(--lightcolor);
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 22px;
    font-weight: 600;
    color: var(--textcolor);
    flex-shrink: 0;
    margin: 0;
    transition: all 0.3s;
}

.sec-services .list-services .box-srv:hover .title-box {
    background-color: var(--subcolor);
    color: var(--whitecolor);
}

/*---------------------- /Section Services ---------------------*/

/*---------------------- Section Example Works ---------------------*/

.sec-examaple-works {
    margin-top: 150px;
    overflow: hidden;
}

.sec-examaple-works .content-section {
    position: relative;
}

.sec-examaple-works .content-section::before {
    content: "";
    background: url('../images/site/building.png') no-repeat center right / 1107px;
    width: 1107px;
    height: 853px;
    position: absolute;
    right: -110%;
    top: -60%;
    opacity: 0.6;
}

.sec-examaple-works .content-section .title {
    font-size: 50px;
    font-weight: 800;
    color: var(--subcolor);
    margin: 0;
}

.sec-examaple-works .content-section .title>strong {
    color: var(--maincolor);
    font-weight: 800;
}

.sec-examaple-works .content-section .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    color: var(--textcolor);
    margin: 10px 0 30px;
}

.sec-examaple-works .content-section .btn-more {
    position: relative;
    display: inline-flex;
    font-size: 20px;
    font-weight: 600;
    color: var(--textcolor);
    margin-top: 30px;
    transition: all 0.3s;
}

.sec-examaple-works .content-section .btn-more:hover {
    color: var(--maincolor);
}

.sec-examaple-works .list-works .swiper-new-works {
    overflow: hidden;
    width: 265%;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide {
    width: 650px;
}

.sec-examaple-works .list-works .swiper-new-works .box-image {
    background-color: var(--whitecolor);
    position: relative;
    display: block;
    width: 100%;
    height: 650px;
    border: 2px solid var(--lightcolor);
    padding: 10px;
    transition: all 0.3s;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide:hover .box-image {
    border-color: var(--maincolor);
}

.sec-examaple-works .list-works .swiper-new-works .cover-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.sec-examaple-works .list-works .swiper-new-works .cover-image::after {
    content: "";
    background-color: var(--secondcolor);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all 0.3s;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide:hover .cover-image::after {
    opacity: 0.6;
    visibility: visible;
}

.sec-examaple-works .list-works .swiper-new-works .box-image .category {
    background-color: var(--subcolor);
    padding: 10px 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    font-size: 18px;
    font-weight: 800;
    color: var(--whitecolor);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide:hover .box-image .category {
    top: 20px;
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.sec-examaple-works .list-works .swiper-new-works .cover-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide:hover .cover-image>img {
    transform: scale(1.2);
    filter: grayscale(1);
}

.sec-examaple-works .list-works .swiper-new-works .desc-work {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    color: var(--textcolor);
    margin: 20px 0 0;
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.3s;
}

.sec-examaple-works .list-works .swiper-new-works .swiper-slide:hover .desc-work {
    font-weight: 700;
    color: var(--subcolor);
}

/*---------------------- /Section Example Works ---------------------*/

/*---------------------- Section Manager Speech ---------------------*/

.sec-manager-speech {
    position: relative;
    margin-top: 150px;
    background-color: var(--secondcolor);
    width: 100%;
    height: auto;
}

.sec-manager-speech::before {
    content: "";
    background: url('../images/site/servicesblack-bg.png') repeat top center / 1920px fixed;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.sec-manager-speech .img-person {
    position: absolute;
    bottom: 0;
    right: 30px;
    height: 650px;
    z-index: 10;
}

.sec-manager-speech .bg-content {
    background-color: var(--subcolor);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    clip-path: polygon(0px 0px, calc(100% - 165px) 0px, 100% 100%, 100% 100%, 100% 100%, 0px 100%);
    z-index: 100;
}

.sec-manager-speech .bg-content::before {
    content: "";
    background: url('../images/site/serviceswhite-bg.png') repeat top center / 1920px fixed;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.sec-manager-speech .container {
    position: relative;
    z-index: 200;
    padding: 55px 20% 55px 0;
}

.sec-manager-speech .head-manager {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 30px;
}

.sec-manager-speech .head-manager .hamrahcabinet {
    font-size: 60px;
    font-weight: 800;
    color: var(--whitecolor);
    margin: 0;
}

.sec-manager-speech .head-manager .slogan {
    font-size: 30px;
    font-weight: 300;
    color: var(--whitecolor);
}

.sec-manager-speech .head-manager .btn-order {
    display: inline-flex;
    background-color: var(--secondcolor);
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 800;
    color: var(--subcolor);
    transition: all 0.3s;
}

.sec-manager-speech .head-manager .btn-order:hover {
    padding: 10px 30px;
    background-color: var(--whitecolor);
}

.sec-manager-speech .speech {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    line-height: 35px;
    color: var(--secondcolor);
    margin: 0;
}

.sec-manager-speech .speech::before {
    content: "\e904";
    font-family: 'icomoon';
    font-size: 50px;
    color: var(--secondcolor);
    position: absolute;
    top: 15px;
    right: -80px;
    opacity: 0.1;
}

.sec-manager-speech .statistics {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 50px;
    gap: 90px;
}

.sec-manager-speech .statistics .item-stat {
    text-align: center;
    user-select: none;
}

.sec-manager-speech .statistics .item-stat .count {
    font-family: Teko;
    font-size: 110px;
    font-weight: 400;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(31, 49, 111, 0.5) 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    direction: ltr;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-manager-speech .statistics .item-stat .count>span {
    font-family: Teko;
    display: inline-flex;
}

.sec-manager-speech .statistics .item-stat .title {
    font-size: 20px;
    font-weight: 300;
    color: var(--lightcolor);
    margin: -10px 0 0;
}

/*---------------------- /Section Manager Speech ---------------------*/

/*---------------------- Section News ---------------------*/

.sec-news-cabinet {
    margin-top: 150px;
}

.sec-news-cabinet .head-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.sec-news-cabinet .head-section .title-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sec-news-cabinet .head-section .title-head .title {
    font-size: 30px;
    font-weight: 800;
    color: var(--subcolor);
    margin: 0;
}

.sec-news-cabinet .head-section .title-head .title>strong {
    font-weight: 800;
    color: var(--maincolor);
}

.sec-news-cabinet .head-section .title-head .desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--textcolor);
}

.sec-news-cabinet .head-section .options-swiper {
    flex-shrink: 0;
}

.sec-news-cabinet .head-section .more-box {
    width: 100%;
    text-align: left;
}

.sec-news-cabinet .head-section .btn-more {
    font-size: 20px;
    font-weight: 600;
    color: var(--textcolor);
    transition: all 0.3s;
}

.sec-news-cabinet .head-section .btn-more:hover {
    color: var(--maincolor);
}

.sec-news-cabinet .swiper-news-cabinet {
    overflow: hidden;
    margin-top: 60px;
}

.sec-news-cabinet .swiper-news-cabinet .box-image {
    background-color: var(--whitecolor);
    display: block;
    width: 100%;
    height: 450px;
    border: 2px solid var(--lightcolor);
    padding: 10px;
}

.sec-news-cabinet .swiper-news-cabinet .cover-image {
    position: relative;
    background-color: var(--lightcolor);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sec-news-cabinet .swiper-news-cabinet .cover-image::after {
    content: "";
    background-color: var(--secondcolor);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all 0.3s;
}

.sec-news-cabinet .swiper-news-cabinet .swiper-slide:hover .cover-image::after {
    opacity: 0.6;
    visibility: visible;
}

.sec-news-cabinet .swiper-news-cabinet .box-image .date {
    background-color: var(--maincolor);
    padding: 10px 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    font-size: 16px;
    font-weight: 700;
    color: var(--whitecolor);
    transition: all 0.3s;
}

.sec-news-cabinet .swiper-news-cabinet .swiper-slide:hover .box-image .date {
    background-color: var(--subcolor);
}

.sec-news-cabinet .swiper-news-cabinet .cover-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.sec-news-cabinet .swiper-news-cabinet .swiper-slide:hover .cover-image>img {
    transform: scale(1.2);
    filter: grayscale(1);
}

.sec-news-cabinet .swiper-news-cabinet .content-news .title {
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 24px;
    font-weight: 800;
    color: var(--textcolor);
    margin: 20px 0 5px;
    transition: all 0.3s;
}

.sec-news-cabinet .swiper-news-cabinet .swiper-slide:hover .content-news .title {
    color: var(--subcolor);
}

.sec-news-cabinet .swiper-news-cabinet .content-news .desc-news {
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    color: var(--textcolor);
    line-height: 30px;
    opacity: 0.5;
    margin: 0;
    transition: all 0.3s;
}

.sec-news-cabinet .swiper-news-cabinet .swiper-slide:hover .content-news .desc-news {
    opacity: 1;
}

/*---------------------- /Section News ---------------------*/

/*---------------------- /Content Main ---------------------*/

/*---------------------- Footer Main ---------------------*/

.footer-main {
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(-90deg, var(--maincolor) 36%, var(--lightcolor) 36%);
    margin-top: 150px;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.footer-main::before {
    content: "";
    background: url('../images/site/logo.svg') no-repeat center center / 500px;
    width: 500px;
    height: 640px;
    position: absolute;
    right: -185px;
    top: 0;
    filter: brightness(0) invert(1) opacity(0.05);
}

.footer-main .about-footer {
    position: relative;
}

.footer-main .about-footer::before {
    content: "";
    background: url('../images/site/serviceswhite-bg.png') repeat top center / 1920px;
    position: absolute;
    top: -50px;
    right: -97%;
    width: 200%;
    height: 150%;
    opacity: 1;
}

.footer-main .about-footer .logo-main {
    position: relative;
    background-color: var(--whitecolor);
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main .about-footer .logo-main .img-logo {
    height: 90px;
}

.footer-main .about-footer .address {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 300;
    color: var(--whitecolor);
    margin: 50px 0 40px;
}

.footer-main .about-footer .address>i {
    font-size: 40px;
    color: var(--whitecolor);
    margin-left: 15px;
    opacity: 0.4;
}

.footer-main .about-footer .info-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-main .about-footer .info-main>a {
    font-size: 20px;
    font-weight: 700;
    color: var(--whitecolor);
    text-transform: uppercase;
    direction: ltr;
    transition: all 0.3s;
}

.footer-main .about-footer .info-main>a:hover {
    color: var(--subcolor);
}

.footer-main .about-footer .socials {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.footer-main .about-footer .socials .title {
    font-size: 18px;
    font-weight: 300;
    color: var(--whitecolor);
    margin-left: 20px;
}

.footer-main .about-footer .socials .list-sc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer-main .about-footer .socials .list-sc .item-sc {
    font-size: 25px;
    color: var(--whitecolor);
    opacity: 0.4;
    display: flex;
    transition: all 0.3s;
}

.footer-main .about-footer .socials .list-sc .item-sc:hover {
    opacity: 1;
    color: var(--subcolor);
}

.footer-main .links-footer {
    padding-right: 100px;
}

.footer-main .links-footer::before {
    content: "";
    background: url('../images/site/services-bg.png') repeat top center / 1920px;
    position: absolute;
    top: -50px;
    left: -98.65%;
    width: 200%;
    height: 150%;
    opacity: 1;
}

.footer-main .item-links {
    position: relative;
}

.footer-main .item-links .head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-main .item-links .head .number {
    font-family: Teko;
    font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(91, 153, 194, 0.50) 0%, rgba(238, 238, 238, 0.10) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    direction: ltr;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(1.5);
    margin-left: 20px;
}

.footer-main .item-links .head .title {
    font-size: 22px;
    font-weight: 800;
    color: var(--subcolor);
    margin: 0 0 5px;
}

.footer-main .item-links .desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: var(--textcolor);
    margin: 30px 0 0;
    overflow: hidden;
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.footer-main .footer-copyright {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 110px;
}

.footer-main .footer-copyright .copyright .main {
    font-size: 16px;
    font-weight: 600;
    color: var(--textcolor);
    margin: 0 0 10px;
}

.footer-main .footer-copyright .copyright .designer {
    font-size: 14px;
    font-weight: 600;
    color: var(--textcolor);
    opacity: 0.5;
}

.footer-main .footer-copyright .copyright .designer>a {
    color: var(--textcolor);
}

.footer-main .footer-copyright .licenses {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-main .footer-copyright .licenses .item-lcn {
    width: 100px;
    height: 100px;
    background-color: var(--whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main .footer-copyright .licenses .item-lcn>img {
    height: 80px;
}

/*---------------------- /Footer Main ---------------------*/

/*---------------------- Page Styles ---------------------*/

.sec-about-page .title-website {
    margin-bottom: 20px;
}

.sec-about-page .image-details {
    background-color: var(--whitecolor);
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    border: 2px solid var(--lightcolor);
    padding: 10px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.sec-about-page .image-details>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-about-page .text-details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    color: var(--textcolor);
    text-align: justify;
}

.sec-about-page .title-details {
    font-size: 30px;
    font-weight: 800;
    color: var(--subcolor);
    margin: 0 0 20px;
    line-height: 40px;
}

.content-page .sec-news-cabinet {
    margin-top: 50px;
}

.content-page .sec-news-cabinet .head-section .title-head {
    align-items: center;
}

.content-page .sec-news-cabinet .swiper-news-cabinet {
    margin-top: 30px;
}

.content-page .sec-news-cabinet .swiper-slide {
    margin-bottom: 30px;
}

.content-page .sec-news-details .short-desc {
    background-color: var(--lightcolor);
    padding: 20px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--graycolor);
    text-align: justify;
}

.content-page .sec-news-details .content-news .desc-news {
    display: block;
    opacity: 1;
    text-align: justify;
}

.sec-gallery-category .list-services .box-srv .box-icon {
    overflow: hidden;
}

.sec-gallery-category .list-services .box-srv {
    margin-bottom: 30px;
}

.sec-gallery-category .list-services .box-srv .box-icon>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.sec-gallery-category .list-services .box-srv:hover .box-icon>img {
    transform: scale(1.2);
}

.content-page .sec-contact .head-section {
    margin-bottom: 50px;
}

.content-page .sec-contact .image-contact {
    padding-left: 100px;
}

.content-page .sec-contact .image-contact .box-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.content-page .sec-contact .details-contact .desc p {
    font-size: 16px;
    font-weight: 300;
    color: var(--blackcolor);
    line-height: 2;
    margin: 0;
    text-align: justify;
}

.content-page .sec-contact .list-contact {
    margin-top: 30px;
}

.content-page .sec-contact .list-contact .item-cnt {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.content-page .sec-contact .list-contact .item-cnt .box-icon {
    background-color: var(--maincolor);
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--whitecolor);
    margin-left: 15px;
    flex-shrink: 0;
}

.content-page .sec-contact .list-contact .item-cnt .desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--blackcolor);
    line-height: 1.8;
    margin: 0;
}

.content-page .sec-contact .list-contact .item-cnt .desc a {
    font-size: 18px;
    font-weight: 500;
    color: var(--blackcolor);
    transition: all 0.4s;
}

.content-page .sec-contact .list-contact .item-cnt .desc a:hover {
    color: var(--maincolor);
}

.content-page .sec-contact .list-contact .item-cnt .list-tel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.content-page .sec-contact .list-contact .item-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-page .sec-contact .list-contact .item-tel .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--graycolor);
}

.content-page .sec-contact .list-contact .item-tel>a {
    font-size: 16px !important;
    font-weight: bold !important;
    color: var(--blackcolor) !important;
}

.content-page .sec-contact .list-contact .item-tel>a:hover {
    color: var(--maincolor) !important;
}

.content-page .sec-contact .list-contact .mail-text>a {
    font-family: Barlow;
    text-transform: uppercase;
    font-size: 16px !important;
}

.content-page .list-prices-page {
    margin-top: 50px;
}

.content-page .list-prices-page .item-price {
    margin-bottom: 30px;
}

.content-page .list-prices-page .box-price {
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--lightcolor);
    padding: 10px;
}

.content-page .list-prices-page .box-price .title-box {
    background-color: var(--subcolor);
    width: 100%;
    height: 90px;
    flex-shrink: 0;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: var(--whitecolor);
}

.content-page .list-prices-page .box-price .image-box {
    width: 100%;
    height: 200px;
    padding: 2px;
    border: 1px solid var(--lightcolor);
}

.content-page .list-prices-page .box-price .image-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-page .list-prices-page .box-price .price-main {
    background-color: var(--maincolor);
    width: 100%;
    padding: 15px 30px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: var(--whitecolor);
    letter-spacing: -2px;
}

.content-page .list-prices-page .box-price .price-main .unit {
    font-size: 22px;
    margin-right: 5px;
}

.content-page .list-prices-page .box-price ul {
    width: 100%;
    list-style: none;
    margin: 10px 0 0;
    padding: 0 10px;
}

.content-page .list-prices-page .box-price ul>li {
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: normal;
    color: var(--graycolor);
    margin: 10px 0;
}

.content-page .list-prices-page .box-price ul>li::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--secondcolor);
    display: inline-block;
    margin-left: 10px;
}

/*---------------------- /Page Styles ---------------------*/

/*---------------------- Menu Responsive ---------------------*/

.btn-more-page {
    padding: 15px 20px;
    background-color: var(--maincolor);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--whitecolor);
    gap: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 200;
}

.header-main .haader-row .nav-pills .nav-menu-bar {
    display: none;
}

.overlay-resp {
    background-color: var(--textcolor);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay-resp.show {
    opacity: 0.7;
    visibility: visible;
}

.menu-fixed-resp {
    background-color: var(--whitecolor);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    z-index: 999999;
    overflow: hidden;
    display: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s;
}

.menu-fixed-resp.show {
    visibility: visible;
    transform: translateX(0);
}

.menu-fixed-resp .close-menu-resp {
    display: inline-block;
    margin: 15px;
    font-size: 30px;
    color: var(--textcolor);
}

.menu-fixed-resp .list-menu-resp {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 68%;
    overflow-y: auto;
}

.menu-fixed-resp .list-menu-resp .item-menu {
    width: 100%;
    padding: 0 15px;
    border-bottom: 1px solid var(--lightcolor);
}

.menu-fixed-resp .list-menu-resp .item-menu .link-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--textcolor);
    transition: all 0.3s;
}

.menu-fixed-resp .list-menu-resp .item-menu .link-menu.show {
    color: var(--subcolor);
}

.menu-fixed-resp .list-menu-resp .item-menu .link-menu>i {
    font-size: 22px;
    color: var(--textcolor);
    opacity: 0.5;
    transition: all 0.3s;
}

.menu-fixed-resp .list-menu-resp .item-menu .link-dropdown.show>i {
    color: var(--maincolor);
    opacity: 1;
}

.menu-fixed-resp .list-menu-resp .list-dropdown-menu {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
}

.menu-fixed-resp .list-menu-resp .list-dropdown-menu>li>a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--textcolor);
    margin: 0 0 15px;
}

.menu-fixed-resp .logo-menu {
    width: 90px;
    height: 90px;
    background-color: var(--maincolor);
    position: absolute;
    bottom: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-fixed-resp .logo-menu>img {
    height: 70px;
    filter: brightness(0) invert(1);
}


/*---------------------- /Menu Responsive ---------------------*/

/*---------------------- Responsives ---------------------*/

@media only screen and (min-width:2000px) {
    .footer-main {
        background-image: linear-gradient(-90deg, var(--maincolor) 40%, var(--lightcolor) 40%);
    }
}

@media only screen and (min-width:1700px) and (max-width: 1800px) {
    .container {
        padding: 0;
    }
}

@media only screen and (min-width:1200px) and (max-width: 1700px) {
    .container {
        padding: 0 30px;
    }

    .header-main .haader-row .nav-pills .nav-link {
        font-size: 16px;
    }

    .header-main .haader-row .logo-main,
    .footer-main .about-footer .logo-main {
        width: 100px;
        height: 100px;
    }

    .header-main .haader-row .logo-main .img-logo,
    .footer-main .about-footer .logo-main .img-logo {
        height: 80px;
    }

    .sec-services .en-cabinet {
        font-size: 140px;
    }

    .sec-services .title-website .fa-cabinet {
        font-size: 100px;
    }

    .sec-services .title-website .slogan {
        font-size: 22px;
    }

    .sec-services .list-services .box-srv .title-box {
        height: 60px;
        font-size: 18px;
    }

    .sec-services .list-services .box-srv {
        height: 260px;
    }

    .sec-services .list-services .box-srv .box-icon .svg-icon {
        width: 90px;
        height: 90px;
    }

    .sec-examaple-works .content-section .title {
        font-size: 40px;
    }

    .sec-examaple-works .content-section .desc {
        font-size: 16px;
    }

    .options-swiper .swiper-button-next,
    .options-swiper .swiper-button-prev {
        font-size: 24px;
    }

    .options-swiper .swiper-pagination>span {
        font-size: 20px;
    }

    .sec-examaple-works .content-section .btn-more {
        font-size: 18px;
    }

    .sec-examaple-works .list-works .swiper-new-works {
        width: 230%;
    }

    .sec-examaple-works .list-works .swiper-new-works .box-image {
        height: 500px;
    }

    .sec-examaple-works .list-works .swiper-new-works .desc-work,
    .sec-examaple-works .list-works .swiper-new-works .box-image .category {
        font-size: 16px;
        line-height: 30px;
    }

    .sec-manager-speech .img-person {
        height: 600px;
    }

    .sec-manager-speech .container {
        padding-right: 28%;
    }

    .sec-manager-speech .head-manager .hamrahcabinet {
        font-size: 40px;
    }

    .sec-manager-speech .head-manager .slogan {
        font-size: 24px;
    }

    .sec-manager-speech .head-manager .btn-order {
        font-size: 22px;
    }

    .sec-manager-speech .speech {
        font-size: 16px;
        line-height: 30px;
    }

    .sec-manager-speech .statistics {
        gap: 60px;
    }

    .sec-manager-speech .statistics .item-stat .count {
        font-size: 80px;
    }

    .sec-manager-speech .statistics .item-stat .title {
        font-size: 18px;
    }

    .sec-news-cabinet .head-section .title-head .title {
        font-size: 28px;
    }

    .sec-news-cabinet .head-section .title-head .desc {
        font-size: 16px;
    }

    .sec-news-cabinet .head-section .btn-more {
        font-size: 18px;
    }

    .sec-news-cabinet .swiper-news-cabinet .box-image .date,
    .sec-news-cabinet .swiper-news-cabinet .content-news .desc-news,
    .footer-main .item-links .desc {
        font-size: 14px;
        line-height: 25px;
    }

    .sec-news-cabinet .swiper-news-cabinet .content-news .title,
    .footer-main .item-links .head .title {
        font-size: 20px;
    }

    .footer-main .about-footer .address>i {
        font-size: 35px;
    }

    .footer-main .about-footer .address,
    .footer-main .about-footer .socials .title {
        font-size: 16px;
    }

    .footer-main .about-footer .info-main>a {
        font-size: 18px;
    }

    .footer-main .footer-copyright .copyright .main {
        font-size: 14px;
    }

    .footer-main .footer-copyright .copyright .designer {
        font-size: 12px;
    }

    .footer-main .footer-copyright .licenses .item-lcn {
        width: 80px;
        height: 80px;
    }

    .footer-main .footer-copyright .licenses .item-lcn>img {
        height: 65px;
    }
}


/*---------------------- /Responsives ---------------------*/