:root {
    --color: white;
    --color-2: #1a1a1a;
    --color-3: #002855;
    --color-4: #009cde;
    --color-5: #00685e;
    --color-6: #2d2926;
    --color-7: #722257;
}

.w-layout-grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.w-form-formradioinput--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 12px;
    width: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
    border-color: #3898ec;
    border-width: 4px;
}

.w-form-formrecaptcha {
    margin-bottom: 8px;
}

body {
    color: #333;
    font-family: proxima-nova, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75em;
}

h2 {
    color: var(--color-3);
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 20px;
    margin-top: 0;
}

h3 {
    color: #007db2;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 20px;
    margin-top: -10px;
}

h4 {
    color: var(--color-5);
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 5px;
    line-height: 1.2em;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
}

h5 {
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
    margin-top: 0;
}

h6 {
    color: var(--color-5);
    font-size: 1em;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 15px;
    margin-top: 0;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
}

.hero {
    background-color: var(--color-2);
    border-radius: 20px;
    height: 80vh;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 135px;
    overflow: hidden;
    position: relative;
}

.slider {
    background-color: #ddd0;
    height: 100%;
}

.right-arrow {
    background-color: var(--color-4);
    border-radius: 100%;
    box-shadow: 0 0 12px #00000069;
    height: 90px;
    margin-right: 1%;
    transform: scale(.5);
    width: 90px;
}

.right-arrow:hover {
    background-color: var(--color-3);
    box-shadow: none;
}

.left-arrow {
    background-color: var(--color-4);
    border-radius: 100%;
    box-shadow: none;
    height: 90px;
    margin-left: 1%;
    transform: scale(.5);
    transition: all .2s ease-in-out;
    width: 90px;
}

.left-arrow:hover {
    background-color: var(--color-3);
    box-shadow: 0 0 12px #00000069;
}

.slide-nav {
    display: flex;
    margin-bottom: 3%;
    padding-left: 8%;
}

.hero-slide {
    background-image: linear-gradient(268deg, #0000 1% 23%, #000000b0), url('../images/doctor-with-patient.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
}

.hero-slide._2 {
    background-image: linear-gradient(268deg, #0000 1% 23%, #000000b0), url('../images/Chhaya-using-iTrace.jpg');
    background-position: 0 0, 100% 0;
}

.hero-slide._3 {
    background-image: linear-gradient(268deg, #0000 1% 23%, #000000b0), url('../images/twins3-v2.jpg');
    background-position: 0 0, 0 30%;
}

.hero-slide-div {
    align-items: flex-start;
    display: flex;
    flex-flow: column;
    inset: 15% 8%;
    justify-content: center;
    padding-left: 0%;
    padding-right: 45%;
    padding-top: 0%;
    position: absolute;
    z-index: 10;
}

.hero-lg-headline h1 {
    color: var(--color);
    font-size: 3em;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.hero-sub {
    color: var(--color);
    font-size: 1.5em;
    line-height: 1.2em;
    margin-bottom: 30px;
}

.button {
    background-color: var(--color-3);
    background-image: url('../images/icons8-right-arrow.svg'), linear-gradient(180deg, #009cdeb0, var(--color-3));
    background-position: 95%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 20px, auto;
    border-radius: 50px;
    line-height: 1em;
    padding: 15px 40px 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

.button:hover {
    background-image: url('../images/icons8-right-arrow.svg');
    background-position: 95% !important;
    background-repeat: no-repeat !important;
    background-size: 20px;
    
}

.button.mini {
    background-size: 15px, auto;
    font-size: .8em;
    padding-left: 20px;
    padding-right: 30px;
    transition-property: none;
}

.button.mini:hover {
    background-color: var(--color-4);
}

.button.mini.no-icon {
    background-image: linear-gradient(180deg, #009cdeb0, var(--color-3));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-right: 20px;
}

.button.mini.no-icon:hover {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
}

.button.top-marg {
    margin-top: 10px;
}

.button.hover-light:hover {
    background-color: var(--color-4);
}

.button.marg {
    margin-right: 10px;
}

.nav-top {
    align-items: center;
    background-color: #0028550d;
    display: flex;
    height: 40px;
    justify-content: flex-end;
    padding-bottom: 0;
    padding-right: 5px;
    padding-top: 0;
}

.navbar {
    background-color: var(--color);
    inset: 0% 0% auto;
    position: fixed;
}

.top-nav-link {
    align-items: center;
    border-bottom: 3px #009cde00;
    color: var(--color-3);
    display: flex;
    font-weight: 400;
    line-height: 1em;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.top-nav-link:hover {
    border-bottom-color: #009cde;
    border-bottom-style: none;
    color: var(--color-4);
}

.top-nav-icon {
    width: 20px;
}

.top-link-txt {
    margin-left: 10px;
}

.dropdown {
    line-height: 1em;
}

.dropdown-toggle {
    color: var(--color-3);
    font-weight: 400;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-top: 10px;
}

.dropdown-toggle:hover {
    color: var(--color-4);
}

.icon {
    margin-right: 5px;
}

.nav-menu {
    align-items: center;
    display: flex;
    height: 95px;
    justify-content: flex-end;
    margin-right: 15px;
}

.dropdown-list {
    background-color: #ddd;
}

.dropdown-list.w--open {
    background-color: var(--color);
    box-shadow: 0 13px 12px -5px #0003;
}

.dropdown-list.flex.w--open {
    display: flex;
    right: 0;
}

.dropdown-list.end.w--open {
    right: 5px;
}

.dd-link {
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.dd-link:hover {
    background-color: var(--color-3);
    color: #fff;
}

.dd-link-holder {
    display: flex;
    flex-flow: column;
}

.mobile-contact {
    display: none !important;
}

.image {
    height: 65px;
}

.brand {
    margin-bottom: 15px;
    margin-left: 20px;
    margin-top: 15px;
}

.nav-bar-line {
    border-bottom: 1px solid var(--color-3);
    inset: auto 0% 0%;
    position: absolute;
}

.section {
    padding-bottom: 5%;
    padding-top: 5%;
    position: relative;
}

.section.lt-blue {
    background-color: #0028551a;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
}

.section.lt-blue.top-marg {
    margin-top: 20px;
}

.section.less {
    padding-bottom: 20px;
    padding-top: 20px;
}

.wrap {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.wrap.flex {
    display: flex;
    justify-content: space-between;
}

.wrap.flex.top-marg {
    margin-top: 5%;
}

.wrap.flex.top-marg._100 {
    width: 100%;
}

.wrap.flex.blog {
    margin-top: 30px;
}

.wrap.flex._100 {
    margin-left: 20px;
    margin-right: 5%;
    width: auto;
}

.wrap.center {
    align-items: center;
    display: flex;
    flex-flow: column;
    text-align: center;
}

.wrap._w-bg {
    background-attachment: scroll, fixed;
    background-image: linear-gradient(312deg, var(--color), #ffffffc2 46%, #ffffff7d 66%, #ffffff42 91%, #fff0), url('../images/pattern.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 5%;
    width: auto;
}

.wrap._w-bg.more-pad {
    padding-left: 8%;
    padding-right: 8%;
}

.wrap._w-bg.abs {
    inset: 0%;
    position: absolute;
}

.wrap._w-bg.callout-center {
    background-attachment: scroll, scroll, fixed;
    background-image: linear-gradient(to bottom, #002855d9, #002855d9), linear-gradient(312deg, var(--color), #ffffffc2 46%, #ffffff7d 66%, #ffffff42 91%, #fff0), url('../images/pattern.jpg');
    background-position: 0 0, 0 0, 0 0;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    color: var(--color);
    text-align: center;
}

.wrap._100 {
    width: 100%;
}

.green-line {
    background-color: var(--color-5);
    border-radius: 50px;
    height: 5px;
    margin-top: 30px;
    width: 250px;
}

.green-line.less-top {
    margin-top: 0;
}

.img-cover-div {
    object-fit: cover;
    overflow: hidden;
}

.img-cover-div._40 {
    border-radius: 20px;
    width: 40%;
}

.img-cover-div.serv {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: flex-end;
    margin-bottom: 0;
    margin-right: 0;
    width: auto;
}

.img-cover-div.round {
    border-radius: 10px;
    max-height: 500px;
    position: relative;
}

.img-cover-div._30 {
    border-radius: 10px;
    width: 30%;
}

.img-cover-div._30.l {
    margin-bottom: 10px;
    max-height: 175px;
    width: 100%;
}

.img-cover-div.doc {
    align-items: center;
    border: 3px #009cde;
    border-radius: 0%;
    display: flex;
    flex-flow: column;
    height: 225px;
    justify-content: flex-start;
    margin-bottom: 10px;
    min-height: 225px;
    width: 100%;
}

.img-cover-div.doc.mid {
    height: 225px;
    justify-content: flex-start;
    min-height: 0;
}

.img-cover-div.serv {
    align-items: center;
    border-radius: 0;
    display: flex;
    flex-flow: column;
    height: 100%;
    inset: 0%;
    justify-content: flex-end;
    margin-bottom: 0;
    margin-right: 0;
    position: absolute;
    width: auto;
    z-index: 1;
}

.img-cover-div._48 {
    width: 48%;
}

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

.cover-img.zoom {
    height: 120%;
    max-width: none;
    min-height: 120%;
    min-width: 120%;
    width: 120%;
}

.txt-div {
    align-items: flex-start;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-bottom: 40px;
    padding-top: 40px;
}

.txt-div._55 {
    width: 55%;
}

.txt-div._55.blog {
    justify-content: space-between;
    padding-bottom: 0;
    padding-top: 10px;
    position: relative;
}

.txt-div._60 {
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 50px;
    width: 60%;
}

.txt-div._48 {
    width: 48%;
}

.slide {
    height: 100%;
    margin-left: 0%;
    margin-right: 0%;
}

.top-txt-holder {
    margin-bottom: 50px;
    margin-left: 50px;
    padding-right: 0%;
    width: 90%;
}

.why-choose-items {
    background-color: var(--color);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    min-width: 150%;
    padding: 20px 0 20px 20px;
}

.why-div {
    background-color: #7222570d;
    border-radius: 10px;
    border-right: 1px none var(--color-7);
    line-height: 1.5em;
    padding: 15px;
    width: 19.25%;
}

.why-div.end {
    border-radius: 15px;
    border-right-style: none;
    padding: 20px;
}

.icon-holder {
    align-items: center;
    background-color: var(--color-7);
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    height: 50px;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px;
    width: 50px;
}

.icon-holder.blue {
    background-color: var(--color-3);
    border: 1px solid var(--color-4);
}

.prple {
    color: var(--color-7);
}

.serv-txt {
    min-height: 40px;
}

.resource-holder {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    min-height: 150px;
    width: 100%;
}

.resource-div {
    align-items: center;
    background-color: #00285526;
    border-radius: 10px;
    border-right: 1px none var(--color-7);
    color: var(--color-3);
    display: flex;
    flex-flow: column;
    font-size: 1.3em;
    font-weight: 600;
    justify-content: center;
    line-height: 1.5em;
    padding: 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: none;
    width: 23%;
}

.resource-div:hover {
    background-color: #002855;
    color: var(--color);
    transform: scale(1.05);
}

.blue {
    color: var(--color-3);
}

.grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 90%;
}

.testimonial-div {
    align-items: flex-start;
    background-color: #009cde1a;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px;
}

.image-2 {
    margin-bottom: 20px;
    max-width: 150px;
}

.lg-p {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
}

.image-3 {
    margin-bottom: 10px;
    max-width: 50px;
}

.review-buttons {
    align-items: flex-start;
    display: flex;
    flex-flow: column;
    inset: 0%;
    justify-content: flex-end;
    padding: 20px;
    position: absolute;
    z-index: 5;
}

.blog-link {
    background-color: var(--color);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none;
    width: 49%;
}

.blog-top-div {
    width: 100%;
}

.h3-no-kern {
    letter-spacing: 0;
}

.h3-dark {
    color: var(--color-7);
    margin-top: 0;
}

.blog-arrow-div {
    align-items: center;
    background-color: var(--color-3);
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    height: 40px;
    inset: auto 0% 0% auto;
    justify-content: center;
    padding: 10px;
    position: absolute;
    width: 40px;
}

.address-div {
    background-color: #0028551a;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    padding: 25px;
    width: 24%;
}

.address-div.btm {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    justify-content: flex-start;
}

.address-txt {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
}

.address {
    line-height: 1.4em;
    margin-bottom: 10px;
    max-width: none;
}

.address-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.button-div {
    align-items: center;
    display: flex;
    justify-content: center;
}

.grid-2 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1.75fr 1fr 1fr;
    grid-template-rows: auto;
}

.h3-no-top {
    margin-top: 0;
}

.text-field {
    background-color: #00285599;
    border: 0 solid #000;
    border-radius: 5px;
}

.text-field:focus, .text-field::placeholder {
    color: var(--color);
}

.radio-holder {
    align-items: center;
    display: flex;
    font-weight: 500;
    margin-bottom: 10px;
}

.radio-button-field {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    margin-left: 15px;
}

.radio-button {
    margin-right: 10px;
}

.recaptcha {
    margin-bottom: 20px;
}

.form-block {
    margin-bottom: 0;
}

.brand-2 {
    margin-bottom: 20px;
    max-width: 200px;
}

.socials {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}

.social-link {
    align-items: center;
    background-color: var(--color-3);
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    height: 35px;
    justify-content: center;
    margin-right: 8px;
    padding: 8px;
    width: 35px;
}

.social-link:hover {
    opacity: .5;
}

.ql-holder {
    align-items: flex-start;
    display: flex;
    flex-flow: wrap;
    margin-bottom: 20px;
}

.ql {
    color: var(--color-3);
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 10px;
    margin-right: 15px;
    text-decoration: none;
}

.ql:hover {
    color: var(--color-4);
}

.utility-page-wrap {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    width: 100vw;
}

.utility-page-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 260px;
}

.utility-page-form {
    align-items: stretch;
    display: flex;
    flex-direction: column;
}

.search {
    display: flex;
    margin-bottom: 20px;
}

.search-input {
    background-color: #00285599;
    border: 1px #000;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    height: 40px;
    margin-bottom: 0;
}

.search-input:focus, .search-input::placeholder {
    color: var(--color);
}

.search-button {
    background-color: var(--color-4);
    background-image: url('../images/icons8-search.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    height: 40px;
    width: 40px;
}

.link {
    color: var(--color-7);
    text-decoration: none;
}

.link:hover {
    color: var(--color-4);
}

.div-block {
    line-height: 1.5em;
}

.icon-full {
    width: 100%;
}

.team-wrap {
    align-items: flex-start;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    max-width: 1600px;
    width: 95%;
}

.slide-content-wrapper {
    align-items: center;
    background-color: #ffffff80;
    border-radius: 0;
    color: #002855;
    display: flex;
    flex-flow: column;
    font-weight: 500;
    height: auto;
    justify-content: flex-start;
    line-height: 1.1em;
    margin: 2% .5% 0%;
    min-height: 235px;
    padding: 10px 10px 0;
    text-align: center;
    text-decoration: none;
    width: 15%;
}

.h5-doc {
    font-size: .8em;
    line-height: 1.2em;
}

.green-line-2 {
    background-color: #00685e;
    border-radius: 50px;
    height: 5px;
    margin-top: 30px;
    width: 250px;
}

.green-line-2.serv {
    margin-bottom: 10px;
    margin-top: -5px;
    width: 150px;
}

.pattern-bg-div {
    background-attachment: fixed;
    background-image: url('../images/pattern.jpg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0%;
    mix-blend-mode: color-burn;
    position: absolute;
}

.serv-slide-wrap-2 {
    border-radius: 0;
    display: flex;
    flex-flow: column;
    inset: 0%;
    margin: 1%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    width: 23%;
}

.h3-white-2 {
    color: #fff;
}

.h3-white-2.min {
    min-height: 50px;
}

.serv-wrap {
    align-items: flex-start;
    display: flex;
    flex-flow: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    position: relative;
    width: 90%;
}

.serv-button-holder-2 {
    align-items: flex-start;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #002855c4;
    border-radius: 0;
    display: flex;
    flex-flow: column;
    height: 100%;
    inset: 0%;
    justify-content: center;
    margin-bottom: 0%;
    padding: 20px;
    position: absolute;
    z-index: 5;
}

.wrap-2 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 90%;
    z-index: 1;
}

.wrap-2.center {
    align-items: center;
    display: flex;
    flex-flow: column;
    position: relative;
    text-align: center;
    z-index: 5;
}

.serv-text-div-2 {
    align-items: flex-start;
    background-image: linear-gradient(#0000, #000000b8);
    color: #fff;
    display: flex;
    flex-flow: column;
    inset: 0%;
    justify-content: flex-end;
    line-height: 1.2em;
    padding: 20px;
    position: absolute;
    z-index: 1;
}

.footer {
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
}

.ip-header {
    background-image: url('../images/pattern.jpg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15% 5% 4%;
}

.breadcrumbs {
    align-items: center;
    display: flex;
    padding: 10px 5%;
}

.bc-link {
    color: var(--color-4);
    line-height: 1.2em;
    margin-right: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.bc-link:hover {
    color: var(--color-5);
}

.bc-link.current:hover {
    color: var(--color-4);
}

.bc-arrows {
    line-height: 1.2em;
    margin-right: 10px;
}

.h2-white {
    color: var(--color);
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2em;
    }

    .right-arrow, .left-arrow {
        display: none;
    }

    .slide-nav {
        padding-left: 5%;
    }

    .hero-slide {
        background-position: 0 0, 100% 0;
    }

    .hero-slide._3 {
        background-position: 0 0, 50%;
    }

    .hero-slide-div {
        left: 5%;
        right: 5%;
        width: auto;
    }

    .hero-lg-headline {
        font-size: 2.5em;
    }

    .button.hover-light.top-marg.mini {
        font-size: .7em;
        padding-left: 15px;
    }

    .button.hover-light.mini {
        font-size: .7em;
        padding-bottom: 8px;
        padding-left: 15px;
        padding-top: 8px;
    }

    .dropdown, .dropdown-toggle {
        display: block;
    }

    .nav-menu {
        background-color: var(--color);
        display: block;
        flex-flow: column;
        height: auto;
        margin-right: 0;
        padding-bottom: 10px;
        padding-right: 10px;
    }

    .mobile-contact {
        display: flex !important;
    }

    .wrap.flex.top-marg._100 {
        margin-left: 0;
    }

    .wrap.flex.top-marg._100.mob-h {
        flex-flow: row;
    }

    .wrap.flex.blog, .wrap.flex._100 {
        flex-flow: column;
    }

    .wrap._w-bg {
        background-attachment: scroll, scroll;
        background-image: linear-gradient(312deg, var(--color), #ffffffc2 46%, #ffffff7d 66%, #ffffff42 91%, #fff0), url('../images/pattern.jpg');
    }

    .wrap._w-bg.more-pad {
        background-attachment: scroll, scroll;
        background-image: linear-gradient(312deg, var(--color), #ffffffc2 46%, #ffffff7d 66%, #ffffff42 91%, #fff0), url('../images/pattern.jpg');
        padding: 5%;
    }

    .wrap._w-bg.abs {
        background-attachment: scroll, scroll;
        background-image: linear-gradient(312deg, var(--color), #ffffffc2 46%, #ffffff7d 66%, #ffffff42 91%, #fff0), url('../images/pattern.jpg');
    }

    .img-cover-div._40.m-100 {
        width: 100%;
    }

    .img-cover-div.doc {
        height: 200px;
        max-height: 200px;
        min-height: 200px;
    }

    .img-cover-div.serv {
        background-color: var(--color-3);
        position: static;
    }

    .txt-div._60 {
        align-items: flex-start;
        padding: 20px 0 0;
        width: 100%;
    }

    .top-txt-holder {
        margin-left: 0;
    }

    .why-choose-items {
        flex-flow: wrap;
        justify-content: flex-start;
        min-width: 0;
        padding: 0;
    }

    .why-div {
        margin-bottom: 15px;
        margin-right: 15px;
        width: 31%;
    }

    .resource-holder {
        flex-flow: wrap;
    }

    .resource-div {
        margin-bottom: 4%;
        width: 48%;
    }

    .grid {
        display: flex;
        flex-flow: column;
    }

    .blog-link {
        margin-bottom: 20px;
        width: 100%;
    }

    .address-div {
        margin-bottom: 4%;
        width: 48%;
    }

    .address-container {
        flex-flow: wrap;
    }

    .grid-2 {
        display: flex;
        flex-flow: column;
    }

    .team-wrap {
        margin-top: 0;
    }

    .slide-content-wrapper {
        min-height: 230px;
        width: 24%;
    }

    .serv-slide-wrap-2 {
        background-color: var(--color-3);
        justify-content: flex-start;
        min-height: 0;
        width: 31%;
    }

    .serv-wrap {
        background-color: var(--color-3);
        justify-content: space-between;
        margin-top: 0;
        padding: 5px;
        z-index: 2;
    }

    .serv-button-holder-2 {
        background-color: var(--color-3);
        padding: 10px 0;
        position: static;
    }

    .serv-text-div-2 {
        background-color: var(--color-3);
        background-image: none;
        padding: 20px 10px 10px;
        position: static;
    }

    .menu-button.w--open {
        background-color: var(--color-3);
    }

    .ip-header {
        padding-top: 22%;
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.2em;
    }

    .hero {
        height: 500px;
    }

    .hero-slide._3 {
        background-position: 0 0, 100% 100%;
    }

    .hero-slide-div {
        padding-right: 25%;
    }

    .hero-lg-headline {
        font-size: 2em;
    }

    .hero-sub {
        font-size: 1.2em;
    }

    .top-nav-link {
        padding-left: 0;
        padding-right: 10px;
    }

    .top-link-txt {
        display: none;
    }

    .image {
        height: 45px;
    }

    .brand {
        margin-bottom: 10px;
        margin-top: 10px;
        padding-left: 0;
    }

    .wrap.flex, .wrap.flex.top-marg._100.mob-h {
        flex-flow: column;
    }

    .img-cover-div._40 {
        width: 100%;
    }

    .img-cover-div._40.max {
        max-height: 400px;
    }

    .img-cover-div.doc {
        height: 150px;
        max-height: 150px;
        min-height: 150px;
    }

    .img-cover-div._48 {
        width: 100%;
    }

    .txt-div._55 {
        padding-bottom: 0;
        padding-top: 20px;
        width: 100%;
    }

    .txt-div._48 {
        width: 100%;
    }

    .why-div {
        width: 30%;
    }

    .blog-link {
        flex-flow: column;
    }

    .slide-content-wrapper {
        width: 32%;
    }

    .serv-slide-wrap-2 {
        width: 48%;
    }

    .h3-white-2.min {
        min-height: 0;
    }

    .ip-header {
        padding-top: 25%;
    }
}

@media screen and (max-width: 479px) {
    h2 {
        font-size: 1.6em;
    }

    h4 {
        letter-spacing: 3px;
    }

    .hero {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 115px;
    }

    .hero-slide._2 {
        background-image: linear-gradient(172deg, #0000 1% 23%, #0000004d 38%, #00000082 66%, #000000b0), url('../images/Chhaya-using-iTrace.jpg');
        background-position: 0 0, 100% 0;
        background-size: auto, cover;
    }

    .hero-slide._3 {
        background-image: linear-gradient(219deg, #0000 1% 23%, #0000004a 37%, #00000078 60%, #000000b0), url('../images/twins3-v2.jpg');
        background-position: 0 0, 100% 100%;
        background-size: auto, cover;
    }

    .hero-slide-div {
        bottom: 10%;
        justify-content: flex-end;
        padding-right: 0%;
        top: 5%;
    }

    .hero-lg-headline {
        font-size: 1.6em;
    }

    .hero-sub {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .button {
        font-size: .9em;
        padding-left: 20px;
        padding-right: 40px;
        text-align: left;
    }

    .button.marg {
        margin-bottom: 10px;
    }

    .section.less {
        overflow: hidden;
    }

    .wrap._w-bg, .wrap._w-bg.more-pad {
        padding: 0%;
    }

    .wrap._w-bg.callout-center {
        padding: 5%;
    }

    .img-cover-div.doc {
        height: 200px;
        max-height: 250px;
        min-height: 250px;
    }

    .why-div {
        margin-right: 0;
        width: 100%;
    }

    .resource-div {
        width: 100%;
    }

    .grid {
        margin-top: 0;
    }

    .blog-link {
        padding: 10px;
    }

    .address-div {
        padding: 10px;
        width: 100%;
    }

    .button-div.stack {
        align-items: stretch;
        flex-flow: column;
    }

    .slide-content-wrapper, .serv-slide-wrap-2 {
        margin-left: 0%;
        margin-right: 0%;
        width: 100%;
    }

    .serv-wrap {
        padding: 10px;
    }

    .ip-header {
        padding-top: 40%;
    }

    .breadcrumbs {
        flex-flow: wrap;
    }

    .bc-link, .bc-arrows {
        margin-bottom: 10px;
    }

    .form {
        overflow: hidden;
    }
}


