html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: #2C2C2C;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.bold {
    font-weight: bold;
}

.text-gray {
    color: #999999;
}

.site-header {
    position: relative;
}

.navbar {
    background-color: rgba(0, 0, 0, 0) !important;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: all 300ms ease;
}

.navbar.scrolled {
    background: transparent linear-gradient(94deg, #219BA9 0%, #1D7D88 100%);
}

.navbar-brand {
    padding: 1rem 0;
    transition: all 300ms ease;
}

.navbar.scrolled .navbar-brand {
    padding: 4px 0;
}

.navbar-expand-lg .navbar-nav {
    margin-left: auto;
}

.navbar-toggler {
    border: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: unset;
}

/* ssssssssss nav toggler start  sssssssssssss*/

.navbar-toggler {
    position: relative;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;

}

.navbar-toggler span,
.navbar-toggler span:before,
.navbar-toggler span:after {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 24px;
    background: #ffffff;
}

.navbar-toggler span {
    padding: 0;
    transition: all 0.3s linear;
    background: transparent;
    position: relative !important;
}

.navbar-toggler span:before,
.navbar-toggler span:after {
    content: '';
    right: 0;
    left: 0;
    transform-origin: 50% 50%;
    transition: all 0.3s linear;
}

.navbar-toggler span:before {

    transform: rotate(45deg);
}

.navbar-toggler span:after {
    transform: rotate(-45deg);
}

.navbar-toggler span:before {
    top: 0;
}

.navbar-toggler span:after {
    top: 0;
}

.navbar-toggler.collapsed span {
    background: #ffffff;
}

.navbar-toggler.collapsed span:before,
.navbar-toggler.collapsed span:after {
    transform: none;
}

.navbar-toggler.collapsed span:before {
    top: -9px;
}

.navbar-toggler.collapsed span:after {
    top: 9px;
}

/* eeeeeee nav toggler end  eeeeeee */


.btnstyle1 {
    border: 1px solid #fff;
    color: #fff;
    padding: .6875rem 2.25rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    transition: 450ms all ease;
}


.btnstyle5 {
    border: 1px solid #515189;
    color: #515189;
    padding: .6875rem 2.25rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    transition: 450ms all ease;
}

.btnstyle2 {
    border: 1px solid transparent;
    color: #111111;
    padding: .6875rem 2.25rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    transition: 450ms all ease;
}

.btnstyle4 {
    border: 1px solid transparent;
    color: #FFFFFF;
    padding: .6875rem 2.25rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    transition: 450ms all ease;
}

.btnstyle3 {
    border: 1px solid #1B1B1B;
    color: #1B1B1B;
    padding: .6875rem 2.25rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    transition: 450ms all ease;
}


.navbar .btnstyle1 {
    font-size: 15px;
    font-weight: 500;
}

.navbar .nav-item {
    margin-right: 1rem;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    height: 1px;
    left: 8px;
    right: 8px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 350ms ease-in-out;
    transform: scaleX(0);
}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}


.navbar .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.hov2,
.hov1 {
    position: relative;
    overflow: hidden;
}

.hov2>span,
.hov1>span {
    z-index: 4 !important;
    position: relative;
}

.hov1::after {
    content: "";
    position: absolute;
    display: block;
    height: 5%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    transition: 450ms all ease;
}

.btnstyle3.hov1::after {
    background-color: #1B1B1B !important;
}

.btnstyle5.hov1::after {
    background-color: #515189 !important;
}

.hov2::after {
    content: "";
    position: absolute;
    display: block;
    height: 220%;
    width: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    background-color: #fff;
    opacity: 1;
    z-index: 1;
    transition: 450ms all ease;
}


.btnstyle4.hov2::after {
    background-color: #515189;
}


.hov1:hover::after {
    width: 120%;
    height: 220%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(15deg);
}

.hov2:hover::after {
    height: 5%;
    width: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(60deg);
}

.hov1:hover {
    color: #111111 !important;
    border-color: transparent;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.37);
}

.btnstyle3.hov1:hover {
    color: #fff !important;
    border-color: transparent;
    box-shadow: unset;
}

.btnstyle5.hov1:hover {
    color: #fff !important;
    border-color: transparent;
    box-shadow: unset;
}

.btnstyle2.hov2:hover {
    color: #fff !important;
    border-color: #fff;
}

.btnstyle4.hov2:hover {
    color: #515189 !important;
    border-color: #515189;
}

.banner .swiper-slide {
    position: relative;
    height: 100vh;
    min-height: 45vw;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner .swiper-slide .lay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .86;
    /* background: rgb(17, 17, 17); */
    z-index: 2;
    /* background: linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(51, 51, 51, 0.71) 50%, rgba(96, 96, 96, 0) 100%); */
    background-image: url(../pic/overlay.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner .swiper-slide .content-wr {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    overflow: hidden;
}

.banner .swiper-slide .content-wr .container {
    overflow: hidden;
}

.banner .swiper-slide .text-wr {
    color: #fff;
    overflow: hidden;
    perspective: 600px;
    perspective-origin: left;
}

.banner .swiper-slide .text-wr h1 {
    font-size: 54px;
    font-weight: bold;
    line-height: 64px;
    padding: .5rem 0;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    transform: translateX(-110%) translateZ(-1000px);
    transform-origin: left;
    opacity: 0;
}

.banner .swiper-slide-active .text-wr h1 {
    transform: translatey(0%) translateZ(0px);
    transition: transform 1.5s ease-out .2s, opacity 1.4s ease-out .6s;
    opacity: 1;
}

.banner .swiper-slide .text-wr .text {
    transform-style: preserve-3d;
    transform: translateY(-110%);
    opacity: 0;

}


.banner .swiper-slide-active .text-wr .text {
    transform: translateY(0%);
    opacity: 1;
    transition: all .7s ease-in-out 1.4s;
}

.banner .swiper-slide .text-wr p {
    font-size: 18px;
    line-height: 28px;
    max-width: 512px;
    margin-bottom: 0;
}

.banner .swiper-slide .text-wr p {
    transform-style: preserve-3d;
    transform: translateY(110%);
    opacity: 0;
}


.banner .swiper-slide-active .text-wr p {
    transform: translateY(0%);
    opacity: 1;
    transition: all .7s ease-in-out 1.4s;
}


.banner .swiper-slide .btns-wr {
    padding-top: 40px;
}

.banner .swiper-slide .btns-wr .btn {
    line-height: 26px;
    box-shadow: 0 !important;
    font-size: 17px;
    font-weight: 500 !important;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 174px;
}

.banner .swiper-slide .btns-wr .trans-wr {
    display: inline-block;
    transform-origin: bottom center;
    transform-style: preserve-3d;
    transition: tranform 500ms ease-in-out;
    transform: perspective(400px) rotateX(-90deg);
    opacity: 0;
}

.banner .swiper-slide-active .btns-wr .trans-wr {
    transform: perspective(400px) rotateX(0deg) !important;
    transition: all 500ms ease-in-out 2s;
    transform-origin: top center;
    opacity: 1;
}

.banner .swiper-slide-active .btns-wr .trans-wr:nth-child(2) {
    transition-delay: 2.2s;
}

.banner .swiper-slide .btns-wr .btnstyle2 {
    margin-right: 1.5rem;
}

.banner .swiper-slide .btns-wr .btn:hover {
    box-shadow: none !important;
}

.sw-btns-cont {
    position: relative;
}

.sw-prev1,
.sw-next1 {
    top: auto;
    bottom: 50px;
    margin-top: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    padding: .5rem;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
}

.sw-next1 {
    right: 0;
}

.sw-prev1 {
    left: auto;
    right: 54px;
}

.sw-prev1::after,
.sw-next1::after {
    font-size: 14px;
    font-weight: 600;
}

/* about sec */
.about-sec {
    padding-top: 6rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.img-wr.phov1 {
    overflow: hidden;
    box-shadow: 30px 30px #219BA9;
    transition: all .4s ease;
    margin-right: 1.5rem;
    height: 100%;
}



.img-wr.phov1 img {
    transition: all .4s ease;
    width: 100%;
    height: 100%;
}


.about-cont {
    max-width: 500px;
    margin-right: auto;
}

.about-cont h2 {
    color: #2C2C2C;
    font-weight: 800;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 1rem;
    padding-top: 2.25rem;
}

.about-cont p {
    color: #999999;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 1.5rem;
}

.about-cont .item {
    color: #999999;
    line-height: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-cont .item img {
    margin-right: 1rem;
    max-width: 2rem;
    max-height: 2rem;
}

.about-cont .about-bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #0000001A;
    margin-top: 2rem;
    width: 100%;
    overflow: hidden;
}

.about-cont .about-bottom img {
    max-width: 33.3333% !important;
}

/* serv sec */

.serv-sec {
    background-color: #FBFBFB;
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;

}

.serv-sec::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 130px;
    height: 152px;
    top: 51px;
    right: 0;
    background-image: url(../pic/secbe.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}


.serv-sec::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 148px;
    height: 81px;
    bottom: 0;
    left: 0;
    background-image: url(../pic/secaf.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.serv-sec .container {
    position: relative;
    z-index: 2;
}

.serv-sec .sec-title {
    text-align: center;
    margin-bottom: 3.75rem;
}

.serv-sec .sec-title .bold {
    color: #39396D;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: .75rem;
}

.work-sec .sec-title p,
.serv-sec .sec-title p {
    max-width: 460px;
    margin: auto;
    text-align: center;
    margin-bottom: 0;
}



.serv-card {
    padding: 1.5rem;
    padding-top: 86px;
}


.serv-card img {
    margin-bottom: 2rem;
}

.serv-card .title {
    color: #1B1B1B;
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 22px;
    line-height: 55px;
}

.serv-card p {
    max-width: 290px;
    line-height: 26px;
}

/* work sec */

.work-sec {
    padding: 6.625rem 0;
    background-image: url(../pic/secbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.work-sec .sec-title {
    text-align: center;
    margin-bottom: 3rem;
}


.work-sec .sec-title .bold {
    color: #1B1B1B;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: .75rem;
}

.tabs-style {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tabs-style .tab-content {
    width: 100% !important;
    padding-top: 3.75rem;
}

.tabs-style .nav-pills {
    border-top: 1px solid #0000001A;
    padding-top: 1rem;
    margin-top: 1rem;
}

.tabs-style .nav-link {
    background-color: transparent !important;
    outline: 0 !important;
    border: 0 !important;
    color: #999999 !important;
    font-weight: bold;
}

.tabs-style .nav-link.active {
    color: #2B2D33 !important;
}


.work-col .long-wr {
    height: 50%;
    padding-bottom: 2rem;
}

.work-col .short-wr {
    height: 25%;
    padding-bottom: 2rem;
}

.work-col.last-col>.wr {
    height: 50%;
}

.work-col .wr .short-wr {
    height: 50%;
    padding-bottom: 2rem;
}

.work-card {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.work-card .card-info {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.88);
    color: #fff;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 500;
    transition: all .4s ease;
    transform: translateY(110%);
}


.projects-row .card-link {
    display: flex;
    width: 100%;
    align-items: center;
    padding-bottom: 10px;
    margin: 0;
}

.projects-row .card-link:hover .card-info {
    transform: translateY(0);
}


.work-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.more-btn-wr {
    text-align: center;
    padding-top: 1rem;
}

.more-btn-wr .btn {
    width: 170px;
}

/* news sec */

.news-sec {
    background-color: #F2F2F2;
    padding: 6.25rem 0;
}

.news-sec .sec-title {
    margin-bottom: 2.75rem;
}

.news-sec .sec-title .bold {
    color: #39396D;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.news-sec .sec-title p {
    padding-top: 1.5rem;
    border-top: 1px solid #0000001A;
    max-width: 490px;
}

.news-slider {
    padding-bottom: 4rem;
}


.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1B1B1B;
}

.news-card {
    display: flex;
    align-items: center;
}

.news-card .text-side {
    width: 50%;
    position: relative;
    z-index: 5;
}

.news-card .pic-side {
    width: 50%;
    position: relative;
    z-index: 0;
}

.news-card .pic-side img {
    width: 120%;
    max-width: unset;
    margin-left: -20%;
}

.news-card .text-cont {
    background-color: #fff;
    border-left: 2px solid #1B1B1B;
    padding: 45px 40px;
}

.news-card .text-cont .lable {
    background-color: #1B1B1B;
    padding: 4px 14px;
    line-height: 30px;
    font-size: 13px;
    color: #fff;
}

.news-card .text-cont .bold {
    color: #1B1B1B;
    font-size: 30px;
    line-height: 38px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px 0;
    font-weight: 600 !important;
    max-width: 445px;
}

.news-card .text-cont p {
    line-height: 30px;
    margin-bottom: 0;
    max-width: 445px;
    height: 90px;
    overflow: hidden;
}

.news-card .text-cont .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #0000001A;
}

.news-card .text-cont .bottom a {
    color: #1B1B1B;
}

.news-card .text-cont .bottom a:hover {
    color: #39396D;
}

.news-card .text-cont .bottom .date {
    font-size: 14px;
    color: #999999;
}

/* clints sec */
.clints-sec {
    padding-bottom: 6.25rem;

}

.clints-sec .sec-bg-wr {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    background-image: url(../pic/sec-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-attachment: fixed;
}

.speech-slider .swiper-slide {
    background-color: #1B1B1B;
    height: 100%;
    padding: 2rem;
    border: 1px solid #707070;
}

.need-card {
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
}

.need-card h3 {
    color: #1B1B1B;
    font-weight: bold;
    font-size: 27px;
    line-height: 40px;
    margin-bottom: 2rem;
    width: 100%;
}

.need-card .btnstyle3 {
    height: 50px;
    width: 174px;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
}

.speech-card {
    color: #fff;
    padding: 0;
    font-weight: 300;
}

.speech-card .inner {
    padding: 1rem;
    width: 100%;
    height: 100%;
}

.speech-card .inner p {
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 3.5rem;
    line-height: 30px;
    border-left: 2px solid #FFFFFF;
}

.speech-card .inner .d-flex {
    justify-content: space-between;
    align-items: center;
}

.speech-card .inner .d-flex .person {
    display: flex;
    align-items: center;
}

.speech-card .inner .d-flex .person img {
    margin-right: 1rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.speech-card .inner .d-flex .person .dis {
    color: #999999;
    font-size: 14px;
}


.clints-sec .sec-title {
    margin-bottom: 2.75rem;
    margin-top: 50px;
}

.clints-sec .sec-title .bold {
    color: #39396D;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.clints-sec .sec-title p {
    padding-top: 1.5rem;
    border-top: 1px solid #0000001A;
    max-width: 490px;
}

.clints-slider {
    padding-bottom: 4.375rem;
}

.clint-card {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    padding: 18px 8px;
    width: 100%;
    margin-bottom: 18px;
}

.clint-card img {
    max-height: 100%;
    width: 100%;
}



.clints-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #219BA9;
}

.clints-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #219BA9;
}

/* contact sec */
.contact-sec {
    padding-bottom: 6.25rem;
}

.contact-sec .sec-title {
    margin-bottom: 2.75rem;
    padding-top: 1rem;
}

.contact-sec .sec-title .bold {
    color: #39396D;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.contact-sec .sec-title p {
    padding-top: 1.5rem;
    border-top: 1px solid #0000001A;
    max-width: 490px;
}

.form-style {
    padding-right: 2rem;
}

.form-style .form-control {
    border: 1px solid #E8E8E8;
    border-radius: 0;
    margin-bottom: 1rem;
    font-size: 14px;
}

.form-style select.form-control,
.form-style input.form-control {
    height: 53px;
}

.form-style select.form-control {
    color: #999999;
}

.form-style .btnstyle4 {
    width: 170px;
    height: 48px;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
}

.form-style .btnstyle4 svg {
    transition: transform .4s ease;

}

.form-style .btnstyle4:hover svg {
    transform: translateX(5px);
}

.form-style ::placeholder {
    color: #999999;
    font-size: 14px;
}

/* footer */
footer {
    background-image: url(../pic/foobg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    padding-top: 50px;
}

footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .85;
}

footer .container {
    position: relative;
    z-index: 10;
}

.mail-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3.25rem;
    border-bottom: 1px solid #FFFFFF4D;
}

footer .row .col-lg-4 {
    padding-top: 2rem;
}

.mail-sub .text .bold {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 6px;
}

.mail-sub .text p {
    color: #999999;
    margin-bottom: 0;
}

.mail-sub form {
    flex-grow: 1;
    max-width: 490px;
    margin-left: 2rem;
}

.mail-sub .inp-wr {
    display: flex;
    align-items: center;
    width: 100%;
    flex-grow: 1;
}

.mail-sub .inp-wr .btnstyle2 {
    width: 168px !important;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 0 27px 27px 0;
    height: 54px;
    font-family: 'Jost', sans-serif;
    line-height: 34px;
    border: 1px solid #FFFFFF66;
    border-left: 0 !important;
}

.mail-sub .inp-wr .btnstyle2:hover {
    background-color: #1B1B1B;
}

.mail-sub .inp-wr input {
    height: 54px;
    border-radius: 27px 0 0 27px;
    background-color: transparent;
    border: 1px solid #FFFFFF66;
    border-right: 0 !important;
    flex-grow: 1;
}

footer .logo-col p {
    color: #999999;
    line-height: 26px;
    margin-top: 25px;
}

footer .list-col {
    padding-left: 45px;
    padding-right: 45px;
    border-left: 1px solid #FFFFFF66;
    border-right: 1px solid #FFFFFF66;
}

footer .f-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 10px;
}

footer .f-list .item a {
    color: #999999;
    margin-bottom: .75rem;
    display: flex;
    position: relative;
    padding-left: 18px;
    align-items: center;
    transition: all .3s ease;
}

footer .f-list .item a:hover {
    color: #fff;
    transform: translateX(5px);
}

footer .f-list .item a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
}

footer .contact-col {
    padding-left: 45px;
}

.contact-col .address {
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 14px;
}

.contact-col .d-flex {
    align-items: center;
    font-size: 14px;
    color: #999999;
}

.contact-col .d-flex .item {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}

.contact-col .d-flex .item img {
    margin-right: .5rem;
}

.contact-col .d-flex .item:nth-child(2) {
    margin-left: 2rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #FFFFFF66;
    color: #999999;
}

.footer-bottom .copy {
    font-weight: 500;
}

.footer-bottom .icons {
    display: flex;
    align-items: center;
}

.footer-bottom .icons a {
    margin-left: 16px;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.footer-bottom .icons a:hover {
    color: #3f3f3fee;
    background-color: #ffffff;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #515189ad !important;
}

/* ============== work page====================== */
.inner-banner {
    width: 100%;
    height: 36vw;
    position: relative;
    max-height: 580px;
    min-height: 450px;
    padding-top: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .65;
    z-index: 2;
}

.inner-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 5;
    color: #fff;
}

.inner-banner .container .page-title {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 50px;
}

.inner-banner .container p {
    max-width: 460px;
    padding-top: 20px;
    border-top: 1px solid #fff;
    line-height: 30px;
}

.nav-pills.no-border {
    border-top: 0;
}

/* ============ about page ======================== */
.inner-page .about-sec {
    background-color: #F2F2F2;
    margin-bottom: 1rem;
}

.vision-sec {
    padding-top: 6.25rem;
    padding-bottom: 8.25rem;
}

.vision-sec .text-card {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}

.vision-sec .text-card .bold {
    color: #2C2C2C;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 20px;
}


.vision-sec .text-card p {
    color: #999999;
    font-size: 17px;
    line-height: 50px;
    line-height: 34px;
}

.ph-outer {
    width: 100%;
    height: 100%;
    padding-right: 30px;
    padding-bottom: 30px;
}

.vi-row .img-wr.phov1 {
    box-shadow: 30px 30px #515189;
}

/* news page */
.col-12>.news-card {
    width: 100%;
    margin-bottom: 6rem;
}

.news-card.revers .pic-side img {
    width: 120%;
    max-width: unset;
    margin-right: -20%;
    margin-left: 0;
}

.inner-page .news-sec {
    padding-top: 60px;
}

.inner-page .news-sec .tabs-style .nav-pills {
    padding-top: 0;
    margin-top: 0;
}

.pagination-wr .page-link {
    background-color: transparent;
    border: transparent;
    color: #999999;
    font-size: 26px;
    padding: 6px;
    width: 46px;
    height: 46px;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 50% !important;
}

.pagination-wr .page-link span svg {
    height: 26px;
}

.pagination-wr .page-item.active .page-link {
    background-color: #444444;
    color: #fff;
}

.page-link:focus {
    box-shadow: 0 0 0 0.1rem rgb(30 131 143 / 20%);
}

/* blog page */
.inner-banner .container .page-title {
    max-width: 616px;
}

.inner-banner .container .breadcrumb {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #999999;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
}

.breadcrumb-item a {
    color: #999999;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

.breadcrumb-item:last-child {
    color: #fff;
}

.blog-img-wr img {
    width: 100%;
}

.blog-sec {
    padding: 6.25rem 0;
}

.blog-sec .blog-text {
    padding-top: 2.5rem;
    color: #333333;
    line-height: 34px;
    font-size: 17px;
}

/* contact page */
.inner-contact-sec {
    padding: 7rem 0;
    background-image: url(../pic/sec-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.form-wr {
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.form-style.v2 {
    padding: 38px 22px;
    background-color: #F2F2F2;
    box-shadow: 2rem 2rem #219BA9;

}

.form-style .form-title {
    color: #39396D;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 900;
}

.form-style.v2 textarea {
    height: 160px;
}


.contact-info .title {
    color: #39396D;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 900;
}

.contact-info p {
    color: #999999;
    line-height: 30px;
}

.contact-info .place {
    margin-top: 40px;
}


.contact-info .place .bold {
    color: #1B1B1B;
    font-size: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 30px;
}

.contact-info .place .bold i {
    font-size: 1.5rem;
}

.contact-info .place .bold span {
    padding-left: 1rem;
}

.contact-info .place .item {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.contact-info .place .item .i-wr {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(33, 155, 169, 0.15);
    color: #219BA9;
    margin-right: 1rem;
}

.contact-info .place .item .i-wr svg {
    height: 25px;
}

.contact-info .place .item .lbl {
    color: #1B1B1B;
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
}

.contact-info .place .item .val {
    color: #444444;
    font-size: 14px;
    line-height: 2;
}

/* ======= get quote ================= */

.inner-page .contact-sec {
    padding: 7rem 0;
}

.custom-file,
.custom-file-input,
.custom-file-label {
    height: 53px;
}

.custom-file {
    margin-bottom: 1rem;
}

.custom-file-label {
    color: #999999;
    line-height: 41px;
}

.custom-file-label::after {
    height: 53px;
    padding: 5px 16px;
    color: #495057;
    content: "Browse";
    background-color: #5151890c;
    border-left: inherit;
    border-radius: 0;
    line-height: 43px;
}

.custom-file-input:focus~.custom-file-label {
    box-shadow: none !important;
    border-color: #515189ad !important;
}

/* ================= project page ====================== */

.inner-banner.case-v .lable {
    background-color: #fff;
    color: #3E4243;
    padding: .5rem .75rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    display: inline-flex;
}

.inner-banner.case-v .page-title {
    font-size: 2rem;
}

.case-sec {
    padding: 6.25rem 0;
}

.sec-top-wr {
    padding-right: 96px;
    position: relative;
}

.sec-top-wr .pic-wr img,
.sec-top-wr .pic-wr {
    width: 100%;
}

.case-icons {
    position: absolute;
    right: 0;
    top: 0;
    width: 96px;
    height: fit-content;
}

.case-icons .soc-item {
    margin-bottom: 1.5rem;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-wrap: wrap;
}

.case-icons .soc-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1B1B1B;
    color: #fff !important;
    font-size: 23px;
    transition: transform 200ms ease;
}

.case-icons .soc-item a svg {
    height: 23px;
}

.case-icons .soc-item .text {
    color: #999999;
    font-size: 12px;
    margin-top: 6px;
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.case-icons .soc-item a:hover {
    transform: scale(.95);
}

.sec-top-wr .abs-btn {
    position: absolute;
    width: 92px;
    z-index: 50;
    top: 1rem;
    left: 1rem;
    padding: 5px 10px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 17px;
    opacity: 1;
    background-color: #fff;
    color: #1B1B1B;
    text-align: center;
}

.case-icons .btn-wr {
    width: 100%;
    padding-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.case-icons .btn-wr .btn {
    margin-left: -10px;
    margin-top: -5px;
    color: #2C2C2C;
}

.case-icons .btn-wr .btn:hover {
    color: #cccccc;
}

.case-icons .btn-wr .btn svg {
    height: 22px;
}

.tools-cont {
    padding-top: 6rem;
}

.tools-cont .bold {
    color: #3E4243;
    font-size: 22px;
    margin-bottom: 20px;
}

.tools-cont p {
    color: #999999;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 2;
    max-width: 687px;
    margin-left: auto;
    margin-right: auto;
}

.tools-cont .tools-wr {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tools-cont .tools-wr .tech-card {
    padding: 1rem;
    height: 90px;
    max-width: 214px;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tools-cont .tools-wr .tech-card img {
    max-height: 100%;
}

.container.speech {
    text-align: center;
    margin-top: 20px;
}

.container.speech p {
    color: #3E4243;
    font-size: 20px;
    font-weight: 500;
    line-height: 2.5;
    padding-top: 2.5rem;
    max-width: 964px;
    margin: auto;
}

.container.speech .person {
    color: #747983;
    font-size: 18px;
    font-weight: 500;
    margin-top: 3rem;
    position: relative;
    padding-left: 2.25rem;
    display: inline-flex;
    align-items: center;
}

.container.speech .person::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 2px;
    background-color: #959BA7;
    transform: translateY(50%);
}

.next-prev-wr .go-card {
    border: 1px solid #0000001A;
    border-radius: 6px;
    padding: 18px;
    display: flex;
    align-items: center;
}

.next-prev-wr {
    justify-content: center;
    margin-top: 6rem;
}

.next-prev-wr .go-card .img-wr {
    width: 35%;
}

.next-prev-wr .go-card .img-wr img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.next-prev-wr .go-card .info {
    padding-left: 1rem;
}

.next-prev-wr .go-card .info .lbl {
    color: #747983;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: .5rem;
}


.next-prev-wr .go-card .info .name {
    color: #1B1B1B;
    font-size: 17px;
    font-weight: 500;
}

.show-all-card {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 2rem .5rem;
}

.show-all-card a {
    text-align: center;
}

.show-all-card a i {
    color: #999999;
    font-size: 36px;
}

.show-all-card a div {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    margin-top: 12px;
}

/* final */

.news-card .pic-side img {
    transition: transform 300ms ease;
}

.news-card .pic-side img:hover {
    transform: scale(.95);
}

.fixed-btns {
    position: fixed;
    z-index: 999;
    left: 40px;
    bottom: 10px;
    width: 60px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.fixed-btns .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 22px;
    color: #fff;
    border-radius: 50%;
    transition: all 300ms ease;
}


.fixed-btns .btn svg {
    height: 20px;
}

.fixed-btns .btn.whats {
    box-shadow: 0px 8px 18px #25D36633;
    background-color: #25D366;
    margin-bottom: 1rem;
}

.fixed-btns .btn.whats:hover {
    background-color: #FFFFFF;
    color: #25D366;
}

.fixed-btns .btn.call {
    box-shadow: 0px 8px 18px #219BA933;
    background-color: #219BA9;
}

.fixed-btns .btn.call:hover {
    background-color: #FFFFFF;
    color: #219BA9;
}



.navbar .container {
    position: relative;
}

.lang-wr {
    position: absolute;
    top: 0;
    right: 16px;
    display: inline-flex;
    align-items: center;
}

.lang-wr a {
    display: flex;
    align-items: center;
    padding: .5rem;
    font-family: 'Noto Naskh Arabic', serif;
    color: #fff;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.lang-wr a img {
    margin: 0 5px;
    height: 19px;
}


#navbarNav {
    padding-right: 60px;
}

#back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    color: #999999;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    z-index: 999;
    background-color: #fff;
}

#back-top svg {
    height: 20px !important;
}

.ph-outer .img-wr.phov1 {
    margin-right: 0;
}

.sec-bg-wr .container {
    overflow: hidden;
}

.soc-wr .dy-btn svg {
    position: relative;
    z-index: 2;
    height: 20px;
}

/* =================== new ============================ */
.pic-effect-outer {
    padding: 2rem;
    padding-top: 0;
    padding-left: 12%;
    max-width: 600px;
    margin-left: auto;
    position: relative;
}

.pic-effect-outer .inner {
    width: 100%;
    height: 100%;
    box-shadow: 2rem 2rem #219BA9;
    transition: all .3s ease;
}

.pic-effect-outer:hover .inner {
    box-shadow: 0px 0px #219BA9;
}

.pic-effect-outer .inner img {
    width: 100%;
    height: 100%;
}

.pic-effect-outer .years {
    background-color: #ffffff;
    position: absolute;
    padding: 20px 10px;
    text-align: center;
    left: 0;
    bottom: 2rem;
    max-width: 170px;
    box-shadow: 0px 30px 50px #03041C1A;
}

.pic-effect-outer .years .num {
    color: #219BA9;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
}

.pic-effect-outer .years .text {
    color: #000000;
    font-weight: bold;
    font-size: 20px;
}



.serv-col {
    transition: all .3s ease;
    position: relative;
}

.serv-card .abs {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    opacity: 0;
}

.serv-col:hover {
    background-color: #219BA9;
}

.serv-col:hover .serv-card .abs {
    opacity: 1;
}

.serv-col:hover .serv-card .title,
.serv-col:hover .serv-card .text-gray {
    color: #ffffff;
}

.serv-col:hover .serv-card>img {
    filter: grayscale(1) saturate(0%) contrast(10000%);
}

.projects-row .col-md-4 {
    padding: 5px;
}

.clints-sec .col-lg-2 {
    padding: 6px;
}

.clints-sec .col-lg-2 .clint-card {
    margin-bottom: 0;
    height: 100%;
}


.show-card {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.07);
}

.show-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 3s linear;
    transform: translate3d(0px, 0px, 0px);
    min-height: 100%;
}

.show-card:hover img {
    transform: translate3d(0px, calc(-100% + 400px), 0px);
}

.work-sec.inner-v {
    background-image: unset !important;
}

.contact-col .d-flex {
    flex-wrap: wrap;
}

.contact-col .d-flex .item {
    width: 100% !important;
}

.contact-col .d-flex .item:nth-child(2) {
    margin-left: 0;
    margin-right: 0;

}

.pic-effect-outer .years {
    min-width: 24%;
}

.navbar.scrolled .navbar-brand img {
    transition: all 300ms ease;
    max-height: 36px;
}

.about-sec {
    margin-bottom: 1rem;
}

.clints-sec,
.clints-sec .sec-bg-wr,
.news-sec,
.work-sec,
.serv-sec {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.clints-sec {
    padding-bottom: 5rem;
}

.d-none.d-lg-block.col-lg-5 .ph-outer.v2 {
    max-height: 530px;
}

.iti--allow-dropdown {
    width: 100%;
    margin-bottom: 1rem;
    direction: ltr;
    text-align: left;
}

.iti__flag-container {
    position: static;
    padding: 0;
    box-shadow: unset !important;
}

.iti__selected-flag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    box-shadow: unset !important;
}

.iti__country-list {
    width: 100%;
    /* width: calc(100% - 2px); */
    top: 100%;
    left: 1px;
    white-space: wrap;
    margin-top: -1px;
    box-shadow: unset !important;
}

.error-msg {
    display: none;
    color: #f00;
    font-size: 12px;
    text-align: left;
    margin-top: -.75rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.dropzone {
    border-radius: 6px;
    border: 1px dashed #5151898e;
    margin-bottom: 1rem;
    padding: 12px;
    min-height: 82px;
}

.dropzone .dz-preview .dz-remove {
    color: transparent;
    position: relative;
    padding: 3px 0;
    margin-top: 3px;
}

.dropzone .dz-preview .dz-remove .dz-remove-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-size: 18px;
    padding: 0;
    border: transparent;
    color: #515189;
}

.dropzone .dz-preview .dz-progress {
    top: 65%;
}

.dropzone.dz-clickable .dz-message {
    margin: 1rem 0;
    color: #999999;
    font-size: 14px;
}

.dropzone.dz-clickable .dz-message i {
    font-size: 34px;
    color: #5151898e;
}

.dropzone.dz-clickable .dz-message .dz-button span {
    padding: 0 8px;
    margin-bottom: -5px;
}

.dropzone.dz-clickable .dz-message .dz-button {
    display: inline-flex;
    align-items: center;
}