@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --blue: #1d78c9;
    --navy: #40598e;
    --dark: #202126;
    --text: #202025;
    --muted: #6b6f79;
    --foot: #24252a
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    width: 1170px;
    max-width: calc(100% - 48px);
    margin: 0 auto
}

.topbar {
    height: 46px;
    background: #1f2025;
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.topbar .wrap {
    height: 100%;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 35px
}

.topbar span {
    color: #1985d5;
    margin-right: 6px
}

.top-search {
    justify-self: end;
    font-size: 18px
}

.share {
    background: #24262b;
    padding: 16px 30px;
    height: 46px;
    display: flex;
    align-items: center
}

.site-header {
    height: 154px;
    background: #fff;
    position: relative;
    z-index: 50;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: .3s
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 92px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    animation: drop .35s ease
}

.head-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 132px
}

.nav ul,
.drawer ul {
    display: flex;
    list-style: none;
    gap: 52px;
    margin: 0;
    padding: 0
}

.nav a {
    font-size: 12px;
    font-weight: 700;
    color: #1c1c21;
    letter-spacing: .1px;
    position: relative;
    padding: 66px 0;
    transition: .25s;
    text-transform: uppercase;
}

.site-header.sticky .nav a {
    padding: 32px 0
}

.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 53px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: .3s
}

.site-header.sticky .nav a:after {
    bottom: 27px
}

.nav a:hover,
.nav a.active {
    color: var(--blue)
}

.nav a:hover:after,
.nav a.active:after {
    width: 100%
}

.hamb {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 38px
}

.hamb span {
    display: block;
    height: 3px;
    background: #222;
    margin: 7px 0;
    transition: .3s
}

.drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 88%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 34px 30px;
    transition: .35s cubic-bezier(.77, 0, .175, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, .15);
    overflow: auto
}

.drawer.open {
    right: 0
}

.drawer .close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: 0;
    background: #111;
    color: #fff;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1
}

.drawer-logo {
    width: 145px;
    margin: 20px 0 30px
}

.drawer h4 {
    font-size: 18px;
    margin: 0 0 15px;
    color: white;
    padding: 20px;
    margin-bottom: 0;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd21;
}

.drawer p {
    color: #777;
    font-size: 13px
}

.drawer ul {
    display: block;
    margin-top: 24px
}

.drawer li {
    border-top: 1px solid #eee
}

.drawer a {
    display: block;
    padding: 13px 0;
    font-weight: 700;
    font-size: 13px
}

.shade {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.shade.show {
    opacity: 1;
    visibility: visible
}

.hero {
    height: 558px;
    position: relative;
    overflow: hidden
}

.slides,
.slide {
    position: absolute;
    inset: 0
}

.slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: opacity 4s ease, transform 6500ms ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
    transition: opacity 4s ease, transform 6500ms ease;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 19, 29, .58)
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 900px;
    max-width: 90%;
    animation: fadeUp .8s ease both
}

.hero h1 {
    font-size: 64px;
    line-height: 1;
    margin: 0 0 17px;
    font-weight: 800;
    letter-spacing: .5px
}

.hero p {
    font-size: 20px;
    margin: 0 0 30px;
    font-weight: 500
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    height: 50px;
    padding: 0 31px;
    transition: .3s;
    border: 0;
    cursor: pointer
}

.btn-white {
    background: #fff;
    color: #222
}

.btn-white:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px)
}

.blue {
    background: var(--blue);
    color: #fff
}

.blue:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    color:#fff;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    font-size: 38px;
    line-height: 38px;
    cursor: pointer;
    transition: .25s
}

/* .hero-arrow:hover {
    background: var(--blue)
} */

.prev {
    left: 78px
}

.next {
    right: 78px
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 38px;
    align-items: start
}

.about-home {
    padding: 0 0 98px
}

.about-home .split {
    margin-top: 0
}

.about-photo {
    margin-left: 10px
}

.about-photo img {
    height: 308px;
    width: 100%;
    object-fit: cover
}

.about-text {
    padding: 4px 0 0 0
}

.about-text h6,
.choose h6,
.inner h6 {
    margin: 0 0 11px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    color: #111
}

.about-text h2,
.choose h2,
.inner h2 {
    font-size: 40px;
    line-height: 1.08;
    margin: 0 0 28px;
    font-weight: 800;
    letter-spacing: -.8px
}

.about-text p {
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 23px;
    color: #222
}

.choose {
    padding: 0 0 110px
}

.choose-grid {
    grid-template-columns: .88fr 1.12fr;
    gap: 65px
}

.choose-copy {
    padding-left: 10px
}

.reason {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    margin-top: 34px;
    max-width: 480px
}

.reason i {
    width: 54px;
    height: 54px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-style: normal;
    transition: .35s
}

.reason:hover i {
    background: #111;
    transform: rotateY(180deg)
}

.reason h3 {
    font-size: 19px;
    line-height: 1;
    margin: 0 0 12px;
    font-weight: 700
}

.reason p {
    font-size: 15px;
    line-height: 1.78;
    margin: 0
}

.choose-photos {
    position: relative;
    height: 420px
}

.choose-photos img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 18px 32px rgba(0, 0, 0, .08);
    transition: .4s
}

.choose-photos .p1 {
    left: 0;
  bottom: 0;
  width: 255px;
  height: 255px;
  z-index: 1;
  border: 10px solid #fff;
}

.choose-photos .p2 {
    left: 180px;
  top: 45px;
  width: 100%;
  height: 320px;
  max-width: 330px;
}




.choose-photos img:hover {
    transform: translateY(-8px)
}

.process {
    padding: 7px 0 165px;
    text-align: center
}

.process h2,
.testimonials h2 {
    font-size: 35px;
    line-height: 1.2;
    margin: 0 0 15px;
    font-weight: 800
}

.process h2 span {
    color: var(--blue)
}

.lead {
    font-size: 15px;
    margin: 0 auto 60px;
    line-height: 1.7
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
    position: relative
}

.steps article {
    position: relative
}

.steps article:not(:last-child):after {
    content: "›";
    position: absolute;
    right: -48px;
    top: 23px;
    color: #cfcfcf;
    font-size: 35px
}

.steps b {
    width: 86px;
    height: 86px;
    border: 1px dashed #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 18px;
    background: #fff;
    box-shadow: inset 0 0 0 16px #f8f8f8;
    transition: .35s
}

.steps article:hover b {
    background: var(--blue);
    color: #fff;
    box-shadow: inset 0 0 0 16px var(--blue);
    border-color: var(--blue)
}

.steps h4 {
    font-size: 15px;
    margin: 0 0 13px
}

.steps p {
    font-size: 12px;
    line-height: 1.65;
    margin: 0
}

.testimonials {
    padding: 0 0 120px;
    text-align: center
}

.testimonial-window {
    overflow: hidden;
    padding: 0;
}

/* .testimonial-track {
    display: flex;
    gap: 28px;
    transition: .45s
} */

.quote {
    background: #fff;
    text-align: left;
    /* min-width: calc(50% - 14px); */
    padding: 32px 35px 38px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    position: relative;
    margin: 30px 20px;
}

.quote:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    border-style: solid;
    border-width: 20px 22px 0 0;
    border-color: #fff transparent transparent transparent
}

.stars {
    color: #ffc32b;
    letter-spacing: 4px;
    margin-bottom: 15px
}

.quote p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 30px
}

.quote h4 {
    font-size: 14px;
    margin: 0 0 3px;
    font-weight: 800
}

.quote span {
    font-size: 12px;
    color: #8a8a8a
}

.dots button {
    width: 24px;
    height: 4px;
    border-radius: 5px;
    border: 0;
    background: #ddd;
    margin: 0 4px
}

.dots .on {
    background: #ef2727
}

.breadcrumb {
    min-height: 305px;
    background: url('../images/wilco-commercial-sub-header2a.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff
}

.breadcrumb h1 {
    font-size: 58px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 800
}

.breadcrumb a,
.breadcrumb span {
    color: #ddd;
    margin-right: 10px
}

.breadcrumb b {
    color: #fff
}

.inner {
    padding: 95px 0
}

.about-page {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px
}

.img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px
}

.img-stack img {
    height: 260px;
    width: 100%;
    object-fit: cover
}

.rich p,
.rich li {
    font-size: 14px;
    line-height: 1.85;
    color: #333
}

.rich h3 {
    font-size: 20px;
    margin: 22px 0 5px
}

.skills {
    padding: 0 0 95px
}

.skill-grid {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 70px;
    align-items: center
}

.skill-grid h2 {
    font-size: 34px;
    margin-top: 0
}

.skill {
    margin: 30px 0
}

.skill span {
    font-weight: 700
}

.skill b {
    float: right
}

.skill em {
    display: block;
    clear: both;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden
}

.skill i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--blue);
    transition: 1.4s
}

.skill-grid img {
    height: 360px;
    object-fit: cover;
    width: 100%
}

.team-main {
    text-align: center
}

.team-main h2 {
    margin-bottom: 42px
}

.founders {
    display: grid;
    grid-template-columns: repeat(2, 370px);
    justify-content: center;
    gap: 35px;
    margin-bottom: 70px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.team-card {
    text-align: center;
    background: #fff;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .06);
    transition: .35s;
    overflow: hidden
}

.team-img {
    height: 430px;
    overflow: hidden;
    background: #f3f3f3
}

.team-card.big .team-img {
    height: 565px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s;
    object-position: top;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12)
}

.team-card:hover img {
    transform: scale(1.07)
}

.team-info {
    padding: 22px 15px 24px
}

.team-info h3 {
    font-size: 20px;
    margin: 0 0 5px
}

.team-info p {
    margin: 0;
    color: #777
}

.logo-grid {
    display: grid;
    gap: 30px
}

.clients {
    grid-template-columns: repeat(2, 1fr)
}

.vendors {
    grid-template-columns: repeat(4, 1fr)
}

.logo-card {
    height: 255px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    transition: .3s
}

.logo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
    border-color: #d7e8f9
}

.logo-card img {
    max-height: 100%;
    object-fit: contain
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.project {
    height: 310px;
    position: relative;
    overflow: hidden;
    background: #ddd
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.project:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, .7));
    opacity: .85;
    transition: .35s
}

.project div {
    position: absolute;
    left: 28px;
    right: 25px;
    bottom: 24px;
    color: #fff;
    z-index: 2;
    transition: .35s
}

.project h2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0
}

.project span {
    display: inline-block;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(10px);
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.project:hover img {
    transform: scale(1.1)
}

.project:hover:after {
    background: rgba(29, 120, 201, .78)
}

.project:hover div {
    bottom: 40px
}

.project:hover span {
    opacity: 1;
    transform: none
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 45px
}

.contact-info article {
    padding: 28px 30px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: .3s
}

.contact-info article:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    transform: translateY(-4px)
}

.contact-info i {
    color: var(--blue);
    font-size: 28px;
    font-style: normal
}

.contact-info h4 {
    font-size: 20px;
    margin: 10px 0
}

.contact-info p {
    margin: 0;
    color: #555
}

.contact-form {
    box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
    padding: 42px;
    background: #fff
}

.contact-form h3 {
    font-size: 28px;
    margin: 0 0 25px
}

.contact-form div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e7e7e7;
    padding: 15px 18px;
    margin-bottom: 15px;
    font-family: inherit;
    outline: 0;
    transition: .2s
}

.contact-form textarea {
    height: 150px;
    resize: none
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue)
}

.footer {
    background: var(--foot);
    color: #fff;
    position: relative;
    overflow: hidden
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 32px 0 26px
}

.footer-top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer-logo img {
    width: 140px
}

.social a {
    width: 32px;
    height: 32px;
    background: #3b3d42;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    transition: .3s
}

.social a:hover {
    background: var(--blue);
    transform: translateY(-3px)
}

.footer-main {
    position: relative;
    padding: 62px 0 68px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.35fr .45fr 1.1fr;
    gap: 110px
}

.foot-grid h4 {
    font-size: 15px;
    margin: 0 0 27px
}

.foot-grid p,
.foot-grid a {
    display: block;
    color: #a7a8ad;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 10px
}

.foot-grid a:hover {
    color: #fff
}

.copy {
    background: #17181b;
    color: #929397;
    font-size: 12px;
    padding: 22px 0
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .035)
}

.b1 {
    width: 230px;
    height: 230px;
    right: -65px;
    top: -55px
}

.b2 {
    width: 230px;
    height: 230px;
    left: -55px;
    bottom: 50px
}

.to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 80;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.to-top svg {
    width: 44px;
    height: 44px;
    fill: none
}

.to-top circle {
    stroke: #ef2727;
    stroke-width: 3;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transform: rotate(-90deg);
    transform-origin: center
}

.to-top path {
    stroke: #111;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -42%)
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%)
    }
}

@keyframes drop {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: none
    }
}

@media(max-width:1200px) {
    .wrap {
        width: 960px
    }

    .nav ul {
        gap: 30px
    }

    .hero h1 {
        font-size: 54px
    }

    .prev {
        left: 25px
    }

    .next {
        right: 25px
    }

    .choose-photos .p2 {
        left: 135px
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:991px) {
    .topbar {
        display: none
    }

    .site-header {
        height: 95px
    }

    .site-header.sticky {
        height: 82px
    }

    .brand img {
        width: 110px
    }

    .nav {
        display: none
    }

    .hamb {
        display: block
    }

    .split,
    .choose-grid,
    .about-page,
    .skill-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero {
        height: 520px
    }

    .hero h1 {
        font-size: 44px
    }

    .hero p {
        font-size: 16px
    }

    .about-home {
        padding: 70px 0
    }

    .about-photo {
        margin-left: 0
    }

    .choose-copy {
        padding-left: 0
    }

    .choose-photos {
        height: 390px;
        max-width: 500px
    }

    .steps {
        gap: 25px
    }

    .steps article:not(:last-child):after {
        display: none
    }

    .quote {
        min-width: 100%
    }

    .founders {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .vendors {
        grid-template-columns: repeat(2, 1fr)
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px
    }

    .footer-main {
        padding: 50px 0
    }

    .breadcrumb {
        min-height: 245px
    }

    .breadcrumb h1 {
        font-size: 44px
    }
}

@media(max-width:767px) {
    .wrap {
        max-width: calc(100% - 30px)
    }

    .hero {
        height: 470px
    }

    .hero h1 {
        font-size: 34px
    }

    .hero-arrow {
        display: none
    }

    .about-text h2,
    .choose h2,
    .inner h2 {
        font-size: 30px
    }

    .process {
        padding-bottom: 80px
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .testimonials {
        padding-bottom: 70px
    }

    .quote {
        padding: 25px 25px 35px
    }

    .choose-photos .p1 {
        width: 220px;
        height: 220px
    }

    .choose-photos .p2 {
        width: 240px;
        height: 250px;
        left: 110px;
        top: 95px
    }

    .founders,
    .team-grid,
    .clients,
    .vendors,
    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .team-img,
    .team-card.big .team-img {
        height: auto
    }

    .team-img img {
        height: auto
    }

    .logo-card {
        height: 210px
    }

    .contact-form div {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .footer-top .wrap {
        display: block;
        text-align: center
    }

    .footer-logo img {
        margin: 0 auto 20px
    }

    .social a {
        margin: 0 5px
    }

    .breadcrumb h1 {
        font-size: 36px
    }
}

@media(max-width:430px) {
    body {
        font-size: 13px
    }

    .hero h1 {
        font-size: 29px
    }

    .btn {
        height: 46px;
        padding: 0 24px
    }

    .choose-photos {
        height: 340px
    }

    .choose-photos .p1 {
        width: 185px;
        height: 185px
    }

    .choose-photos .p2 {
        width: 215px;
        height: 230px;
        left: 80px
    }

    .breadcrumb {
        min-height: 205px
    }

    .inner {
        padding: 65px 0
    }

    .project {
        height: 260px
    }

    .project h2 {
        font-size: 20px
    }
}


/* ===== Pixel refinement pack generated from supplied theme/global CSS ===== */
/* @import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap'); */

:root {
    --theme: #1d78c9;
    --dark: #202126;
    --deep: #141417;
    --footer: #24252a;
    --white: #fff;
    --body: #000
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    line-height: 28px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
    color: #141417;
    font-weight: 700;
    line-height: 1.2
}

.wrap {
    width: 1200px;
    max-width: calc(100% - 30px)
}

@media(min-width:1500px) {
    .wrap {
        width: 1320px;
        max-width: 1320px
    }

    .inner .wrap.narrow,
    .portfolio-list .wrap,
    .gallery-wrap.wrap {
        width: 1320px
    }
}

/* header */
.site-header {
    height: 155px;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: none
}

.home .site-header:before,
.home .site-header:after {
    display: none;
}

.site-header:before,
.site-header:after {
    content: "";
    position: absolute;
    top: -25px;
    width: 120px;
    height: 72px;
    border: 1px solid #e9e9e9;
    border-radius: 22px;
    transform: rotate(45deg);
    animation: float-bob-x 15s linear infinite
}

.site-header:before {
    left: 23%
}

.site-header:after {
    right: 20%
}

.home .site-header {
    height: 154px
}

.site-header.sticky {
    height: 92px;
    overflow: visible
}

.head-wrap {
    height: 100%;
    position: relative;
    z-index: 2
}

.brand img {
    width: 148px
}
.site-header.sticky .brand img {
  width: 100px;
}
.nav ul {
    gap: 48px
}

.nav a {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    padding: 62px 0;
    color: #141417
}

.nav a:after {
    display: none
}

.nav a:hover,
.nav a.active {
    color: #141417
}

.topbar {
    height: 46px;
    background: #202126;
    font-size: 12px
}

.topbar .wrap {
    width: 100%;
    max-width: 1320px;
    padding-left: 0;
    grid-template-columns: 230px 1fr auto 105px;
    gap: 0
}

.topbar div:first-child {
    padding-left: 8px
}

.topbar span {
    color: #1d78c9
}

.top-search {
    padding-right: 25px
}

.share {
    height: 46px;
    justify-content: center;
    background: #202126;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

/* original dark mobile menu */
.drawer {
    right: -340px;
    width: 300px;
    max-width: 100%;
    padding: 0 0 30px;
    background: #141417;
    color: #fff;
    transition: all 900ms ease !important;
    box-shadow: none
}

.drawer.open {
    right: 0
}

.drawer .close {
    right: 25px;
    top: 10px;
    background: transparent;
    color: #fff;
    font-size: 26px;
    transition: all .9s ease
}

.drawer.open .close {
    transform: rotate(360deg)
}

.drawer-logo {
    width: 145px;
    margin: 50px 25px 80px
}

/* .drawer h4,
.drawer p {
    display: none
} */

.drawer ul {
    display: block;
    margin: 0;
    padding: 0
}

.drawer li {
    border-top: 1px solid rgba(255, 255, 255, .10)
}

.drawer li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.drawer a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase
}

.drawer a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    transition: .5s
}

.drawer a.active:before,
.drawer a:hover:before {
    height: 100%
}

.shade.show {
    opacity: .70;
    background: #000
}

.hamb span {
    height: 2px;
    width: 30px;
    background: #222;
    margin-bottom: 5px
}

/* banners */
.breadcrumb {
    min-height: 305px;
    background-image: url('../images/wilco-commercial-sub-header2a.jpg');
    background-position: center;
    background-size: cover;
    text-align: center
}

.breadcrumb .wrap {
    display: flex;
    flex-direction: column;
    align-items: center
}

.breadcrumb h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    font-weight: 800
}

.breadcrumb a,
.breadcrumb span,
.breadcrumb b {
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.breadcrumb span {
    margin: 0 8px;
    color: #fff
}

/* footer exact style */
.footer {
    background: #24252a;
    color: #fff;
    position: relative;
    overflow: hidden
}

/* .footer:before,
.footer:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    animation: float-bob-y 4s linear infinite
}

.footer:before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 0
}

.footer:after {
    width: 200px;
    height: 200px;
    left: -70px;
    bottom: 70px
} */

.footer-top {
    padding: 31px 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 150px
}

.social a {
    width: 35px;
    height: 35px;
    background: #3d3f44;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700
}

.footer-main {
    padding: 73px 0 75px;
    position: relative;
    z-index: 1
}

.foot-grid {
    grid-template-columns: 1.15fr .55fr 1fr;
    gap: 145px
}

.foot-grid h4 {
    font-family: 'Jost';
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px
}

.foot-grid p,
.foot-grid a {
    color: #a9a9ad;
    font-size: 19px;
    line-height: 1.62;
    margin-bottom: 16px
}

.copy {
    background: #17181b;
    padding: 33px 0;
    color: #a9a9ad;
    font-size: 17px;
    position: relative;
    z-index: 1
}

.bubble {
    display: none
}

/* Go to top: original rotated bar */
.to-top {
    position: fixed;
    right: -6px;
    bottom: 88px;
    z-index: 99;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: rotate(90deg);
    display: block;
    color: #1d78c9
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: rotate(90deg)
}

.to-top svg {
    display: none
}

.to-top:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #f4244f;
    opacity: .35;
    margin-right: 10px;
    vertical-align: middle
}

.to-top:after {
    content: "Go To Top";
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #1d78c9;
    vertical-align: middle;
    transition: .5s
}

.to-top:hover:after {
    transform: scale(1.08)
}

/* home/owl */
.hero {
    height: 100vh;
}

.hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: .5px
}

.hero p {
    font-size: 20px;
    color: #fff
}

.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item {
    height: 100%
}

.slide {
    background-position: center;
    background-size: cover
}

.hero-arrow {
    font-size: 42px;
    background: transparent
}

.prev {
    left: 72px
}

.next {
    right: 72px
}

.btn {
    font-family: 'Poppins';
    font-weight: 700
}

.btn-white {
    height: 50px;
    background: #fff;
    color: #141417;
    padding: 0 62px 0 30px;
    position: relative
}

.btn-white:hover {
    padding-right: 69px
}
.hero-content .btn-white:hover {
    padding-right: 30px
}

.btn-white:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    width: 18px;
    height: 2px;
    background: #141417;
    transition: .5s
}

.btn-white:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #141417;
    border-top: 2px solid #141417;
    transform: translateY(-50%) rotate(45deg)
}

/* portfolio screenshot layout */
.portfolio-list {
    padding: 20px 0 110px
}

.portfolio-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px
}

.project.clean {
    height: auto;
    background: transparent;
    overflow: visible;
    text-align: center
}

.project.clean:after {
    display: none
}

.project.clean img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: .5s
}

.project.clean div {
    position: static;
    color: #141417;
    padding-top: 12px
}

.project.clean h2 {
    font-family: 'Jost';
    font-size: 42px;
    line-height: .95;
    font-weight: 800;
    color: #141417;
    letter-spacing: -1px
}

.project.clean span {
    display: none
}

.project.clean:hover img {
    transform: scale(1.03);
    filter: brightness(.9)
}

.project.clean:hover div {
    bottom: auto
}

/* vendors/clients */
.logo-grid.vendors {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
    max-width: 1020px;
    margin: 0 auto
}

.logo-card {
    height: 385px;
    border: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, .13);
    padding: 50px;
    background: #fff
}

.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18)
}

.logo-card img {
    max-width: 100%;
    max-height: 230px
}

.logo-grid.clients {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1020px;
    margin: auto
}

/* contact exact */
.contact-hero-cards {
    position: relative;
    margin-top: -5px;
    padding: 0 0 40px
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1110px;
    margin: 0 auto
}

.contact-cards article {
    height: 220px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.contact-cards i {
    font-size: 42px;
    color: #1d78c9;
    font-style: normal;
    margin-bottom: 28px
}

.contact-cards h4 {
    font-size: 22px;
    margin: 0 0 11px
}

.contact-cards p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0
}

.contact-map-section {
    position: relative;
    min-height: 620px;
    padding: 0 0 110px;
    background: linear-gradient(90deg, #fff 0, #fff 50%, #f7f7f7 50%, #f7f7f7 100%);
    overflow: hidden
}

.contact-map-section:after {
    content: "";
    position: absolute;
    right: 120px;
    top: 80px;
    width: 380px;
    height: 520px;
    background-image: radial-gradient(#d2d2d2 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .85
}

.map-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 380px;
    overflow: hidden
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.floating-form {
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: 180px;
    top: 150px;
    width: 520px;
    background: #fff;
    padding: 55px 55px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.floating-form h3 {
    font-size: 34px;
    margin: 0 0 32px
}

.floating-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.floating-form input,
.floating-form textarea {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 0 0 18px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #aaa;
    width: 100%;
    font-family: 'Poppins'
}

.floating-form textarea {
    height: 80px;
    resize: none
}

.floating-form .blue {
    height: 55px;
    padding: 0 33px;
    background: #1d78c9
}

.contact-grid {
    display: none
}

/* Team detail */
.team-detail {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: start
}

.team-detail .portrait {
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    overflow: hidden
}

.team-detail .portrait img {
    width: 100%;
    height: 520px;
    object-fit: cover
}

.team-detail h2 {
    font-size: 42px;
    margin: 0 0 8px
}

.team-detail .role {
    color: #1d78c9;
    font-weight: 700;
    margin-bottom: 25px
}

.team-detail p {
    font-size: 16px;
    line-height: 1.85;
    color: #333
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    border-top: 1px solid #eee;
    padding-top: 25px
}

.detail-nav a {
    font-weight: 700;
    color: #141417
}

.detail-nav a:hover {
    color: #1d78c9
}

.team-card a {
    display: block
}

/* Project gallery */
.gallery-title {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    margin: 0 0 70px
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
    gap: 25px;
    align-items: start
}

.project-gallery a {
    display: block;
    overflow: hidden;
    background: #eee
}

.project-gallery img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: .45s
}

.project-gallery a:hover img {
    transform: scale(1.08);
    filter: brightness(.75)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.lightbox.open {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    box-shadow: 0 15px 60px #000;
    transform: scale(.92);
    transition: .25s
}

.lightbox.open img {
    transform: scale(1)
}

.lb-close,
.lb-prev,
.lb-next {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    transition: .25s
}

.lb-close {
    right: 32px;
    top: 25px;
    width: 44px;
    height: 44px;
    font-size: 32px;
    line-height: 1
}

.lb-prev,
.lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 70px;
    font-size: 58px;
    line-height: 50px
}

.lb-prev {
    left: 35px
}

.lb-next {
    right: 35px
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: #1d78c9
}

.lb-count {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-weight: 600
}

/* animations */
/* @keyframes float-bob-y {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
} */

@keyframes float-bob-x {
    0% {
        transform: translateX(0) rotate(45deg)
    }

    50% {
        transform: translateX(30px) rotate(45deg)
    }

    100% {
        transform: translateX(0) rotate(45deg)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(max-width:1499px) {

    .foot-grid p,
    .foot-grid a {
        font-size: 13px
    }

    .foot-grid h4 {
        font-size: 15px
    }

    .project.clean h2 {
        font-size: 40px
    }

    .logo-grid.vendors {
        max-width: 960px
    }

    .logo-card {
        height: 380px
    }

    .floating-form {
        margin-right: 110px
    }
}

@media(max-width:1200px) {
    .wrap {
        width: 960px
    }

    .nav ul {
        gap: 28px
    }

    .nav a {
        font-size: 13px
    }

    .portfolio-clean {
        gap: 50px 30px
    }

    .project.clean h2 {
        font-size: 34px
    }

    .project-gallery {
        gap: 24px;
        grid-template-columns: repeat(4, 1fr)
    }

    .floating-form {
        margin-right: 35px
    }

    .contact-cards {
        max-width: 900px
    }
}

@media(max-width:991px) {
    .topbar {
        display: none
    }

    .site-header,
    .home .site-header {
        height: 105px
    }

    .site-header:before,
    .site-header:after {
        display: none
    }

    .brand img {
        width: 115px
    }

    .nav {
        display: none
    }

    .hamb {
        display: block
    }

    .breadcrumb {
        min-height: 250px
    }

    .breadcrumb h1 {
        font-size: 44px
    }

    .portfolio-clean,
    .logo-grid.vendors,
    .logo-grid.clients,
    .contact-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .map-box {
        position: relative;
        width: 100%;
        height: 320px
    }

    .contact-map-section {
        background: #fff;
        padding-bottom: 70px
    }

    .floating-form {
        top: 0;
        margin: 30px auto 0;
        width: 90%;
        padding: 40px
    }

    .team-detail {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .team-detail .portrait img {
        height: auto
    }

    .project-gallery {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:767px) {
    .breadcrumb h1 {
        font-size: 36px
    }

    .portfolio-clean,
    .logo-grid.vendors,
    .logo-grid.clients,
    .contact-cards {
        grid-template-columns: 1fr
    }

    .project.clean img {
        height: auto
    }

    .project.clean h2 {
        font-size: 30px;
        line-height: 1
    }

    .logo-card {
        height: 270px
    }

    .floating-form .form-row {
        grid-template-columns: 1fr
    }

    .footer-top .wrap {
        text-align: center;
        display: block
    }

    .footer-logo img {
        margin: 0 auto 20px
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .foot-grid p,
    .foot-grid a {
        font-size: 14px
    }

    .copy {
        font-size: 13px
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }

    .project-gallery img {
        height: 165px
    }

    .lb-prev,
    .lb-next {
        width: 42px;
        height: 55px;
        font-size: 42px
    }

    .lb-prev {
        left: 5px
    }

    .lb-next {
        right: 5px
    }
}

@media(max-width:430px) {
    .hero h1 {
        font-size: 30px
    }

    .hero {
        height: 470px
    }

    .project-gallery {
        grid-template-columns: 1fr
    }

    .contact-cards article {
        height: 190px
    }

    .floating-form {
        padding: 30px 24px
    }

    .gallery-title {
        font-size: 32px
    }
}
/* sri css */
.hero-content a{padding: 0 30px;}
.hero-content a::before, .hero-content a::after{display: none;}
.about-home {
  padding-top: 80px;
}
.topbar .wrap * {
  font-size: 14px;
  font-weight: 500;
}
.topbar .wrap span i {
  font-size: 18px;
  position: relative;
  top: 3px;
}
.topbar .wrap div:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  padding-left: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}

/** hero-shape **/

.hero-shape{
  will-change: border-radius, transform, opacity;
  animation: heroShape 3s linear infinite;
  display: block;
}

.hero-shape-two{
  position: absolute;
  left: 0px;
  bottom: 0px;
  will-change: border-radius, transform, opacity;
  animation: heroShapeTwo 5s linear infinite;
  display: block;
}

.hero-shape-three{
  background: #ffffff78;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 55% 50% 48% 30% / 40% 50% 70% 6%;
  will-change: border-radius, transform, opacity;
  animation: heroShapeThree 3s linear infinite;
  display: block;
  opacity: 0.10;
}

.hero-shape-four{
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 55% 35% 48% 30% / 40% 40% 70% 6%;
  will-change: border-radius, transform, opacity;
  animation: heroShapeFour 3s linear infinite;
  display: block;
}


@keyframes heroShape {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        transform: translate3d(-20px, 10px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeTwo {
   0%,
    100% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        transform: translate3d(-15px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        transform: translate3d(-30px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        transform: translate3d(-15px, 5px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeThree {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 10px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeFour {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    35% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(0, 10px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    65% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -10px, 0) rotateZ(0.01deg);
    }
}

/*  */

.testimonial-track.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 45px;
}

.testimonial-track.owl-carousel .owl-dot {
    width: 15px;
    height: 10px;
    border-radius: 30px;
    background: #d9d9d9 !important;
    margin: 0 2px;
    transition: all 0.4s ease;
}

.testimonial-track.owl-carousel .owl-dot.active {
    width: 30px;
    background: #f4244f !important;
}

.testimonial-track.owl-carousel .owl-stage {
    display: flex;
}

.testimonial-track.owl-carousel .owl-item {
    display: flex;
}

.testimonial-track.owl-carousel .quote {
    width: 100%;
}
.owl-theme .owl-dots .owl-dot span{display: none;}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.topbar div a:hover {
  color: #1d78c9;
}
.floating-form .form-row .form-grp > p {
  margin-bottom: 25px;
}









/* sri css  close*/
