* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    /*font-family: "Roboto Slab", serif;*/
    /* font-family: "Lato", serif; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    /*font-family: "Roboto Slab", serif;*/
    /* font-family: "Lato", serif; */
    letter-spacing: 1px !important;
    color: hsl(211 100% 20%);
}

p {
    margin: 0;
    color: hsl(217.14deg 11.23% 36.67%);
    /*font-family: "Montserrat", serif;*/
    /* font-family: "Lato", serif; */
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1287px;
}

[type="text"],
[type="email"],
[type="tel"],
[type="number"],
[type="search"],
[type="color"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="password"],
[type="time"],
[type="url"],
[type="week"],
textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-style: italic;
    appearance: none;
    --webkit-appearance: none;
    color: #000;
    transition: all .3s linear;
    border: 1px solid #d7d7d7;
    background-color: #fff;
    outline: none;
    resize: none;
    border-radius: 10px;
}

[type="text"]:focus,
[type="email"]:focus,
[type="tel"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="color"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="password"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="week"]:focus,
textarea:focus {
    border-color: hsl(211 75% 35%);
}

/* web header */

#toTop.show {
    opacity: 1;
    visibility: visible;
}

#toTop {
    position: fixed;
    right: 18px;
    bottom: 50px;
    background: hsl(42 95% 55%);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    animation: jumpingImage1 3s linear infinite;
}

@keyframes jumpingImage1 {
  50% {
    transform: translateY(10px);
  }
}

.menu-bar-bottom  {
    display: none;
}

.btn-header {
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    border-radius: 12px;
    padding: 8px 16px !important;
}

.web-header-inner .navbar {
    padding: 0;
}

.web-header {
    width: 100%;
    background: #fff;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: hsl(217 91% 60%) !important;
}

.navbar-brand:hover {
    color: hsl(211.18deg 100% 20%);
}

.navbar-brand img {
    width: 94px;
}

.navbar-nav  {
    margin-left: auto;
}

.nav-item {
    margin: 0 8px;
}

.nav-item .nav-link {
    padding: 8px 16px;
    color: hsl(222.2 84% 4.9%);
}

.nav-item .nav-link.active {
    color: hsl(211.18deg 100% 20%);
}

.web-header-right {
    display: flex;
    align-items: center;
}

.get-btn {
    display: inline-block;
    background: hsl(217 91% 60%);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
    margin-left: 15px;
}

.down-arrow {
    font-size: 16px;
    margin-left: 2px;
}

.fixed-header {
    position: fixed !important;
    /* top: -100px; */
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    transition: all .4s ease;
    /* transform: translateY(100px); */
    padding: 15px 0 !important;
    box-shadow: 2px 4px 8px rgba(73, 73, 73, .15);
}

.sub-menu {
    position: absolute;
    top: 116%;
    left: -65%;
    width: 320px;
    border-radius: 12px !important;
    background: #fff;
    padding: 10px 0;
    text-align: left;
    box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
    -webkit-box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
    border-radius: 0px;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    z-index: 2;
}

.web-header .navbar .navbar-nav li:hover .sub-menu {
    opacity: 1;
    display: block;
    visibility: visible;
    height: auto;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.nav-link-inner {
    position:relative;
}

.sub-inner-menu {
    position: absolute;
    top: 0%;
    right: -100%;
    width: 205px;
    background: #fff;
    padding: 0px 0;
    text-align: left;
    box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
    -webkit-box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
    border-radius: 0px;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    z-index: 2;
}

.nav-link-inner:hover .sub-inner-menu {
    opacity: 1;
    display: block;
    visibility: visible;
    height: auto;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.sub-inner-menu>li {
    padding: 0;
}

.sub-inner-menu>li:last-child {
    border-bottom: none;
}

.nav-link-inner::before {
        font-family: "FontAwesome";
        content: "\f105";
        font-size: 15px;
        font-size: 1rem;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
}

.sub-inner-menu li a {
    display: block;
    color: #000;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 22px;
    padding-right: 10px;
    transition: all .3s ease-in-out;
}

.sub-inner-menu>li.active a,
.sub-inner-menu>li>a:hover,
.sub-inner-menu>li>a:focus {
    text-decoration: none;
    color: hsl(42 95% 55%);
    letter-spacing: 0.2px;
}

.dropdown_menu {
    position: relative;
}

.sub-menu>li {
    padding: 0;
}

.sub-menu>li:last-child {
    border-bottom: none;
}

.sub-menu>li {
    list-style: none;
    padding: 0px !important;
}

.sub-menu>li>a {
    display: block;
    color: #000;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 22px;
    padding-right: 10px;
    transition: all .3s ease-in-out;
}

.sub-menu>li>a:before,
.sub-menu>li>a:after {
    display: none;
}

.sub-menu>li.active a,
.sub-menu>li>a:hover,
.sub-menu>li>a:focus {
    text-decoration: none;
    color: #cbb600;
    letter-spacing: 0.2px;
}

.sub-menu>li:last-child a {
    padding-right: 10px;
}

.sub-menu>li>a:before {
    display: none;
}

.news-sub-menu {
    left: -21%;
}

/* banner sec */

.banner-sec {
    width: 100%;
    background-image: url(../images/banner-image2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 45px 0;
}

.banner-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right,hsl(217, 32%, 17%, 0.9),hsl(217, 32%, 17%, 0.6));
}

.banner-wrapper {
    width: 65%;
    position: relative;
}

.banner-wraper-top h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.banner-wraper-top h1 span {
    display: block;
    color: hsl(217 91% 60%);
}

.banner-wraper-top p {
    font-size: 24px;
    line-height: 32px;
    color: rgb(229 231 235);
    margin: 24px 0;
}

.banner-wraper-top ul {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.banner-wraper-top ul li {
    font-size: 15px;
    font-weight: 400;
    color: rgb(229 231 235);
    margin-right: 20px;
}
.banner-wraper-top ul li svg {
    width: 20px;
    color: hsl(217 91% 60%);
    margin-right: 10px;
}

.banner-btn-sec {
    display: flex;
}

.quote-btn {
    display: flex;
    height: 44px;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 6px 30px;
    background: hsl(217 91% 60%);
    color: #fff;
    border: 0;
    border-radius: 12px;
    margin-right: 15px;
}

.quote-btn svg {
    margin-left: 10px;
}

.work-btn {
    display: flex;
    height: 44px;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 6px 30px;
    background: #fff;
    color: hsl(211.18deg 100% 20%);
    border: 0;
    border-radius: 12px;
}

.banner-wraper-bottom {
    border-top: 1px solid #ffffff33;
    margin-top: 24px;
    padding-top: 32px;
}

.banner-counter-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-counter-box {
    width: 25%;
    text-align: center;
}

.counter-value {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: hsl(217 91% 60%);
}

.banner-counter-box p {
    color: rgb(209 213 219);
    font-size: 17px;
}

/* action sec */

.action-sec {
    width: 100%;
    background: hsl(210 20% 95%);
    padding: 80px 0;
}

.heading-sec {
    width: 768px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.heading-sec h2 {
    font-size: 36px;
    line-height: 40px;
    color: hsl(211 100% 15%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.heading-sec p {
    font-size: 18px;
}

.action-inner {
    width: 1024px;
    margin: 0 auto;
}

.action-video-sec {
    width: 100%;
    height: 576px;
    /*background: hsl(211 75% 35%);*/
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 25px;
    position: relative;
    background-image: url(../images/project-img20.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.action-video-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: hsl(211deg 75% 35% / 65%);
}

.video-text-sec {
    width: 100%;
    background: #ffffff1a;
    border: 1px solid #ffffff33;
    padding: 16px;
    border-radius: 12px;
    position: relative;
}

.video-text-sec h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.video-text-sec p {
    font-size: 14px;
    color: #fff;
}

.play-btn-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    width: 80px;
    height: 80px;
    border: 0;
    background: hsl(42 95% 55%);
    border-radius: 50%;
    color: #fff;
    animation: size .9s linear infinite;
}

@keyframes size {
    0% {
        scale: 0.8;   
    }
    50% {
        scale: 1;  
    }
    100% {
        scale: 0.8;  
    }
}

.step-sec {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-box {
    width: 33.33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.step-box span {
    background: hsl(217 91% 60%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.step-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: hsl(211 100% 15%);
    margin-bottom: 11px;
}

.step-box p {
    font-size: 16px;
}

/* constraction sec */
.constraction-sec {
    width: 100%;
    padding: 80px 0;
}

.constraction-image {
    text-align: center;
    margin-bottom: 64px;
}

.constraction-box {
    width: 100%;
    height: 100%;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid hsl(217 91% 60%);
    transition: all .3s ease-in-out;
}

.constraction-header img {
    width: 50px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(92%) saturate(3593%) hue-rotate(203deg) brightness(101%) contrast(93%);
}

.constraction-header svg {
    width: 32px;
    height: 32px;
    color: hsl(217 91% 60%);
    margin-bottom: 16px;
}

.constraction-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.constraction-box p {
    margin-bottom: 16px;
}

.constraction-box ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
    color: hsl(215 15% 45%);
}

.constraction-box ul li::before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.constraction-box a {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: hsl(222.2 84% 4.9%);
    background: hsl(0 0% 100%);
    text-align: center;
    border: 1px solid hsl(214.3 31.8% 91.4%);
    padding: 7px 0;
    border-radius: 6px;
    margin-top: 18px;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.constraction-box a:hover {
    background-color: hsl(217 91% 60%);
    color: #fff;
    border-color: hsl(217 91% 60%);
}

.constraction-box:hover {
    transform: translateY(-10px);
}

.projects-btn-sec {
    text-align: center;
    margin-top: 30px;
}

.projects-btn-sec a {
    display: inline-block;
    background: hsl(217 91% 60%);
    color: #fff;
    padding: 12px 29px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
}

/* pricing sec */

.pricing-sec {
    width: 100%;
    background: hsl(210 20% 95%);
    padding: 80px 0;
}

.pricing-inner {
    width: 100%;
    padding: 0 67px;
    padding-top: 30px;
}

.pricing-box {
    width: 100%;
    height: 100%;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-radius: 10px;
    padding: 32px;
}

.pricing-box-inner h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem;
}

.pricing-box-inner h3 {
    font-size: 30px;
    line-height: 36px;
    color: hsl(217 91% 60%);
    font-weight: 700;
    margin-bottom: .5rem;
    text-align: center;
}

.pricing-box-inner p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-box-inner ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: hsl(215 15% 45%);
    margin-bottom: 12px;
}

.pricing-box-inner ul li svg {
    width: 20px;
    height: 20px;
    color: hsl(215 16% 47%);
    margin-right: 12px;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: hsl(217 91% 60%);
    background: hsl(0 0% 100%);
    text-align: center;
    border: 1px solid hsl(217 91% 60%);
    padding: 9px 34px;
    border-radius: 6px;
    margin-top: 32px;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.pricing-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.pricing-btn:hover {
    background-color: hsl(217 91% 60%);
    color: #fff;
}

.popular-pricing-box {
    height: 100%;
    position: relative;
    /*margin-top: -16px;*/
    border: 2px solid hsl(217 91% 60%);
}

.tag {
    width: 143px;
    padding: 8px 9px;
    background: hsl(42 95% 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tag svg {
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.popular-btn {
    font-size: 16px;
    padding: 12px 34px;
    color: #fff;
    background: hsl(211 75% 35%);
    border: 1px solid hsl(211 75% 35%);
}

.popular-btn:hover {
    background-color: transparent;
    color: hsl(211 75% 35%);
}

.pricing-btn-sec {
    margin-top: 48px;
    text-align: center;
}

.pricing-btn-sec .projects-btn-sec {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-btn-sec .projects-btn-sec .work-btn {
    margin-right: 15px;
}

.pricing-btn-sec .projects-btn-sec button {
    font-size: 14px;
}

/* testimonials sec */

.testimonials-sec {
    width: 100%;
    padding: 80px 0;
}

.testimonials-bottom-box {
    max-width: 672px;
    margin: 0 auto;
    background: hsl(214.3 31.8% 91.4%);
    background: HSL(217 91% 60%);
    background: linear-gradient(90deg, rgba(60, 131, 246, 1) 0%, rgba(101, 117, 139, 1) 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.testimonials-bottom-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.testimonials-bottom-box p {
    color: #fff;
}

.testimonials-bottom-box-btn-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.testimonials-bottom-box-btn-sec button,
.testimonials-bottom-box-btn-sec a {
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 10px;
}

.start-btn {
    background: hsl(217 32% 17%);
    border: 1px solid hsl(217 32% 17%);
    color: #fff;
    margin-right: 15px;
    transition: all .3s ease-in-out;
}

.portfolio-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: all .3s ease-in-out;
}

.start-btn:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.portfolio-btn:hover {
    background: hsl(217 32% 17%);
    border: 1px solid hsl(217 32% 17%);
    color: #fff;
}

.testimonial-sec-box{
    height: 322px;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    padding: 24px;
    border-radius: 12px;
}

.testimonial-sec-img {
    margin-bottom: 16px;
}

.testimonial-sec-star i {
    color: hsl(42 95% 55%);
}

.testimonial-sec-para {
    margin-top: 16px;
    margin-bottom: 26px;
}

.testimonial-sec-img svg {
    width: 32px;
    height: 32px;
    color: hsl(217 91% 60%);
}

.testimonial-sec-bottom{
    display: flex;
    align-items: center;
}

.testimonial-sec-bottom-img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid hsl(214.3 31.8% 91.4%);
}

.testimonial-sec-bottom-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-sec-bottom-left {
    width: 15%;
}

.testimonial-sec-bottom-title {
    width: 85%;
    padding-left: 15px;
}

.testimonial-sec-bottom-title h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

.testimonial-sec-bottom-title p {
    font-size: 14px;
}

.testimonials-bottom {
    margin-top: 50px;
}

/* news sec */

.news-sec {
    width: 100%;
    background: hsl(210 20% 95%);
    padding: 80px 0;
}

.news-artical-wrapper {
    width: 100%;
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.news-artical-left {
    width: 50%;
}

.news-artical-img {
    width: 100%;
}

.news-artical-img img {
    width: 100%;
}

.news-artical-right {
    width: 50%;
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-left: 0;
    padding: 32px;
}

.artical-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.artical-header span:first-child {
    display: inline-block;
    background: hsl(42 95% 55%);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    margin-right: 10px;
}

.artical-header span:last-child {
    display: inline-block;
    background: hsl(211deg 100% 20% / 10%);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: hsl(211 100% 20%);
    padding: 4px 12px;
    border-radius: 12px;
    margin-right: 10px;
}

.news-artical-info h3 a {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    color: hsl(211 100% 15%);
    margin-bottom: 16px;
}

.news-artical-info p {
    margin-bottom: 24px;
}

.news-artical-info ul {
    display: flex;
    align-items: center;
}

.news-artical-info ul li {
    margin-right: 25px;
    font-size: 14px;
    color: hsl(215 15% 45%);
    display: flex;
    align-items: center;
}

.news-artical-info ul li svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.read-btn-sec {
    display: flex;
    margin-top: 27px;
}

.read-btn-sec a {
    width: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(211 75% 35%);
    color: #fff;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
}

.read-btn-sec a svg {
    width: 16px;
    height: 16px;
    margin-left: 15px;
}

.news-box-header {
    width: 100%;
    height: 304px;
    overflow: hidden;
    /*background-color: hsl(211 75% 35%);*/
    background-color: #1d2839;
    transition: all .3s ease-in-out;
}

.news-box-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.news-box {
    padding: 0;
    border: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.news-box:hover .news-box-header img {
    transform: scale(1.1);
}

.news-bottom {
    width: 100%;
    padding: 24px;
}

.news-list {
    margin-top: 50px;
}

.news-bottom span {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: hsl(211 100% 20%);
    background: hsl(211deg 100% 20% / 10%);
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.news-bottom h3 a {
    font-size: 20px;
    text-align: left;
    line-height: 28px;
    font-weight: 600;
    color: hsl(211 100% 15%);
    padding: 0;
    margin: 0;
    border: 0;
}

.news-bottom h3 a:hover {
    background-color: transparent;
    color: hsl(42 95% 55%);
}

.news-bottom p {
    font-size: 16px;
    margin-bottom: 10px;
}

.news-bottom p span {
    background: transparent;
    font-size: 16px;
    margin: 0;
}

.news-bottom ul {
    display: flex;
    align-items: center;
}

.news-bottom ul li {
    margin-right: 25px;
    font-size: 14px;
    color: hsl(215 15% 45%);
    display: flex;
    align-items: center;
    padding: 0;
}

.news-bottom ul li::before {
    display: none;
}

.news-bottom ul li svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}



/* footer sec */

/*.web-footer {*/
/*    width: 100%;*/
/*    background: #1d2839;*/
/*    padding: 48px 0;*/
/*}*/

.web-footer {
    width: 100%;
    background-color: #1d2839;
    background-image: url(../images/bg-footer-1.png);
    padding: 48px 0;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.web-footer-wrapper {
    width: 100%;
    display: flex;
}

.web-footer-box .navbar-brand {
    font-size: 25px;
}

.web-footer-box {
    width: 25%;
}

.web-footer-box:first-child {
    width: 30%;
    padding-right: 58px;
}
.web-footer-box:nth-child(2) {
    width: 25%;
}
.web-footer-box:nth-child(3) {
    width: 25%;
}
.web-footer-box:last-child {
    width: 20%;
}

.web-footer-box .navbar-brand {
    color: #fff;
}

.web-footer-box p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(209 213 219);
    margin: 24px 0;
}

.social-media-link ul {
    display: flex;
    align-items: center;
}

.social-media-link ul li {
    margin-right: 16px;
}

.social-media-link ul li a {
    transition: all .3s ease-in-out;
}

.social-media-link ul li a:hover svg {
    transform: scale(1.5);
}

.social-media-link ul li a svg {
    width: 20px;
    color: rgb(209 213 219);
    transition: all .3s ease-in-out;
}

.social-media-link ul li a i {
    font-size: 21px;
    color: rgb(209 213 219);
    transition: all .3s ease-in-out;
}

.social-media-link ul li a svg:hover {
    color: hsl(42 95% 55%);
}

.social-media-link ul li a i:hover {
    color: hsl(42 95% 55%);
    transform: scale(1.5);
}

.web-footer-header {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.web-footer-list ul li {
    margin-bottom: 8px;
}

.web-footer-list ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: rgb(209 213 219);
    transition:  all .3s ease-in-out;
}

.web-footer-list ul li a:hover {
    color: hsl(42 95% 55%);
}

.addresss-sec ul li {
    display: flex;
    margin-bottom: 15px;
}

.addresss-sec ul li svg {
    width: 20px;
    color: hsl(42 95% 55%);
}

.addresss-sec ul li p {
    margin: 0;
    margin-left: 10px;
}

.addresss-sec ul li p a {
    color: rgb(209 213 219);
    transition: all .3s ease-in-out;
}

.addresss-sec ul li p a:hover {
    color: hsl(42 95% 55%);
}

.hour-sec p {
    font-size: 15px;
    margin: 3px;
}

.web-footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(55 65 81);
}
.footerInfoArea{padding:30px 0 0;text-align:center;}
.footerInfoArea p{font-size: 15px;font-weight: 400; color: rgb(209 213 219);color:#fff;}

.web-footer-bottom {
    padding-top: 32px;
}

.web-footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.web-footer-bottom-left p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(209 213 219);
}

.web-footer-bottom-right ul {
    display: flex;
    align-items: center;
}

.web-footer-bottom-right ul li {
    margin-left: 20px;
}

.web-footer-bottom-right ul li a {
    font-size: 16px;
    font-weight: 400;
    color: rgb(209 213 219);
    transition: all .3s ease-in-out;
}

.web-footer-bottom-right ul li a:hover {
    color: hsl(42 95% 55%);
}

.hour-heading {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

/* faq sec */

.faq-sec {
    width: 100%;
    padding: 80px 0;
    background: hsl(210 20% 95%);
}
.accordion-button::after {
    display: none;
}
.faq-inner .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
    color: #fff;
    background: hsl(211 75% 35%);
    font-size: 18px;
    font-weight: 600;
}
.faq-inner .accordion-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid hsl(211 75% 35%);
}
.accordion-button:not(.collapsed) .plus {
    display: none;
}
.accordion-button:not(.collapsed) .minus {
    display: block;
}
.accordion-button .minus {
    display: none;
}
.faq-body ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 17px;
    color: hsl(215 15% 45%);
}
.faq-body ul li::before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.video-moadl-body {
    border-radius: 12px;
    overflow: hidden;
}

.videoModal .btn-close {
    width: 45px;
    height: 45px;
    background: hsl(211 75% 35%);
    border-radius: 50%;
    position: absolute;
    top: -31px;
    right: -41px;
    background-image: none;
    opacity: 1;
}

.videoModal .btn-close i {
    font-size: 24px;
    color: #fff;
}

.blog-sec {
    width: 100%;
    padding: 40px 0;
    background: hsl(210 20% 95%);
}

/* blog sec */

.blog-details-sec h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-details-sec p {
    margin-bottom: 30px;
}

.blog-details-sec img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.blog-details-sec h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-details-sec ul {
    margin-bottom: 25px;
}

.blog-details-sec ul li {
    font-size: 16px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.blog-details-sec ul li:before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.blog-details-sec .blog-table {
    margin-bottom: 25px;
}

.blog-table table {
    width: 100%;
}

.blog-details-sec table thead tr th {
    background: hsl(211 75% 35%);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    font-size: 17px;
}

.blog-details-sec table tbody tr td {
    background: hsl(210 20% 95%);
    color: #000;
    padding: 10px;
    font-size: 16px;
    border: 1px solid hsl(211 75% 35%);
}

.blog-details-sec table tbody tr td:first-child {
    font-weight: 600;
}

.blog-details-sec p a {
    color: hsl(211 75% 35%);
}

.blog-list-sec .constraction-box {
    border: 1px solid hsl(210 20% 95%);
}

.blog-details-sec {
    padding-right: 20px;
}

/* contact us */

.contact-right h2 {
    color: hsl(211 75% 35%);
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.6px;
    margin-bottom: 27px;
}

.contact-box {
    position: relative;
}

.contact-box input,
textarea {
    padding-left: 43px;
}

.contact-box i {
    position: absolute;
    top: 16px;
    left: 14px;
    color: hsl(211 75% 35%);
    font-size: 18px;
}

.contact-box {
    margin-bottom: 24px;
}

.submit-btn {
    min-height: 47px;
    position: relative;
    min-width: 197px;
    border-radius: 9px;
    background: #214a81;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 35px;
    text-align: center;
    border-color: #214a81;
    border: 0;
}

.contact-us-sec {
    width: 100%;
    padding: 80px 0;
}

.contact-info-box {
    padding: 20px 15px 21px;
    border: 1px solid #d2dfdf;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 9.8px 0.2px rgba(10, 29, 53, 0.07);
    height: 100%;
    display: flex;
}

.contact-box-left {
    width: 10%;
}

.contact-box-left i {
    font-size: 21px;
    color: hsl(211 100% 20%);
}

.contact-box-right {
    width: 80%;
}

.contact-box-right h3 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1px;
}

.contact-box-right p {
    color: #4d555b;
    letter-spacing: 1.1px;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
}

.contact-box-right p a {
    color: #4d555b;
    letter-spacing: 1.1px;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
    transition: all .3s ease-in-out;
}

.contact-box-right p a:hover {
    color: hsl(42 95% 55%);
}

.contact-list-sec {
    margin-top: 40px;
}

.map-inner {
    width: 100%;
    height: 250px;
}

.map-inner iframe {
    width: 100%;
    height: 100%;
}

.contact-left img {
    width: 100%;
}

/* about us sec */

.about-sec {
    width: 100%;
    padding: 50px 0;
}

.about-inner h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-inner p {
    margin-bottom: 30px;
}

.secound-list li {
    margin-bottom: 15px;
}

.secound-list li span {
    display: block;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 6px;
}

.secound-list li p {
    margin-bottom: 0;
}

.first-list li {
    font-size: 16px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.first-list li::before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.testimonials-page {
    background: hsl(210 20% 95%);
}

/* case study sec */

.case-studies-sec {
    width: 100%;
    background: hsl(210 20% 95%);
    padding: 80px 0;
}

/* case studies details */

.case-studies-details-sec {
    width: 100%;
    padding: 60px 0px;
    background: hsl(210 20% 95%);
}

.case-studies-details-inner h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.case-details-image-sec {
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
    text-align: center;
}

.case-details-image-sec img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.case-details-box {
    max-width: 672px;
    margin: 0 auto;
    background: hsl(214.3 31.8% 91.4%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.case-studies-details-inner h3 {
    margin-bottom: 21px;
    text-align: center;
}

.case-details-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.case-details-box ul li {
    width: 50%;
    margin-bottom: 20px;
    padding: 0;
}

.case-details-box ul li::before {
    display: none;
}

.case-details-box ul li:last-child {
    margin-bottom: 0;
}

.case-details-box ul li span {
    display: block;
    font-size: 21px;
    font-weight: 700;
    color: hsl(211 100% 15%);
    margin-bottom: 5px;
}

.case-studies-details-inner p {
    margin-bottom: 20px;
    font-size: 18px;
}

.case-studies-details-inner ul {
    margin-bottom: 20px;
}

.case-studies-details-inner ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 16px;
    color: #000;
}

.case-studies-details-inner ul li::before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

/* appartment sec */

.appartment-banner-sec {
    width: 100%;
    background: hsl(210 20% 95%);
    padding: 60px 0;
}

.appartment-banner-left span {
    display: inline-block;
    background: #fff;
    font-size: 15px;
    padding: 7px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.appartment-banner-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
}

.appartment-banner-left p {
    font-size: 18px;
    margin-bottom: 28px;
}

.why-choose-sec {
    width: 100%;
    padding: 80px 0;
}

.why-choose-box {
    width: 100%;
    height: 100%;
    background: hsl(42deg 95% 55% / 10%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.why-choose-box svg {
    width: 24px;
    height: 24px;
    color: hsl(211 100% 20%) !important;
}

.why-choose-box span {
    font-size: 16px;
    color: hsl(211 100% 15%);
    font-weight: 500;
    margin-left: 12px;
}

/*.apartment-package-sec .pricing-box {*/
/*    height: 490px;*/
/*}*/

/*.apartment-package-sec .popular-pricing-box {*/
/*    height: 520px;*/
/*}*/

.appartment-footer {
    width: 100%;
    /*background: hsl(214.3 31.8% 91.4%);*/
    background: HSL(217 91% 60%);
    background: linear-gradient(90deg, rgba(60, 131, 246, 1) 0%, rgba(101, 117, 139, 1) 100%);
    padding: 80px 0;
}

.appartment-footer-inner {
    text-align: center;
}

.appartment-footer-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.appartment-footer-inner p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 32px;
}

/* process sec */

.process-sec {
    width: 100%;
    padding: 60px 0;
}

.process-left img {
    width: 100%;
    height: 100%;
}

.process-right {
    padding: 30px 0 0 35px;
    z-index: 2;
    position: relative;
}

.process-right .bg-text {
    padding-left: 30px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: left;
    z-index: -1;
}

.process-right .bg-text h2 {
    font-size: 220px;
    color: #f1f1f1;
    line-height: 150px;
}

.process-right h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 22px;
}

.process-right p {
    margin-bottom: 25px;
}

.process-right ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 17px;
    color: hsl(215 15% 45%);
}

.process-right ul li::before {
    content: "";
    background-color: hsl(42 95% 55%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.process-box:first-child {
    padding-top: 0;
}

.process-box:last-child {
    padding-bottom: 0;
    border: 0;
}

.process-box {
    border-bottom: 1px solid #d6d6d6;
    padding-top: 70px;
    padding-bottom: 70px;
}

.process-box:nth-child(even) .row {
    flex-direction: row-reverse;
}

.why-choose-bottom .why-choose-box {
    width: 100%;
    height: 100%;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-radius: 10px;
    padding: 16px; 
    display: block;
    border-left: 4px solid hsl(217 91% 60%);
}

.why-choose-bottom .why-choose-box i {
    font-size: 32px;
    display: block;
    width: 100%;
    color: hsl(211 75% 35%);
}

.why-choose-bottom .why-choose-box p {
    margin: 0;
    font-size: 19px;
    margin-top: 18px;
}

.vm-box {
    width: 100%;
    height: 100%;
    background: hsl(214.3 31.8% 91.4%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-radius: 10px;
    padding: 22px;
}

.project-management-right img {
    width: 100%;
    border-radius: 10px;
}

.project-management-left h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.project-management-left ul li {
    margin-bottom: 8px;
}

.project-management-left ul li span {
    display: inline-block;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-image-text-left img {
    width: 100%;
    border-radius: 10px;
}

.blog-sec .news-box-header {
    height: 245px;
}

.blog-sec .news-box-header img {
    object-fit: cover;
}

.blog-details-list li span {
    display: block;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 6px;
}

.blog-details-list li p {
    margin-bottom: 16px;
}

.case-studies-details-sec .case-studies-details-inner h4 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.web-step-sec {
    width: 100%;
    padding-top: 80px;
}

.Quotemodal .modal-header {
    border: 0;
    padding: 9px 17px 0 17px;
}

.Quotemodal .modal-title  {
    font-size: 26px !important;
}

.modal-form-box label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-form-box {
    margin-bottom: 10px;
}

.modal-form-box input {
    height: 44px;
    padding: 10px 13px;
}

.modal-form-btn-sec {
    margin-top: 15px;
    text-align: center;
}

.modal-form-btn-sec .sumbit-btn {
    width: 100%;
    display: inline-block;
    background: hsl(217 91% 60%);
    color: #fff;
    padding: 9px 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
    border: 0;
}

.modal-form-box textarea {
    padding-left: 13px;
}

.pricing-tab-sec ul {
    justify-content: center;
    margin-bottom: 65px !important;
}

.pricing-tab-sec ul li button.active {
    background-color: hsl(217 91% 60%) !important;
    color: #fff !important;
    font-weight: 500;
}

.pricing-tab-sec ul li button {
    font-weight: 500;
    border: 1px solid hsl(217 91% 60%);
    color: hsl(217 91% 60%) !important;
}

.pricing-tab-sec ul li button span {
    font-size: 13px;
    font-weight: 400;
}

.pricing-details-inner table thead tr th {
    background: hsl(211 75% 35%);
    border: 1px solid hsl(211 75% 35%);
    color: #fff;
    padding: 25px;
    font-size: 17px;
}

.pricing-details-inner table thead tr th h4 {
    font-size: 17px;
    color: #fff;
}

.pricing-details-inner table thead tr th p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.pricing-details-inner table tbody tr td {
    background: hsl(210 20% 95%);
    color: #000;
    padding: 25px;
    font-size: 16px;
    border: 1px solid hsl(211 75% 35%);
}

.pricing-details-sec {
    width: 100%;
    padding: 80px 0;
}

.blog-from-box {
    width: 100%;
    margin: 0 auto;
    padding: 20px 18px;
    background: #fff;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
}

.blog-from-box h2 {
    font-size: 22px;
    /* text-align: center; */
    margin-bottom: 14px;
    margin-bottom: 14px;
}

.blog-from-box .modal-form-btn-sec .sumbit-btn {
    width: 100%;
    margin: 0;
}

.blog-from-box .modal-form-btn-sec {
    margin-top: 11px;
}

.paerner-box-inner {
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 24px;
    border-radius: 10px;
}

.red-flag-box {
    width: 100%;
    height: 100%;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid hsl(217 91% 60%);
    transition: all .3s ease-in-out;
}

.red-flag-box img {
    width: 45px;
    margin-bottom: 11px;
    filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(5388%) hue-rotate(204deg) brightness(102%) contrast(93%);
}

.red-flag-box h4 {
    font-size: 20px;
    margin-bottom: 11px;
}

.red-flag-sec {
    width: 100%;
    padding: 80px 0;
}

.privacy-sec {
    width: 100%;
    padding: 80px 0;
}

.privacy-inner p {
    font-size: 17px;
    margin-bottom: 12px;
}

.privacy-inner h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.privacy-inner h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.privacy-inner ul {
    margin-bottom: 15px;
}

.privacy-inner ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
    font-size: 16px;
    color: rgb(98, 112, 132);
}

.privacy-inner ul li:before {
    content: "";
    background-color: #3c83f6;
    width: 7px;
    height: 7px;
    top: 8px;
    left: 12px;
    position: absolute;
    border-radius: 50%;
}

.Quotemodal .modal-dialog {
    max-width: 380px;
}

.home-blog-sec {
    width: 100%;
    padding: 70px 0;
}

.home-blog-bottom .constraction-box {
    height: 598px;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
}




.main-timeline {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-timeline .timeline{
    padding: 0 2px;
    position: relative;
}
.main-timeline .timeline-icon{
    display: block;
    text-align: center;
    padding: 20px 0 55px 0;
    z-index: 1;
    position: relative;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon{
    padding: 55px 0 20px 0;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon span {
    top: auto;
    bottom: 0;
}
.main-timeline .timeline-icon:before{
    content: "";
    width: 1px;
    height: 75%;
    background: hsl(217 91% 60%);
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon:before{
    bottom: auto;
    top: 0;
}
.main-timeline .timeline:hover .timeline-icon:before{
    background: #1d2839;
}
.main-timeline .timeline-icon i{
    width: 45px;
    height: 45px;
    line-height:45px;
    border-radius: 50%;
    background: hsl(217 91% 60%);
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    line-height:45px;
    border-radius: 50%;
    background: hsl(217 91% 60%);
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease 0s;
}
.timeline:nth-child(odd) .main-timeline .timeline-icon span {
     top: auto;
     bottom: 0;
}
.main-timeline .timeline:hover .timeline-icon i{
    background: #555;
    animation: icon-load 2.5s ease 0s infinite;
}
.main-timeline .border{
    height: 15px;
    background: hsl(217 91% 60%);
    margin-bottom: 20px;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline:hover .border{
    background: #1d2839;
}
.main-timeline .timeline:first-child .border{
    border-radius: 4px 0 0 4px;
}
.main-timeline .timeline:last-child .border{
    border-radius: 0 4px 4px 0;
}
.main-timeline .timeline:nth-child(2n) .border{
    margin: 18px 0 0 0;
}
.main-timeline .timeline-content{
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 3px;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline:hover .timeline-content{
    background: #1d2839;
}
.main-timeline .title{
    font-size: 18px;
    font-weight: 700;
    color: hsl(211 100% 15%);
    text-transform: uppercase;
    margin: 0 0 10px 0;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline:hover .title{
    color: #fff;
}
.timeline-content .description{
    font-size: 14px;
    color: #888;
    margin: 0;
    transition: all 0.3s ease 0s;
}
.main-timeline .timeline:hover .description{
    color: #fff;
}
@keyframes icon-load{
    0%{ transform: rotate(-12deg); }
    8%{ transform: rotate(12deg); }
    10%{ transform: rotate(24deg); }
    18%,20%{ transform: rotate(-24deg); }
    28%,30%{ transform: rotate(24deg); }
    38%,40%{ transform: rotate(-24deg); }
    48%,50%{ transform: rotate(24deg); }
    58%,60%{ transform: rotate(-24deg); }
    68%{ transform: rotate(24deg); }
    100%,75%{ transform: rotate(0deg); }
}
@media only screen and (max-width: 990px){
    .main-timeline .timeline{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px){
    .main-timeline .timeline-icon{
        padding-top: 0;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-icon{
        padding-bottom: 0;
    }
    .main-timeline .border{
        margin-bottom: 10px;
    }
    .main-timeline .timeline:nth-child(2n) .border{
        margin: 10px 0 0 0;
    }
    .main-timeline .timeline-content{
        text-align: center;
    }
}

.navbar-brand {
    padding: 0;
}

.chatboat {
    width: 65px;
    height: 65px;
    background: #3c83f6;
    border: 0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 15px;
    bottom: 38px;
    z-index: 9999;
	display:none;
}

.red-flag-inner .row {
    justify-content: center;
}

.web-footer-box a {
    display: flex;
    align-items: center;
}

.web-footer-box a span {
    display: inline-block;
    text-align: center;
    padding-left: 22px;
    font-size: 21px;
}

.blue {
    color: hsl(217 91% 60%);
}

.appartment-banner-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.contact-left img {
    border-radius: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: hsl(142.41deg 70.16% 48.63%);
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 9;
}
.zsiq-float{
	right:15px !important;
	bottom: 15px !important;
}
.paerner-box-inner .owl-item img {
    width: 100%;
    max-width: auto;
    height: 40px;
    object-fit: contain;
}

.about-count-sec {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.about-count-box {
    width: 206px;
    text-align: center;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 2px solid hsl(214.3 31.8% 91.4%);
    padding: 15px;
    border-radius: 10px;
}

.about-count-box img {
    width: 40px;
    margin-bottom: 8px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(92%) saturate(3593%) hue-rotate(203deg) brightness(101%) contrast(93%);
}

.about-count-box h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-count-box p {
    font-weight: 600;
}

.about-us-inner {
    width: 100%;
    padding-bottom: 70px;
}

.about-image-text-left img {
    width: 100%;
    height: 364px;
    object-fit: cover;
    border-radius: 10px;
}

.vission-box {
    background: hsl(217deg 91% 60% / 5%);
    border-left: 4px solid hsl(217 91% 60%);
}

.vission-box h3 {
    margin-bottom: 13px;
}

.mission-box {
    background: hsl(215deg 16% 47% / 5%);
    border-left: 4px solid hsl(215 16% 47%);
}

.mission-box h3 {
    margin-bottom: 13px;
}

.ledership-sec {
    display: block;
    width: 100%;
    padding-bottom: 50px;
}

.leadership-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(214.3 31.8% 91.4%);
    padding: 27px;
    border-radius: 10px;
}

.ledership-user {
    width: 80px;
    height: 80px;
    background: HSL(217 91% 60%);
    background: linear-gradient(90deg, rgba(60, 131, 246, 1) 0%, rgba(101, 117, 139, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 14px;
}

.leadership-box h3 {
    font-size: 20px;
    color: hsl(222.2 84% 4.9%);
    margin-bottom: 7px;
}

.leadership-box h4 {
    font-size: 18px;
    color: #3c83f6;
    margin-bottom: 11px;
}

.experence {
    display: inline-block;
    font-size: 12px;
    background: hsl(217 32% 17%);
    color: #ffff;
    font-weight: 500;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.web-header-inner .navbar-brand {
    display: flex;
    align-items: center;
}

.web-header-inner .navbar-brand span {
    padding-left: 17px;
    text-align: center;
    
     background-image: linear-gradient(90deg, rgb(35 97 150) 0%, rgb(59 55 68) 56%, rgb(155 153 153) 100%);
    color: transparent;
    -webkit-background-clip: text;   
}

.pricing-note-sec h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-note-sec ul li {
    font-size: 13px;
    font-weight: 500;
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
}

.pricing-note-sec ul li::before {
    content: "";
    background-color: hsl(217 91% 60%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 8px;
    left: 0;
    position: absolute;
}

.videoModal .modal-content {
    max-width: 780px;
    height: 441px;
    border-radius: 16px;
}

.video-moadl-body {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-moadl-body video {
    width: 100%;
    height: 100%;
}

.privacy-sec {
    padding-top: 12px;
}

.our-partner-bottom ul {
    margin-bottom: 28px !important;
}

.projects-note-sec {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
}

.projects-note-sec h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.projects-note-sec p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

















