@import url(layout.css);
@import url(module.css);


body {
    font-family: "Yekan Bakh FaNum ExtraCondensed";
}

.header {
    width: 100%;
    height: 980px;
    position: relative;
    display: flex;
}

.slider-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.mySlides {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    opacity: 0;
}

.mySlides.active {
    opacity: 1;
    z-index: 1;
}

.button {
    position: absolute;
    top: 45%;
    border: none;
    color: #888888;
    cursor: pointer;
    font-size: 30px;
    background-color: none;
    background: none;
}

.header:hover .next-btn,
.header:hover .prev-btn {
    opacity: 1;
    transition: all .4s ease;
}

.next-btn {
    left: 0px;
    z-index: 20;
    opacity: 0;
    transition: all .4s ease;
    display: flex;
    justify-content: center;
}

.prev-btn {
    opacity: 0;
    right: 0px;
    z-index: 20;
    transition: all .4s ease;
}

.dot-box {
    position: absolute;
    bottom: 20px;
    justify-content: center;
    display: flex;
    width: 100%;
}

.dot {
    width: 32.2px;
    height: 3.52px;
    background: rgba(255, 255, 255, 0.81);
    cursor: pointer;
    border: 3px solid none;
    position: relative;
    margin: 0 2.5px;
    transition: all 0.3s linear;
}

.dot.active {
    background-color: #32cfb0;
}

.dot:hover {
    background: #32cfb0;
    transition: all 0.3s linear;
}

.containers {
    display: flex;
    justify-content: center;
}

/* ---------------- container - title item ------------------------ */

.container {
    width: 1200px;
    display: flex;
    margin: 100px auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container-top {
    margin-bottom: 35px;
}

.title {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 25px;
}

.title-line {
    width: 100px;
    height: 2px;
    background-color: var(--main-color1);
}

.title-p {
    color: var(--text-color2);
    line-height: 26px;
    padding: 0 200px 26px;
    text-align: center;
    font-weight: 300;
}

.title-center {
    display: flex;
    justify-content: center;
}

.p-right {
    padding-right: 0px;
    padding-left: 120px;
    text-align: right;
}

.title span {
    padding: 0px 20px;
    font-weight: 700;
    font-size: 54px;
    line-height: 62px;
    align-items: center;
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
}

.title span::before,
.title span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1.5px;
    background-color: var(--main-color1);
}

.title span::before {
    left: -100px;
}

.title span::after {
    right: -100px;
}

.title-center span {
    font-weight: 700;
    font-size: 54px;
}

.title-h2 {
    padding: 0px 0px 0px 20px;
    font-weight: 700;
    font-size: 54px;
    line-height: 62px;
    align-items: center;
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
}

.title-h2::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: var(--main-color1);
}

.title-h2::before {
    left: -100px;
}

/* ---------------- categoury title item ------------------------ */

.cate ul {
    display: flex;
    padding: 0px 0 30px 0;
}

.cate li {
    padding: 10px;
    margin-left: 20px;
}

.cate a {
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: all .3s ease;
}

.cate a:hover {
    color: var(--main-color1);
    transition: all .3s ease;
}

.cate a.active {
    color: var(--main-color1);
    opacity: 1;
}

.cate a::before {
    content: '';
    position: absolute;
    width: 0;
    bottom: -2px;
    background: #29d9c2;
    height: 2px;
}

.project-cate a.active::before {
    width: 100%;
    left: 0;
}

.project-cate a::after {
    bottom: 15px;
}

/* ---------------- item-box ------------------------ */

.item {
    width: 30%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.24);
    margin: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.items {
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
}

.items h3 {
    font-weight: 700;
    font-size: 20px;
    padding: 35px 0 40px;
}

.items span {
    font-weight: 700;
    font-size: 20px;
}

.items p {
    text-align: center;
    color: var(--text-color2);
    line-height: 26px;
    padding-bottom: 40px;
    font-weight: 300;
}

/* ---------------- blog item ------------------------ */

.blog-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.box-num {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.num {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    margin: 0px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color1);
    cursor: pointer;
    transition: all .15s ease-in;
}

.num:hover,
.num-active {
    background-color: var(--main-color1);
    transition: all .15s ease-in;
    color: #fff;
    border-color: var(--main-color1);
}

/* ---------------- about us item ------------------------ */

.about {
    width: 100%;
    height: 790px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.about-img {
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    width: 47%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    padding: 0px 1.5%;
}

.about-dot-box {
    display: flex;
    width: 100%;
}

.about-dot {
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
}

.about-dot:hover {
    transition: all .3s ease;
    opacity: 1;
}

.sliders-container {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.about-Slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.about-Slides.show {
    opacity: 1;
    z-index: 1;
}

.about-title {
    text-align: right !important;
}


.about-cate a {
    color: var(--text-color2);
    font-size: 18px;
}

.about-cate a::after {
    transition: all 0.3s linear;
    height: 1.5px;
}

.about-text p {
    padding-right: 0px;
    padding-left: 10px;
    text-align: right;
}

.contact {
    width: 110px;
    font-size: 18px;
    padding: 15px 22px 15px 12px;
    color: #ffffff;
    background-color: var(--main-color1);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s linear;
}

.contact:hover {
    background-color: var(--main-color2);
    transition: all 0.3s linear;
}

.contact span {
    padding-left: 10px;
}


/* ----------------  project item ------------------------ */

.project-cate ul {
    padding: 0px 0 30px 0;
}

.project-cate a {
    color: var(--text-color1);
    font-size: 17px;
}

.project-cate a::after {
    transition: all 0.1s linear;
    height: 1px;
}

.project-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* ---------------- client item ------------------------ */

.client {
    width: 100%;
    height: 755px;
    display: flex;
}

.client-text {
    width: 85%;
    padding-right: 50px;
}

.client-text p{
    padding-bottom: 50px;

}

.client-title h1 {
    line-height: 50px;
    padding-left: 50px;
}

.client-title p {
    padding-left: 120px !important;
}

.client-right {
    width: 40%;
    height: 100%;
    display: flex;
    background-color: #f5f5f5;
    align-items: center;
}

.client-button {
    display: flex;
    align-items: center;
    width: 95%;
    margin: auto;
    justify-content: center;
}

.next-client {
    border-radius: 50%;
    border: none;
    background-color: var(--main-color1);
    transition: all .3s ease;
}

.next-client:hover {
    background-color: #fff;
    transition: all .3s ease;
    color: #000;
}

.line-client {
    background-color: #e5e5e5;
    width: 32%;
    height: 1px;
}

.prev-client {
    border-radius: 50%;
    border: none;
    background-color: var(--main-color1);
    width: 40px;
    height: 40px;
    transition: all .3s ease;
    color: #fff;
    margin-right: 10px;
}

.prev-client:hover {
    background-color: #fff;
    transition: all .3s ease;
    color: #000;
}

.client-box {
    width: 60%;
    height: 100%;
    display: flex;
    background-color: var(--main-color1);
    align-items: center;
    position: relative;
}

.client-bgs {
    overflow: hidden;
    width: 99%;
    height: 100%;
    position: relative;
}

.client-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-frame {
    width: 110%;
    display: flex;
    overflow-x: hidden;
    margin-right: -168px;
}

.client-container {
    display: flex;
}

.blog-more a {
    font-weight: bold;
    font-size: 14px;
    color: var(--text-color1);
    transition: all 0.5s ease;
}


/* ----------------  our feature ------------------------ */

.features-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.mySwiper0 {
    width: 100%;
    overflow: hidden;
}

.fe {
    flex-wrap: nowrap;
}

.features-line {
    display: flex;
    justify-content: center;
}

.features-line::after {
    content: '';
    height: 1px;
    width: 100px;
    transition: all .3s ease;
    background-color: #aaa5a5;
}

.features-items:hover .features-line::after {
    width: 60px;
    transition: all .3s ease;
    background-color: var(--main-color1);
}

.features-line2 {
    display: none;
}

/* ----------------  expert item ------------------------ */
.expert {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 0px auto !important;
}

.expert-box {
    width: 50%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.expert-item {
    width: 46%;
    margin: 0 2% 30px;
    display: flex;
    flex-direction: column;
}

.expert-img {
    width: 100%;
    height: 277px;
}

.expert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.expert-item h3 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

.expert-svg {
    font-size: 100px;
    font-weight: bold;
}

.expert-slides {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-right: 50px;
}

.expert-title {
    display: flex;
    align-items: center;
    padding: 5px 0 40px;
}

.expert-title span {
    font-size: 15px;
    padding: 0 10px;
}

.expert-slides h3 {
    padding: 0px !important;
}

.expert-slides p {
    font-size: 21px;
    line-height: 35px;
    text-align: right;
    margin-bottom: 30px;
    font-weight: 200;
}

.expert-dot-box {
    justify-content: center;
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}

.expert-dot {
    width: 12px;
    height: 12px;
    background: var(--main-color1);
    cursor: pointer;
    border: 3px solid none;
    position: relative;
    margin: 0 10px;
    border-radius: 50%;
    transition: all .3s ease;
    opacity: .5;
}

.expert-dot.active {
    background-color: #32cfb0;
    opacity: 1;
}

.expert-dot:hover {
    transition: all .3s ease;
    opacity: 1;
}

/*--------------ourclient------------------*/

.ourclients {
   width: 100%;
    display: flex;
    align-items: anchor-center;
    background-color: #f5f5f5;
}

.ourclient-top{
    margin-bottom: 0px;
}

.clients {
    width: 100%;
    overflow: hidden;
}

.clients-box {
    flex-wrap: nowrap;
}



/*---------------newgallery page---------------*/


.project-newgallery::before {
    content: "";
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
    position: absolute;
    display: block;
    bottom: 0;
    transition: all .3s ease;
}

.project-newgallery:hover::before {
    height: 100%;
    transition: all .3s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%) !important;
}

.new-text {
    position: absolute;
    bottom: 30px;
    right: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

/*--------------------------- gallery page --------------------------*/

.bg-contain {
    background-color: #fff;
    position: relative;
    padding: 10px;
}

.bg-contain1 {
    background-color: #fff;
    position: relative;
    padding: 10px;
    z-index: 0;
}

.bg-contains {
    background-color: #fff;
    position: relative;
}

.container-gallery {
    width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 0 !important;
}

.search-gallery {
    position: absolute;
    color: #fff;
    opacity: 0;
    top: 0;
    transition: all .3s ease;
    left: 47%;
}

.project-gallery:hover .search-gallery {
    opacity: 1;
    left: 47%;
    top: 45%;
    z-index: 300;
    transition: all .3s ease;
}

.img-overly {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition: all .3s ease;
    background-color: transparent;
    z-index: 100;
    position: absolute;
    pointer-events: none;
}

.recent-a.active-filter {
    color: var(--main-color1);
    font-weight: bold;
}

/*--------------------------- about page --------------------------*/

.about-header {
    width: 100%;
    height: 679px;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-header::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(256, 256, 256, 0) 0%, rgba(256, 256, 256, 0.2) 100%);
    position: absolute;
    display: block;
    bottom: 0;
    transition: all .3s ease;
    right: 0px;
}

.about-container {
    height: 100%;
    display: flex;
    align-items: self-start;
    margin: 0px auto;
    position: absolute;
    top: 0px;
}

.about-header img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.header-text {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.sliders-container1 {
    height: 230px;
}

.about-contact {
    display: flex;
}

.about-count {
    margin-bottom: 0px !important;
}

.count-bg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -100000000;
}

.count-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
}

.contact-us {
    width: 100%;
    margin-top: 50px;
}

.header-text h6 {
    padding: 20px 0;
    font-weight: 700;
    font-size: 54px;
    line-height: 82px;
    display: flex;
}

.header-text p {
    color: var(--text-color2);
    line-height: 26px;
}

.mission {
    width: 100%;
    height: 449px;
    background-color: #fff;
}

.mission-text {
    height: 100%;
}

.mission p {
    padding-left: 5px;
}

.about-svg {
    display: flex;
    align-items: center;
    width: 50%;
    height: 90%;
}

.about-item {
    width: 50%;
    height: 50%;
    margin-bottom: 0px;
    transition: all .3s ease;
    display: flex;
    position: inherit;
    margin-top: 35px;
}

.success-box {
    margin-top: 60px;
}

.success-top {
    margin-bottom: 0px !important;
}

.about-icon {
    background: #fff;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.24);
    transition: all .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-items {
    height: 100%;
}

.features-line1 {
    display: none;
}

.success-item {
    width: 25%;
    display: flex;
    justify-content: center;
    height: auto;
}

.success-spans {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.success-spans::after {
    background-color: var(--main-color1);
    content: "";
    height: 1.5px;
    position: absolute;
    width: 50px;
    transition: all .3s ease;
    top: 70px;
    display: flex;
    justify-content: center;
}

.features-items:hover .success-spans::after {
    width: 90px;
    transition: all .3s ease;
    background-color: var(--main-color1);
}

.success-line::after {
    background-color: var(--main-color1);
    content: "";
    height: 1.5px;
    position: absolute;
    width: 50px;
    transition: all .3s ease;
    margin: 0px !important;
}

.features-items:hover .success-line::after {
    width: 90px;
    transition: all .3s ease;
    background-color: var(--main-color1);
}

.vision {
    margin: 100px auto 0px;
}

.vision-box {
    height: 500px;
    background-color: #fff;
}

.vision-box1 {
    height: 100%;
    padding-right: 9px;
}

.vision-img {
    width: 50%;
    height: 100%;
    display: flex;
    position: relative;
}

.vision-img img {
    width: 263px;
    height: 369px;
    margin: 0 15px;
}

.vision-imgs:first-child {
    top: 0px;
    position: absolute;
    transition: all .3s ease;
}

.vision-imgs:last-child {
    position: absolute;
    left: 20px;
    top: 50px;
    transition: all .3s ease;
}

.vision-img:hover .vision-imgs:first-child {
    top: 50px;
    transition: all .3s ease;
}

.vision-img:hover .vision-imgs:last-child {
    top: 0px;
    transition: all .3s ease;
}

.vision-text {
    height: 500px;
}

.vision-p {
    color: var(--text-color1);
}

.visions-p p {
    padding-left: 0px;
}

.vision-contact {
    margin-top: 20px;
}

.about1 {
    width: 22%;
    margin: 0 1.5%;
}

.about2 {
    width: 100%;
}

.get-svg {
    width: 100%;
    justify-content: right !important;
    margin-bottom: 30px;
    display: flex;
}

.get-line::after {
    margin: 0 6px;
}

.get-items h3,
.get-items span,
.get-items p {
    text-align: right;
    width: 100%;
}

.get-items span,
.get-items p {
    font-size: 16px;
    color: var(--text-color2);
    font-weight: 300;
}

.get-items img {
    width: 230px;
}

.get-items {
    display: flex;
    justify-content: right;
    align-items: flex-start;
}

/*--------------header pages---------*/

.head {
    width: 100%;
    height: 520px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: -10;
    background-size: cover;
}

.head-img {
    width: 100%;
    height: 520px;
    position: fixed;
    object-fit: cover;
}

.head-text {
    color: #fff;
    position: absolute;
    top: 56%;
    height: 100px;
    margin: 0 auto !important;
    flex-direction: row;
    justify-content: space-between;
}

.head-text div {
    font-size: 44px;
    font-weight: 700;
}

.head-text span {
    font-size: 16px;
    font-weight: 500;
}


/*--------------menu pages---------*/

.menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 160px;
    position: absolute;
    top: 0px;
}

/*--------------blog page--------------*/

.blog-contain {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
}

.blog-side {
    width: 270px;
}

input:focus {
    outline: none;
}

.search1 {
    border: none;
    background: none;
    font-size: 17px;
    padding: 12px 15px 12px 45px;
    width: 220px;
    border: 1px solid #e5e5e5;
    height: 49px;
    position: relative;
}

.searchform {
    position: relative;
    margin-bottom: 40px;
}

.search-icon {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
}

.recent {
    width: 100%;
    margin-bottom: 45px;
}

.recent-title {
    background: #f5f5f5;
    border-right: 3px solid var(--main-color1);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    padding: 18px 15px;
}

.recent-item {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    clear: both;
    display: flex;
    margin: 0px;
    padding: 15px 0px 15px 20px;
    position: relative;
    color: var(--text-color2);
    font-size: 15px;
    font-weight: 500;
    align-items: center;
}

.recent-item:after {
    background-color: var(--main-color1);
    width: 5px;
    height: 1.5px;
    content: '';
    position: absolute;
    right: 0px;
}

.recent-item span {
    margin-right: 15px;
}

.recent-item a {
    color: var(--text-color2);
    margin-right: 15px;
}

.recent-a {
    transition: all .3s ease;
    color: var(--text-color1);
    padding-right: 8px;
}

.recent-item:hover .recent-a,
.recent-item {
    color: var(--main-color1);
    transition: all .3s ease;
    cursor: pointer;
}

.recent-item:last-child {
    border-bottom: 0;
}

/*--------------subblog page--------------*/

.subblog-head {
    background: url(../img/testimonial-6-copy.jpg);
    position: fixed;
}

.subcontain {
    margin-top: 30px;
    position: relative;
}

.subblog {
    width: 100%;
    height: 815px;
    background: url(../img/blog4.jpg);
    margin-bottom: 35px;
    position: relative;
    background-size: cover
}

.subblog::before {
    content: "";
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
    position: absolute;
    display: block;
    bottom: 0;
    transition: all .3s ease;
}

.subblog:hover::before {
    height: 100%;
    transition: all .3s ease;
}

.subtext {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.subtext1 {
    display: none;
    color: #fff;
    flex-direction: column;
    background-color: #ccc;
    margin-bottom: 35px;
}

.subspan {
    display: flex;
}

.subspan span {
    padding: 5px 10px;
    background-color: #b7b7b7;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 5px;
}

.subtext h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 15px 0px 25px;
}

.subtext1 h1 {
    font-size: 21px;
    font-weight: 400;
    margin: 10px 0px;
    line-height: 36px;
}

.subsvg {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px !important;
}

.subsvg h5 {
    margin-left: 20px;
}

.subsvg h6 {
    margin-left: 20px;
    padding-right: 5px;
}

.subcontain p {
    color: var(--text-color2);
    line-height: 30px;
    text-align: center;
}

.subblog-p {
    padding-bottom: 20px;
    text-align: right !important;
    font-weight: 300;
}

.subblog-box {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0px;
}

.comaa {
    font-size: 34px;
    color: var(--text-color2);
    font-weight: bold;
}

.subblog-box p {
    padding: 15px 25px !important;
}

.subblog-slider {
    width: 100%;
    height: auto;
    display: flex;
    margin: 30px auto;
    justify-content: space-between;
}

.sub-slides {
    width: 386px;
    height: 386px;
}

.sub-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


/*--------------contact page--------------*/

.contacts {
    width: 100%;
    height: 504px;
}

.contacts-img {
    display: flex;
    height: 100%;
    width: 50%;
}

.contacts-img img {
    object-fit: cover;
    width: 100%;
}

.contacts-text {
    height: auto;
    width: 50%;
    padding: 0px;
}

.contact-box {
    margin-right: 45px;
    margin-left: 35px;

}

.contacts-p {
    position: relative;
}

.contacts-p::before {
    content: '';
    width: 9px;
    height: 9px;
    background-color: var(--main-color1);
    position: absolute;
    top: 9px;
}

.contcts1 {
    width: 100%;
    height: 700px;
    margin-bottom: 0px !important;
}

.contacts-p p {
    padding-right: 25px;
    padding-bottom: 10px;
}

.contacts-time {
    display: flex;
    padding-top: 20px;
}

.contacts-time p:first-child {
    color: var(--text-color1);
}

.contacts-time p {
    padding-left: 10px;
}

.contact-item {
    height: auto;
    width: 50%;
}

.contacts-line1::after {
    background-color: var(--main-color1);
    content: "";
    height: 2px;
    margin: 0px 20px 0 0 !important;
    width: 100px;
    transition: all .3s ease;

}

.features-item:hover .contacts-line::after {
    width: 90px;
    transition: all .3s ease;
    background-color: var(--main-color1);
}

.contacts-svg p {
    padding-bottom: 0px;
    padding-right: 5px;
}

.contacts-box {
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    background-color: #000;
}

.contacts-boxs {
    width: 100%;
    padding-right: 60px;
}

.contacts-texts {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0px;
}

.contacts-texts p {
    padding-left: 0px;
}

.contacts-texts h3 {
    padding: 0px 0px 15px;
    font-size: 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #fff;
}

.contacts-lines {
    margin-top: 20px;
}

.contacts-input {
    width: 70%;
    height: 47px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    position: relative;
}

.contacts-inputs {
    height: 100%;
    width: 70%;
    background: transparent;
    border: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding-right: 15px;
    letter-spacing: 1px;
}

textarea:focus {
    outline: none;
}

textarea {
    resize: none;
}

.contacts-textarea {
    height: 100px;
    align-items: start;
    margin-top: 30px;
}

.contacts-textarea textarea {
    height: 100%;
    width: 70%;
    background: transparent;
    border: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding-right: 15px;
    letter-spacing: 1px;
}

.contain-option {
    width: 1200px;
    height: auto;
    margin: 65px auto;
}

.contain-option h1 {
    text-align: center;
    font-size: 36px;
    color: var(--main-color1);
    margin: 50px auto 30px;
}

.option {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.options {
    width: 380px;
    height: 596px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    margin-bottom: 70px;
}

.options-top {
    width: 100%;
    height: 260px;
    background-color: rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all ease .3s;
}

.option-head {
    width: 338px;
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.option-head h3 {
    color: #000;
    font-size: 25px;
    font-weight: 500;
    transition: all ease .3s;
}

.option-head p {
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--text-color2);
    padding-top: 20px;
    font-weight: 300;
    transition: all ease .3s;
}

.price {
    padding: 38px 0;
    font-size: 60px;
    color: #000;
    transition: all ease .3s;
}

.option-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-list li {
    width: 338px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    text-align: center;
    font-size: 15px;
    font-weight: 200;
    color: var(--text-color2);
}

.option-button {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 110px;
}

.option-button a {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.03);
    color: #000;
    font-size: 15px;
    font-weight: 300;
    border-radius: 5px;
    border: none;
    transition: all ease .3s;
}

.options:hover .options-top,
.options:hover .option-button a {
    background-color: var(--main-color1);
    transition: all ease .3s;
    color: #fff !important;
}

.options:hover .option-head h3,
.options:hover .price,
.options:hover .option-head p {
    transition: all ease .3s;
    color: #fff !important;
}

/* ------------------ media query --------------- */


@media screen and (max-width:2100px) {

    .client-frame {
        margin-right: -120px;
    }

}

@media screen and (max-width:1680px) {

    .client-frame {
        margin-right: -100px;
    }

    .client-item {
        height: 380px !important;
    }

    .svg-client1 {
        justify-content: start;
        width: 100%;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .client-top1 {
        flex-direction: column;
        margin-top: -25px;
    }

    .client-img {
        margin-left: 0px;
        margin-bottom: 25px;
    }

    .client-item p {
        text-align: center;
    }

    .client-more {
        text-align: center;
    }
}

@media screen and (max-width:1390px) {
    .container {
        width: 1080px;
    }

    .container-blog {
        width: 1180px;
    }

    .blog-item {
        width: 380px;
    }

    .blog-icon {
        margin: -45px 200px 0 0;
    }

    .blog-item:hover .blog-more::before {
        width: calc(100% - 180px);
    }

    .blog-item:hover .blog-more a {
        transform: translateX(-60%);
    }

    .sliders-container {
        height: 280px;
    }

    .client-item p {
        text-align: center !important;
        padding-bottom: 30px;
        font-weight: 200;
    }

    .project-gallery {
        height: 260px;
    }

    .project-gallery1 {
        width: 354px;
    }

    .expert-img {
        width: 100%;
        height: 248px;
    }

    .container-footer {
        width: 1100px;
    }

    .copy-items {
        width: 1100px;
    }

    .copy-text {
        margin-right: 30px;
    }

    /*----------------blog page---------------*/

    .blog-item1 {
        width: 810px;
        height: 840px;
    }

    .blog-item1::before {
        bottom: 27px;
    }

    .blog-item1::after {
        bottom: 47px;
    }

    .blog-item1:hover::before {
        bottom: 47px;
    }

    .blog-item1:hover::after {
        bottom: 27px;
    }

    .blog-imgs {
        width: 790px;
        height: 537px;
    }

    .blog-video {
        width: 790px;
        height: 537px;
    }

    .blog-bg {
        width: 790px;
        height: auto;
    }

    .blog-side {
        width: 240px;
    }

    /*----------------subblog page---------------*/
    .subblog {
        height: 734px;
    }

    .sub-slides {
        width: 345px;
        height: 345px;
    }

    /*---------------gallery page---------------*/

    .container-gallery {
        width: 800px;
    }

    .project-gallery1 {
        width: 255px;
        height: 230px;
    }

    /*---------------about page---------------*/

    .about-container {
        margin: 0 auto;
    }

    .vision-img img {
        width: 233px;
        height: 327px;
    }

    .about1 {
        width: 40% !important;
        margin: 0 5%;
    }

    /*---------------contact page---------------*/

    .options {
        width: 340px;
    }

    .option-list li,
    .option-head {
        width: 298px;
    }

}

@media screen and (max-width:1200px) {

    .title-center span,
    .title-h2 {
        font-size: 46px;
    }

    .container {
        width: 900px;
    }

    .header {
        height: 78vw;
    }

    .header-main-container {
        justify-content: flex-start;
        margin-top: 0px !important;
    }

    .logo {
        width: 240px;
    }

    .title-center h1 {
        font-size: 46px;
    }

    .container-blog {
        width: 980px;
    }

    .Education-item {
        width: 310px;
    }

    .Education-img img {
        height: 186px;
    }

    .Education-icon {
        margin: -45px 150px 0 0;
    }

    .Education-more::before {
        width: 90px;
    }

    .Education-item:hover .Education-more::before {
        width: calc(100% - 150px);
    }

    .Education-item:hover .Education-more-a {
        transform: translateX(-60%);
    }

    .Education-text p {
        font-weight: 300;
        font-size: 15px;
        line-height: 30px;
    }

    .about {
        flex-direction: column;
        height: auto;
        margin: auto;
    }

    .about-img {
        width: 100%;
        height: 700px;
        margin-bottom: 35px;
    }

    .vision-img {
        height: 440px;
    }

    .about-img img {
        width: 100%;
        height: 100%;
    }

    .sliders-container {
        height: 200px;
    }

    .about-text {
        width: 97%;
    }

    .contact {
        margin-bottom: 55px;
    }

    .project-gallery {
        width: 32.5%;
        height: 215px;
        margin-top: 10px;
    }

    .project-gallery1 {
        width: 294px;
    }

    .client {
        flex-direction: column;
        height: auto;
    }

    .client-text {
        width: 85% !important;
        height: 100%;
        margin: 70px auto;
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .client-text p{
        padding-bottom: 30px;
    }

    .client-title {
        align-items: center;
        padding-top: 0px !important;
    }

    .client-right {
        width: 100%;
    }

    .client-box {
        width: 100%;
        height: 600px;
        display: flex;
        justify-content: center;
    }

    .client-frame {
        display: flex;
        justify-content: center;
        width: 95%;
        margin-right: 0px;
    }

    .about-text p {
        padding-left: 10px;
    }

    .client-button {
        margin-top: 10px;
    }


    .features-item {
        width: 31%;
    }

    .expert-img {
        height: 207px;
    }

    .expert-slides h3 {
        padding-top: 5px;
    }

    .container-footer {
        width: 960px;
    }

    .copy-items {
        width: 960px;
    }

    .copy-text {
        margin-right: 30px;
    }

    /*----------about page ------*/
    .about-container1 {
        margin: 100px auto;
    }

    .about {
        height: auto;
    }

    .about-svg {
        width: 100%;
        height: 50%;
    }

    .about-item {
        width: 50% !important;
        height: 200px;
    }

    .about-contact {
        padding-bottom: 32px;
        margin-top: 12px;

    }

    .about-contact a {
        padding: 24px 28px;
    }

    .about-counts {
        margin: 120px auto 20px;
        width: 90%;
    }

    .success-item {
        width: 50%;
        margin-bottom: 60px;
    }

    .vision {
        margin: 50px auto 0 !important;
    }

    .about-bottom {
        margin: 0 auto !important;
    }

    .vision-box {
        height: 990px !important;
    }

    .vision-imgs:first-child {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .vision-imgs:last-child {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .vision-imgs img {
        width: 285px;
        height: 400px;
    }

    /*----------------blog page---------------*/

    .blog-item1 {
        width: 670px;
        height: 745px;
    }

    .blog-item1::before {
        bottom: 25px;
    }

    .blog-item1:hover::before {
        bottom: 45px;
    }

    .blog-item1::after {
        bottom: 45px;
    }

    .blog-item1:hover::after {
        bottom: 25px;
    }

    .blog-imgs {
        width: 650px;
        height: 442px;
    }

    .blog-video {
        width: 650px;
        height: 442px;
    }

    .blog-bg {
        width: 650px;
    }

    .blog-side {
        width: 200px;
    }

    .search {
        width: 190px;
    }

    .search-icon {
        left: 25px;
    }

    .recent-title {
        font-size: 15px;
    }

    .recent-item {
        font-size: 12px;
    }

    /*----------------blog page---------------*/

    .subblog {
        height: 612px;
    }

    .sub-slides {
        width: 286px;
        height: 286px;
    }

    /*---------------gallery page---------------*/

    .container-gallery {
        width: 680px;
    }

    .project-gallery1 {
        width: 215px;
        height: 200px;
    }

    /*----------------contact page---------------*/

    .contacts {
        flex-direction: row;
        height: 500px;
    }

    .contacts-img {
        width: 50%;
        height: 100%;
        margin-bottom: 0px;
    }

    .contacts-text {
        width: 50%;
    }

    .options {
        width: 280px;
        height: 581px;
    }

    .option-list li,
    .option-head {
        width: 238px;
    }

    .option-button {
        height: 95px;
    }

}

@media screen and (max-width:990px) {
    .container {
        margin: 70px auto;
    }

    .header-main {
        height: auto;
    }

    .header-main-support {
        flex-direction: column-reverse;
    }

    .header-main-support-item span {
        margin: 20px 0 20px;
    }

    .header-main-support-item ul {
        margin-bottom: 20px;
    }

    .header-main-container {
        height: 214px;
        justify-content: center;
        margin-top: 10px !important;
        margin-bottom: 0px !important;
    }

    .menu-mobile {
        cursor: pointer;
        display: flex;
        align-items: center;
        color: #fff;
        justify-content: space-between;
    }

    .menu-item {
        display: none;
    }

    .menu-background {
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: 30;
        top: 0;
        left: 0;
        background-color: #000007;
        display: none;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .menu-background.show {
        display: block;
        opacity: 0.5;
    }

    .menu-item1 {
        display: none;
        transition: all .5s ease;
        transform: translateX(100%);
        width: 280px;
        height: 100vh;
        position: absolute;
        top: 0;
        right: 0px;
        background: #fff;
        z-index: 1000;
    }

    .menu-item1.open {
        transform: translateX(0);
    }

    .menu-item1-ul {
        display: flex;
        flex-direction: column;
        transition: all .5s ease;
    }

    .menu-item-li1 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 8px;
    }

    .menu-item-li1:hover .menu-item-a {
        color: var(--main-color1);
        transition: all .3s ease;

    }

    .menu-item1 a {
        color: var(--text-color1);
        transition: all .3s ease;
        padding: 15px;
    }

    .menu-arrow {
        color: var(--text-color1);
        transition: all .3s ease;
        position: relative;
        padding-left: 5px;
        display: flex;
        align-items: center;
    }

    .menu-arrow::after {
        transition: all 0.3s linear;
        content: '';
        position: absolute;
        width: 0px;
        height: 2px;
        background: #32cfb0;
        opacity: .8;
        right: 7;
    }

    .menu-item-li1:hover .menu-arrow::after {
        width: 15px;
        transition: all 0.3s linear;

    }

    .menu-item-li1:hover .menu-arrow {
        color: var(--main-color1);
        transition: all .3s ease;
        padding-left: 0px;
    }

    .menu {
        height: 200px;
    }

    .container {
        width: 710px;
        flex-wrap: wrap;
    }

    .container-top {
        flex-direction: column;
        display: flex;
        align-items: anchor-center;
        margin-bottom: 35px;
        width: 100%;
    }

    .title span {
        font-size: 40px;
    }

    .title-h2 {
        font-size: 40px;
    }

    .title-p {
        font-size: 16px;
        line-height: 30px;
        padding: 0px 0px 26px;
    }

    .items p {
        font-size: 16px;
        font-weight: 200;
    }

    .blog-box {
        justify-content: center;
        flex-wrap: wrap;
    }

    .Education-item {
        width: 463px;
        margin-bottom: 40px;
    }

    .Education-img img {
        height: 308px;
    }

    .Education-icon {
        margin: -45px 290px 0 0;
    }

    .Education-text h2 {
        margin-bottom: 20px;
    }

    .Education-more::before {
        width: 140px;
    }

    .Education-item:hover .Education-more::before {
        width: calc(100% - 200px);
    }

    .Education-item:hover .Education-more-a {
        transform: translateX(-90%);
    }

    .about {
        height: auto;
    }

    .about-box {
        width: 96%;
        padding-right: 20px;
    }

    .sliders-container {
        height: 250px;
    }

    .about-text h1 {
        font-size: 45px;
    }

    .project-gallery {
        width: 32.5%;
        height: 200px;
        margin-top: 10px;
    }

    .project-gallery1 {
        width: 350px;
    }

    .items h3 {
        padding: 30px 0 20px;
    }

    .client-box{
        height: 520px;
    }

    .client-items span {
        padding: 0 0 0;
    }

    .features-item {
        height: 330px;
        text-align: center;
    }

    .features-item1 {
        height: 280px;
    }

    .features-items {
        width: 90%;
    }

    .features-line{
        margin-top: 30px;
    }

    .swiper-pagination {
        margin-top: 100px;
    }

    .expert-img {
        height: 163px;
    }

    .expert-slides {
        padding-right: 0px;
    }

    .expert-slides p {
        margin-bottom: 0px;
    }

    .ourclient-top{
        margin-bottom: 0px;
    }

    .container-footer {
        width: 740px;
    }

    .foot {
        margin-right: 15px;
    }

    .foot p {
        font-size: 15px !important;
        font-weight: 200 !important;
    }

    .copy-right {
        height: auto;
    }

    .copy-items {
        width: auto;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 45px 20px;
    }

    .copy-items .menu-item {
        display: flex !important;
        margin: 10px 20px;
    }

    .copy-text {
        margin-right: 0px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        line-height: 32px;
    }

    .copy-text p:first-child {
        border-left: none;
        padding-left: 0px;
        margin-left: 0px;
    }

    .services-item {
        height: 200px;
    }

    /*----------about page ------*/
    .about-header {
        height: 600px;
    }

    .header-text h6 {
        font-size: 38px;
    }

    .about-container {
        height: auto;
        margin: 50px auto;
    }

    .about-container1 {
        margin: 70px auto;
    }

    .about {
        height: auto;
    }

    .about-box {
        width: 98%;
        padding-right: 0px;
        margin: auto;
    }

    .about-svg {
        width: 100%;
        height: 50%;
    }

    .about-item {
        width: 50% !important;
        height: 200px;
    }

    .about-img {
        height: 600px;
    }

    .success-item {
        height: 50%;
    }

    /*---------------gallery page---------------*/

    .container-gallery {
        width: 510px;
    }

    .project-gallery1 {
        width: 246px;
        height: 205px;
    }

    /*----------------blog page---------------*/

    .blog-item1 {
        width: 500px;
        height: 709px;
    }

    .blog-item1::before {
        bottom: 78px;
    }

    .blog-item1:hover::before {
        bottom: 95px;
    }

    .blog-item1::after {
        bottom: 98px;
    }

    .blog-item1:hover::after {
        bottom: 78px;
    }

    .blog-imgs {
        width: 480px;
        height: 326px;
    }

    .blog-video {
        width: 480px;
        height: 326px;
    }

    .blog-bg {
        width: 480px;
    }

    .blog-items p {
        font-size: 16px;
    }

    .blog-side {
        width: 180px;
    }

    .search {
        width: 180px;
    }

    .search1 {
        width: 100%;
    }

    .search-icon {
        left: 15px;
    }

    /*----------------subblog page---------------*/

    .contacts {
        flex-direction: column;
        height: auto;
    }

    .contacts-img {
        width: 100%;
        margin-bottom: 0px;
    }

    .contact-box {
        margin: 50px 25px;
    }

    .contacts-text {
        width: 100%;
    }

    .head-text {
        margin: 40px auto !important;
    }

    .subblog {
        height: 482px;
    }

    .sub-slides {
        width: 223px;
        height: 223px;
    }

    /*----------------contact page---------------*/
    .contacts-img {
        height: 56vw !important;
    }

    .contacts2 {
        width: 95%;
    }

    .contact-item {
        height: 500px;
        width: 100% !important;
    }

    .contacts-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contacts-boxs {
        width: 80%;
        padding: 70px 35px;

    }

    .contacts-inputs,
    .contacts-input {
        width: 100%;
    }

    .contcts1 {
        height: auto;
    }

    .contacts-box1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .mapboxgl-map {
        height: 515px !important;
    }

    .options {
        width: 220px;
        height: 625px;
    }

    .options-top {
        height: 286px;
    }

    .option-list li,
    .option-head {
        width: 175px;
    }

    .option-head p {
        line-height: 26px;
    }

    .option-button {
        height: 115px;
    }
}

@media screen and (max-width:770px) {

    /*--------------header pages---------*/
    .head-text {
        flex-direction: column;
    }

    .menu {
        height: 140px;
    }

    /*--------------header-menu item---------*/

    .header-main-support-item span {
        margin: 10px 0 0px;
    }

    .header-main-support-item ul {
        margin-bottom: 0px;
    }

    .header-main {
        height: 206px;
    }

    .header-main-container {
        margin: 0px 0px 0px;
        height: 206px;
        justify-content: flex-start;
    }

    .header-menu {
        margin-top: 0px !important;
        height: 55px;
    }

    .header-main-support {
        height: 65px;
        padding-bottom: 10px;
    }


    .logo {
        width: 230px;
    }

    .search-menu {
        margin-top: 0px !important;
        display: flex;
        justify-content: center;
    }

    .search-click {
        justify-content: center;
    }

    .search-form {
        width: 200px;
    }

    .container {
        width: 420px;
    }

    .title span {
        padding: 0px 0px 0px;
        text-align: center;
        width: auto;
        font-size: 35px;
    }

    .title span::before {
        left: -120px;
    }
    
    .title span::after {
        right: -120px;
    }

    .title-h2 {
        padding: 0px 0px 0px 20px;
        width: auto;
    }

    .about-title {
        margin: 0px;
    }

    .title-center h1 {
        padding-right: 0px !important;
    }

    .title-r {
        text-align: right !important;
        width: 28%;
    }

    .Education-item {
        width: 100%;
    }

    .Education-img img {
        height: 100%;
    }

    .Education-icon {
        margin: -45px 280px 0 0;
    }

    .Education-more::before {
        width: 145px;
        height: 2px;
    }

    .Education-item:hover .Education-more::before {
        width: calc(100% - 170px);
    }

    .Education-item:hover .Education-more-a {
        transform: translateX(-80%);
    }

    .Education-text {
        margin-bottom: 26px;
    }

    .Education-text h2 {
        font-size: 23px;
    }

    .about {
        height: auto;
    }

    .about-img {
        height: 70vw !important;
    }

    .about-text {
        height: auto;
        width: 90%;
    }

    .sliders-container {
        height: 280px;
    }

    .cate ul {
        padding: 0px 0px 10x 0px;
    }

    .about-text p {
        padding-left: 0px;
    }

    .container-project {
        width: 95%;
    }

    .project-top {
        width: 80%;
    }

    .project-cate ul {
        display: flex;
        padding: 0px 0 30px 0;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-gallery {
        width: 49%;
        height: 260px;
        margin-top: 13px;
    }

    .client-items {
        height: auto;
    }

    .client-top1 {
        padding-bottom: 20px;
    }

    .svg-client1 {
        margin-top: 0px;
    }

    .client-title {
        align-items: center;
        padding-top: 50px;
    }

    .client h1 {
        text-align: right;
        width: 180px;
    }

    .features {
        width: 90%;
    }

    .features-item {
        width: 48%;
        height: 225px;
    }

    .expert {
        flex-direction: column;
        width: 95%;
    }

    .expert-box {
        width: 100%;
    }

    .expert-item {
        width: 46%;
        margin-bottom: 50px;
    }

    .expert-item:last-child {
        margin-bottom: 0px;
    }

    .expert-img {
        height: 335px;
    }

    .ourclient {
        width: 95%;
    }

    .ourclient-top {
        width: 70%;
        margin-bottom: 10px;
    }


    .footer {
        height: auto;
        position: inherit;
        background: none;
        background-color: rgba(18, 18, 18, 0.9);
        align-items: center;
        justify-content: center;
        align-content: center;
    }

    .foot-bg {
        display: none;
    }

    .container-footer {
        flex-direction: column;
        width: auto;
        position: inherit;
        margin: 50px 30px;
    }

    .foot {
        width: auto;
        margin: 0px 0px 40px;

    }

    .foot:last-child {
        margin:0px;
    }

    .foot ul {
        margin-top: 25px;
    }

    /*----------about page ------*/

    .about-header {
        height: 400px;
        background-color: #f7f7f7;
    }

    .about-header img {
        display: none;
    }

    .header-text {
        width: 100%;
    }

    .header-text h6 {
        text-align: right !important;
        line-height: 40px;
    }

    .about-container {
        height: auto;
        width: 80%;
    }

    .about-container1 {
        margin: 49px auto 10px;
        width: 90%;
    }

    .about-count {
        width: 100%;
    }

    .about-counts {
        margin: 0 auto;
    }

    .about {
        height: auto;
    }

    .about-bottom {
        width: 90%;
    }

    .about2 {
        width: 100%;
    }

    .about-svg {
        width: 100%;
        height: auto;
    }

    .about-img {
        height: 450px;
    }

    .mission-text {
        height: auto !important;
    }

    .about-count {
        background-color: #f7f7f7;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .about-counts {
        width: 90%;
    }

    .count-item {
        width: 48%;
    }

    .features-line1 {
        display: flex;
    }

    .vision {
        margin-top: 30px;
        width: 90%;
    }

    .vision-box {
        height: auto !important;
    }

    .vision-img {
        height: 54vw !important;
        width: 100%;
    }

    .vision-imgs img {
        width: 100%;
        height: 50vw;
    }

    .vision-imgs:first-child {
        width: 50%;
    }

    .vision-imgs:last-child {
        width: 50%;
        display: flex;
    }

    .vision-text {
        width: 100%;
    }

    .get-line::after {
        margin: 0 21px;
    }

    /*-----------------blog page---------*/

    .blog-contain {
        width: 93%;
    }

    .search1 {
        width: 100%;
    }

    .blog-side {
        width: 50%;
    }

    /*----------------subblog page---------------*/

    .head-text {
        margin: 10px auto !important;
    }

    .subcontain {
        width: 85%;
    }

    .subtext h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .subblog-slider {
        flex-direction: column;
    }

    .sub-slides {
        width: 100%;
        height: 420px;
        margin-bottom: 20px;
    }

    /*----------------contact page---------------*/

    .contacts-img {
        height: 56vw;
    }

    .contacts-time p:last-child {
        padding-right: 8px;
    }

    .contcts1 {
        margin: auto;
        width: 100%;
    }

    .contacts2 {
        width: 100%;
    }

    .contacts-texts {
        padding: 0px;
    }

    .option {
        flex-direction: column;
    }

    .options {
        width: 420px;
        height: 600px;
        margin: 20px auto;
    }

    .options-top {
        height: 260px;
    }

    .option-list li,
    .option-head {
        width: 378px;
    }

    .option-button {
        height: 115px;
    }

    /*---------------gallery page---------------*/

    .container-gallery {
        width: 100%;
    }

    .container-gallery1 {
        margin-bottom: 50px;
    }

    .project-gallery1 {
        width: 240px;
        height: 200px;
    }

}

@media screen and (max-width:680px) {

    .sliders-container {
        height: 310px;
    }
}



@media screen and (max-width:600px) {

    .sliders-container {
        height: 350px;
    }

    .container-project {
        width: 90%;
    }

    .features-item {
        width: 48%;
        height: 270px;
    }

    .project-top {
        width: 100%;
    }

    .project-gallery {
        height: 200px !important;
        width: 49%;
    }

    .expert-img {
        height: 250px;
    }

    /*---------------gallery page-------------------*/

    .project-gallery1 {
        height: 200px !important;
        width: 49%;
    }

    /*---------------about page-------------------*/
    .about-header {
        height: 450px;
    }

    .count-item {
        width: 100%;
    }

    /*---------------subblog page-------------------*/

    .subsvg {
        flex-direction: column;
        align-items: flex-start;
    }

    .subsvg1 {
        flex-direction: row;
        margin-top: 10px;
        align-items: center;
        display: flex;
    }

    /*---------------blog page-------------------*/

    .blog-side {
        width: 100%;
    }

    /*---------------contact page-------------------*/

    .contacts-img {
        height: 55vw !important;
    }

    .contcts1 {
        margin: auto;
    }

    .contacts2 {
        width: 100%;
    }

    .contact-item {
        height: auto;
        width: 100% !important;
    }

    .contacts-texts {
        padding: 0px;
    }

    .contacts-box {
        width: 100%;
    }

    .contacts-boxs {
        width: 95%;
        padding: 70px 20px;
    }

    .contacts-texts h3 {
        font-size: 25px;
    }
}


@media screen and (max-width:560px) {

    .sliders-container {
        height: 380px;
    }

    .client-title {
        padding-top: 15px;
    }

    .client-container {
        justify-content: center;
    }

    .client-right {
        display: flex;
        justify-content: center;
    }

    .client-text {
        padding-right: 0px;
    }

    .client-box {
        height: 500px;
    }

    .client-top1 h3 {
        padding: 0 0 0 !important;
    }

    /*---------------gallery page---------------*/

    .project-gallery1 {
        width: 231px;
    }

    .project-gallery1:last-child {
        margin-bottom: 50px;
    }

    /*---------------contact page---------------*/

    .menu-item ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 32px;
    }
}

@media screen and (max-width:468px) {
    .container {
        width: 90%;
        margin: 50px auto;
    }

    .header-main-support {
        padding: 0px;
        flex-direction: row;
        align-items: center;
        height: 40px;
    }

    .header-main-support-item {
        display: inline;
        font-size: 12px;
        letter-spacing: .5px;
    }

    .header-main-container {
        margin-top: 0px !important;
    }

    .header-main-support-item span:first-child {
        display: none;
    }

    .header-main-support-item span:last-child {
        border-right: none;
    }

    .header-main-support-item svg {
        width: 20px;
        height: 20px;
    }

    .header-menu {
        margin-top: 0px !important;
        flex-direction: row;
        height: 40px;
    }

    .menu{
        height: 85px;
    }

    .prev-btn {
        right: 20px;
    }

    .next-btn {
        left: 0px;
    }

    .fe {
        flex-wrap: nowrap;
    }

    .services-item {
        height: 200px;
    }

    .swiper-pagination {
        margin-top: 40px;
    }

    .container-blog {
        width: 95% !important;
    }

    .Education-item:last-child {
        margin-bottom: 0px;
    }

    .Education-img img {
        height: 250px;
    }

    .blog-line {
        width: 60px;
    }

    .about {
        height: auto;
    }

    .about-img {
        margin-bottom: 0px;
        height: 80vw !important;
    }

    .about-text {
        width: 90%;
        margin: 50px auto;
    }

    .title {
        padding-bottom: 0px;
    }

    .title-h2 {
        padding: 0px 0 0px 15px;
         font-size: 26px;
    }


    .title-p {
        font-weight: 200 !important;
    }

    .items p {
        font-weight: 200;
    }

    .header-text p {
        font-weight: 200;
    }

    .sliders-container {
        height: 450px;
    }

    .about-title {
        margin: 0px;
    }

    .about-text p {
        padding-left: 0px;
    }

    .cate li {
        margin-left: 0;
    }

    .title span {
        font-size: 26px;
    }

    .title span::before{
        left: -120px;
    }

    .title-r {
        text-align: right !important;
        width: 30%;
    }

    .Education-icon {
        margin: -45px 230px 0 0;
    }

    .Education-more::before {
        width: 95px;
        height: 2px;
    }

    .Education-item:hover .Education-more::before {
        width: calc(100% - 160px);
    }

    .Education-item:hover .Education-more-a {

        transform: translateX(-80%);
    }

    .about-dot-box {
        display: flex;
        flex-direction: column;
        align-items: anchor-center;
        text-align: center;
    }

    .about-dot-box li {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid #ccc;
    }

    .contact {
        margin-bottom: 20px;
    }

    .container-project {
        width: 94%;
    }

    .project-gallery {
        height: 250px;
        margin-top: 10px;
    }

    .client-frame{
        width: 93%;
    }

    .client-title {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .client-container {
        justify-content: center;
    }

    .client-right {
        display: flex;
        justify-content: center;
    }

    .client-text {
        padding-right: 0px;
        margin: 50px auto;
    }

    .client-box {
        height: 514px;
    }

    .client-top1 h3 {
        padding: 0 0 0 !important;
    }

    .features {
        width: 90%;
    }

    .features-item {
        width: 100%;
    }

    .title {
        width: 90%;
    }

    .features-box {
        margin-top: 40px;
    }

    .features-item {
        height: auto;
    }

    .features-items1 {
        width: 90% !important;
    }

    .features-line {
        display: none;
    }

    .items h3 {
        padding: 30px 0 30px;
    }

    .item p {
        padding-bottom: 55px;
    }

    .expert {
        width: 90%;
    }

    .expert-item {
        width: 100%;
    }

    .expert-img {
        height: 350px;
    }

    .ourclient-top {
        width: 100%;
    }

    .clients-item img{
        height: 90%;
    }

    .ourclient-top p {
        padding: 0px !important;
    }

    .expert-box {
        margin-bottom: 30px;
    }

    .title span::before {
        left: -120px;
    }

    .title span::after {
        right: -120px;
    }

    .container-gallery {
        width: 93%;
    }

    .features-item1 {
        display: none;
    }

    .features-item1.active {
        display: flex;
    }

    .foot p{
        font-size: 14px !important;
    }

    /*-----------------blog page---------*/

    .blog-contain {
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blog-item1 {
        width: 100%;
        height: auto;
    }

    .blog-imgs {
        width: 100%;
        height: 220px;
    }

    .blog-video {
        width: 100%;
        height: 220px;
    }

    .blog-bg {
        display: none;
    }

    .blog-bgm {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .blog-icons1 {
        display: flex;
        flex-direction: column;
        padding-right: 10px;
    }

    .blog-icons1 span:nth-child(1) {
        padding: 0px 3px;
    }

    .blog-icons1 span {
        padding-bottom: 10px !important;
        display: flex;
    }

    .blog-items1 {
        width: 100%;
    }

    .blog-items1 {
        margin-right: 5px;
    }

    .blog-items1 p {
        line-height: 30px;
        font-size: 15px;
        padding-bottom: 10px;
    }

    .blog-items1 h3 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .blog-items1 h3 a {
        font-size: 18px;
    }

    .blog-items1 a {
        text-align: left;
        color: #000;
        font-weight: 600;
        font-size: 15px;
        width: 96%;
    }

    .blog-text1 {
        padding-top: 18px;
        padding-left: 15px;
    }

    .blog-side {
        width: 100%;
    }

    .search {
        width: 220px;
        margin-top: 50px;
    }

    .recent-item {
        font-size: 14px;
    }

    /*-----------about page--------*/

    .header-text h6 {
        font-size: 19px;
        line-height: 32px;
        font-weight: bold;
    }

    .container-top {
        margin-bottom: 0px;
    }

    .about-container {
        margin: 50px auto;
        width: 90%;
    }

    .about-container1 {
        width: 90%;
    }

    .sliders-container1 {
        height: 340px !important;
        margin-bottom: 20px
    }

    .about-header {
        height: 420px;
    }

    .about-item {
        height: 190px;
        width: 100% !important;
    }

    .about-count {
        width: 100%;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .about-counts {
        width: 90%;
        margin: 0px auto;
    }

    .vision {
        width: 90%;
    }

    .vision-img {
        height: 97vw !important;
    }

    .vision-img {
        height: 400px !important;
        width: 100%;
    }

    .vision-imgs img {
        width: 100%;
        height: 400px;
    }

    .vision-imgs:first-child {
        display: none;
    }

    .vision-imgs:last-child {
        width: 100%;
        display: flex;
        justify-content: right;
        margin-bottom: 30px;
    }

    .vision-imgs:last-child {
        left: 0px !important;
        top: 0px;
    }

    .mission {
        height: auto;
    }

    .get-line::after {
        margin: 0 18px;
    }

    .vision-box {
        height: auto !important;
    }

    .title-r {
        width: 100px;
    }

    .about1 {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .about2 {
        width: 100% !important;
    }

    /*----------------contact page---------------*/

    .contacts2 {
        width: 95%;
    }

    .contact-item {
        height: auto;
        width: 100% !important;
    }

    .contacts-texts {
        padding: 0px;
    }

    .contacts-box {
        width: 100%;
        flex-direction: column-reverse;
        display: flex;
    }

    .contacts-box1 {
        flex-direction: column;
        display: flex;
    }

    .subcontain {
        width: 90%;
    }

    .contcts1 {
        width: 100% !important;
        height: auto;
        margin: 0 auto;
    }

    .contain-option {
        width: 92%;
    }

    .options {
        width: 100%;
        height: 600px;
        margin: 20px auto;
    }

    .options-top {
        height: 260px;
    }

    .option-list li,
    .option-head {
        width: 90%;
    }

    .option-button {
        height: 115px;
    }

    .contacts-line1::after {
        width: 70px;
    }

    .mapboxgl-map {
        height: 515px;
    }

    /*----------------newgallery page---------------*/

    .newcontain {
        width: 100% !important;
    }

    .container-gallery1 {
        width: 95%;
    }

    .side-gallery {
        width: 95% !important;
    }


    /*----------------gallery page---------------*/

    .gallery-contain {
        width: 100%;
    }

    .project-gallery {
        width: 100%;
        height: 280px !important;
    }

    .project-gallery1 {
        width: 100%;
        height: 280px !important;
    }

    .side-gallery {
        width: 95% !important;
    }

    /*----------------subblog page---------------*/

    .subblog {
        height: 280px;
        margin-bottom: 0px;
    }

    .subtext {
        display: none;
    }

    .subtext1 {
        display: flex;
        padding: 20px 10px 20px;
    }

    .subsvgs {
        flex-direction: column;
        align-items: flex-start;
    }

    .sub-slides {
        width: 100%;
        height: 290px;
    }
}

@media screen and (max-width:390px) {

    /*----------------about page---------------*/

    .sliders-container {
        height: 480px;
    }


    /*----------------about page---------------*/

    .sliders-container1 {
        height: 380px !important;
    }

    /*----------------gallery page---------------*/

    .project-gallery1 {
        width: 100%;
        height: 250px !important;
    }
}

@media screen and (max-width:360px) {

    .Education-img img {
        height: 220px;
    }

    .Educationicon {
        margin: -45 160px 0 0;
    }

    .Education-item:hover .Education-more-a {
        transform: translateX(-50%);
    }

    /* .title span::before,
    .title span::after {
        width: 50px;
    } */

    .Education-more::before {
        width: 85px;
    }
}