﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /** @font family declaration */
    --tp-ff-body: 'Poppins';
    --tp-ff-heading: 'Poppins';
    --tp-ff-p: 'Poppins';
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    /** @color declaration */
    --tp-common-white: #ffffff;
    --tp-common-black: #020B18;
    --tp-common-black-2: #0C1B05;
    --tp-heading-primary: #020B18;
    --tp-headingDark-primary: #020B18;
    --tp-gradient-primary: linear-gradient(0deg, #0f0d1d 0%, rgba(135, 134, 142, 0.1019607843) 90%, rgba(255, 255, 255, 0) 100%);
    --tp-gradient-secondary: linear-gradient(20deg, #3c72fc 0%, rgba(60, 114, 252, 0.0509803922) 65%, rgba(60, 114, 252, 0) 100%);
    --tp-gradient-3: linear-gradient(0deg, #3c72fc 0%, #26408d 81%, #0f0d1d 100%);
    --tp-gradient-4: linear-gradient(0deg, #3c72fc 0%, rgba(60, 114, 252, 0.0509803922) 95%, rgba(60, 114, 252, 0) 100%);
    --tp-gradient-5: linear-gradient(-180deg, rgba(14, 99, 255, 0) 50.71%, #d90a2c 95.16%);
    --tp-grey-1: #F6F7F9;
    --tp-grey-2: #f2f4f8;
    --tp-text-body: #55585B;
    --tp-text-1: #777181;
    --tp-theme-primary: #3c72fc;
    --tp-theme-secondary: #0f0d1d;
    --tp-theme-3: #b39336;
    --tp-theme-4: #111013;
    --tp-border-primary: #EAEBED;
    --tp-border-secondary: #F0F2F4;
}
/*---------------------------------
	typography css start 
---------------------------------*/
body {
    font-family: var(--tp-ff-body) !important;
    font-size: 14px;
    font-weight: 400;
    color: var(--tp-text-body);
    line-height: 26px;
}

sup {
    font-weight: 500;
}
a {
    text-decoration: none;
}
b {
    color: #3f3f3f;
}
ul {
    margin: 0px;
    padding: 0px;
}
img {
    max-width: 100%;
}
.button {
    border: 2px solid #00a0ac;
    color: #00a0ac;
    padding: 10px 35px 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: UPPERCASE;
}
.button:hover {
    color: white;
    border-color: #00a0ac;
}
.button::after {
    content: '';
    position: absolute;
    background-color: #00a0ac;
    z-index: -1;
    padding: 0;
    display: block;
    transition: all 0.35s;
}
.button:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.35s;
}
.left-slide::after {
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
}
.button-default-outline {
    border: 2px solid #00a0ac;
    color: #00a0ac;
}
.button-default {
    background-color: #00a0ac;
    color: white;
    position: relative;
}
.button-default::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    z-index: -1;
    padding: 0.25em 0.5em;
    display: block;
    transition: all 0.35s;
    color: #151515;
}
.button-default:hover {
    color: #00a0ac;
    border: 2px solid #00a0ac;
}
.heading {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    color: #151515;
    text-transform: capitalize;
    word-spacing: .05em;
    font-size: 35px;
}
/*===================== Header Section CSS Start =======================*/
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.sticky .rd-navbar-creative.rd-navbar-static {
    background: #ffffff;
    box-shadow: 0 0 0.5rem #c5c5c5;
}
.rd-navbar-relative {
    position: relative;
}
.rd-navbar-absolute {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1008;
}
.rd-navbar-creative.rd-navbar-static {
    background: transparent;
}
.rd-navbar-static {
    display: block;
}
.rd-navbar.rd-navbar-fixed + .rd-navbar.rd-navbar--is-clone,
.rd-navbar.rd-navbar-sidebar + .rd-navbar.rd-navbar--is-clone {
    display: none;
}
.rd-navbar-toggle {
    display: inline-block;
    position: relative;
    width: 42px;
    height: 42px;
    line-height: 42px;
    cursor: pointer;
    color: #ffffff;
    background-color: transparent;
    border: none;
    display: none;
}
.rd-navbar-toggle span {
    position: relative;
    display: block;
    margin: auto;
    transition: .3s all ease;
}
.rd-navbar-toggle span:after, .rd-navbar-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    transition: .3s all ease;
}
.rd-navbar-toggle span:after {
    top: 8px;
}
.rd-navbar-toggle span:after, .rd-navbar-toggle span:before, .rd-navbar-toggle span {
    width: 24px;
    height: 4px;
    background-color: #ffffff;
    backface-visibility: hidden;
    border-radius: 0;
}
.rd-navbar-toggle span {
    transform: rotate(180deg);
}
.rd-navbar-toggle span:before, .rd-navbar-toggle span:after {
    transform-origin: 1.71429px center;
}
.rd-navbar-toggle.active span {
    transform: rotate(360deg);
}
.rd-navbar-toggle.active span:before, .rd-navbar-toggle.active span:after {
    top: 0;
    width: 15px;
}
.rd-navbar-toggle.active span:before {
    -webkit-transform: rotate3d(0, 0, 1, -40deg);
    transform: rotate3d(0, 0, 1, -40deg);
}
.rd-navbar-toggle.active span:after {
    -webkit-transform: rotate3d(0, 0, 1, 40deg);
    transform: rotate3d(0, 0, 1, 40deg);
}
.rd-navbar-collapse-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}
.rd-navbar-collapse-toggle span {
    top: 50%;
    margin-top: -3px;
}
.rd-navbar-collapse-toggle span, .rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
    position: absolute;
    width: 6px;
    height: 6px;
    line-height: 6px;
    text-align: center;
    background: #ffffff;
    left: 50%;
    margin-left: -3px;
    border-radius: 50%;
    transition: .3s all ease;
}
.rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
    content: '';
}
.rd-navbar-collapse-toggle span:before {
    bottom: 100%;
    margin-bottom: 3px;
}
.rd-navbar-collapse-toggle span:after {
    top: 100%;
    margin-top: 3px;
}
.rd-navbar-collapse-toggle.active span {
    transform: scale(0.7);
}
.rd-navbar-collapse-toggle.active span:before {
    transform: translateY(18px);
}
.rd-navbar-collapse-toggle.active span:after {
    transform: translateY(-18px);
}
.rd-navbar-brand a {
    display: block;
}
.rd-navbar-creative.rd-navbar-static .brand-logo-dark {
    display: none;
}
.rd-navbar-creative.rd-navbar-static .brand-logo-light {
    display: block;
    width: auto;
    height: 70px;
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-main-element {
    display: flex;
    align-items: center;
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-nav-wrap {
    display: flex;
    align-items: center;
}
.rd-navbar-static .rd-nav-item {
    display: inline-block;
}
.rd-navbar-creative.rd-navbar-static .rd-nav-item .rd-nav-link {
    padding: 8px 15px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.rd-navbar-creative.rd-navbar-static .rd-nav-link:hover {
    color: #00a0ac;
    border-color: #00a0ac;
}
.rd-navbar-static .rd-nav-item.active .rd-nav-link {
    color: #00a0ac;
    background: transparent;
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-aside, .rd-navbar-creative.rd-navbar-static .rd-navbar-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.rd-navbar-wrap, .rd-navbar, .rd-menu, .rd-navbar-nav, .rd-navbar-panel, .rd-navbar-static .rd-menu, .rd-navbar-fixed .rd-navbar-nav-wrap, .rd-navbar-fixed .rd-navbar-submenu {
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
}
.rd-navbar-static .rd-nav-link {
    position: relative;
    display: inline-block;
    color: #000000;
    font-size: 14px;
    line-height: 1.33;
    transition: .25s;
}
@media screen and (min-width: 1200px) {
    .rd-navbar-creative.rd-navbar-static .rd-navbar-main {
        padding: 26px 0;
    }
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
}
.highlightATxt a {
    color: #fff;
    background: linear-gradient(to right, #006123 0, #00a0ac 10%, #000 20%);
    background-position: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    color: #000;
    font-weight: 500 !important;
    border-bottom: none !important;
}
.highlightATxt a:hover {
    border-bottom: none !important;
}
@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

/*===================== Slider Section CSS Start =======================*/
.swiper-container {
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.animeslide-slide {
    color: #fff;
}
.animeslide-slide {
    position: relative;
    min-height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 50px 0;
    background-position: center center;
    background-repeat: no-repeat;
    /*white-space: nowrap;*/
}
.animeslide-slide .container {
    position: relative;
}
.animeslide-slide.swiper-slide-active [data-animate] {
    opacity: 1;
    transform: none;
}
.animeslide-slide.swiper-slide-active .animeslide-heading {
    transition-delay: 0.6s;
}
.animeslide-slide.swiper-slide-active .animeslide-desc {
    transition-delay: 1s;
}
.animeslide-heading {
    margin-bottom: 10px;
    transition-delay: 3s;
    color: black;
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    text-transform: capitalize;
    font-style: normal;
    z-index: 9;
    position: relative;
}
.swiper-slide p {
    color: black;
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    text-transform: capitalize;
    font-style: normal;
    z-index: 9;
    position: relative;
}
.swiper-slide b {
    color: black;
}
.animeslide-heading span {
    font-size: 16px;
    background-color: #f08723;
    padding: 6px 12px 7px;
    border-radius: 8px;
    font-weight: normal;
}
.animeslide-desc {
    padding: 15px 22px;
    border-radius: 8px;
    background-color: #202238;
    max-width: 480px;
    opacity: 0.9;
}
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}
[data-animate="bottom"] {
    transform: translate3d(0, 15px, 0);
}
.animeslide-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 8px;
    max-width: 200px;
    z-index: 1;
    padding: 0px 35px 15px;
    left: 0;
    font-size: 14px;
}
.animeslide-bottom .cell {
    position: relative;
    opacity: 1;
    z-index: 2;
    height: 40px;
    bottom: inherit;
}
.animeslide-bottom .animeslide-scrollbar {
    margin-top: 16px;
}
.animeslide-bottom .animeslide-scrollbar-drag {
    height: 6px;
}
.animeslide-bottom .animeslide-pagination {
    font-size: 20px;
    bottom: inherit;
    color: #000000;
}
.animeslide-bottom .animeslide-pagination b {
    font-size: 20px;
    margin-top: -5px;
}
.animeslide-bottom .animeslide-pagination span {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 20px;
}
.animeslide-button-next,
.animeslide-button-prev {
    outline: none;
}
.animeslide-button-next::after,
.animeslide-button-prev::after {
    font-size: 22px;
    color: #000;
}
.swiper-bg {
    background: url(../images/swiper-bg.png);
    background-size: cover;
}
.swiper-img-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .swiper-img-block {
        justify-content: flex-end;
    }
}
.swiper-img-block-inner .img-block-inner-item {
    position: relative;
}
.swiper-img-block-inner .img-block-inner-item:first-child {
    left: 20px;
    top: 50px;
    z-index: 1;
}
.swiper-img-block-inner .img-block-inner-item:last-child {
    right: 20px;
    top: 20px;
}
@media (min-width: 768px) {
    .swiper-img-block-inner {
        width: 40%;
        margin-right: 7%;
    }
}
@media (min-width: 992px) {
    .swiper-img-block-inner {
        width: 45%;
        margin-right: 5%;
    }
}
@media (min-width: 1200px) {
    .swiper-img-block-inner {
        text-align: center;
        margin-right: 4%;
    }
}
@keyframes move {
    0% {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    50% {
        transform: rotate3d(0, 1, 0, 20deg);
    }

    100% {
        transform: rotate3d(0, 0, 0, 0deg);
    }
}
.swiper-meta {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 15px;
}
 .swiper-meta > * {
     pointer-events: auto;
 }
.swiper-meta .contacts {
    text-align: center;
}
.swiper-meta .tel a {
    font-size: 20px;
    line-height: 24px;
    color: #00a0ac;
}
.request a {
    color: #000000;
    text-transform: uppercase;
}
.contacts i {
    color: #00a0ac;
}

/*=========================== About Us Section Start =============================*/
@media (max-width: 1399px) {
    .large-padding-tb {
        padding: 30px 0 30px;
    }
    .extra-mr {
        margin-right: 115px;
    }
    .optech-shape1 {
        right: -50px !important;
    }
    .optech-shape2 {
        left: 200px !important;
    }
}
.ml40 {
    margin-left: 40px;
}
section#about {
    scroll-margin-top: 70px;
}
.optech-default-content h2 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.15em;
    color: #151515;
    font-weight: 400;
    /*letter-spacing: 0.3px;*/
}
.optech-default-content h5 {
    margin-bottom: 15px;
}
.optech-thumb-position {
    position: absolute;
    width: 64%;
    bottom: -100px;
    right: -120px;
}
.optech-extra-mt {
    margin-top: 40px;
}
.optech-shape1 {
    position: absolute;
    top: 70px;
    right: 40px;
    z-index: -1;
}
.optech-shape2 {
    position: absolute;
    bottom: -92px;
    left: 250px;
    z-index: -1;
}
.optech-thumb {
    z-index: 0;
    position: relative;
}
.optech-default-content p {
    font-size: 14px;
    text-align: justify;
    word-spacing: -0.2px;
}
.optech-default-content h5 {
    font-size: 15px;
    line-height: 22px;
    color: #5b5b5b;
    font-weight: 400;
}
.optech-default-content span {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    color: #151515;
    text-transform: capitalize;
    word-spacing: .05em;
    font-size: 35px;
}
.about_img {
   /* border-radius: 10px 0px 0px 5px;
    box-shadow: 0px 0px 3px #cecece;*/
}
.large-padding-tb {
    padding: 30px 0 50px;
}
.extra-mr {
    margin-right: 80px;
}
a.tp-btn-teal {
    color: #00a0ac;
}
/*=========================== Experiance Section Start =============================*/
section.section.large-padding-tb.section-sm {
    padding: 50px 0px;
}
#particles-js {
    position: absolute;
    min-width: 280px;
    min-height: 280px;
    top: 0;
    left: 0;
}
@media (min-width: 576px) {
    #particles-js {
        min-width: 360px;
        min-height: 360px;
    }
}
#particles-js .particles-js-canvas-el {
    min-width: 280px;
    min-height: 280px;
}
@media (min-width: 576px) {
    #particles-js .particles-js-canvas-el {
        min-width: 360px !important;
        min-height: 360px !important;
        width: auto;
    }
    .border-2-column > div:nth-child(odd) .counter-amy {
        padding-left: 0;
    }
    .border-2-column > div:nth-child(even) {
        border-top: 1px solid #e1e1e1;
    }
    .border-2-column > div:nth-child(2) {
        /*border-top: none;*/
    }
    .border-2-column > div:nth-child(2) .counter-amy {
        padding-top: 15px;
    }
    .border-2-column > div:nth-last-child(2) .counter-amy {
        padding-bottom: 15px;
    }
    .border-2-column > div:nth-child(even) .counter-amy {
        padding-right: 0;
    }
    .border-2-column > div:nth-last-child(1) .counter-amy {
        padding-bottom: 0;
    }
}
.text-img {
    position: relative;
    display: inline-block;
   /* overflow: hidden;*/
    font-size: 320px;
    line-height: 80%;
    font-weight: 600;
    color: #151515;
    letter-spacing: -.06em;
    padding-right: 10px;
    height: auto;
}
a.text-img sup {
    font-size: 80px;
    position: absolute;
    top: 15px;
    -webkit-text-fill-color: #01636a;
    right: 5px;
}
.text-img:hover {
    color: #9b9b9b;
}

@media (min-width: 576px) {
    .text-img {
        font-size: 315px;
        height: auto;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .text-img {
        /* IE10 IE11 */
        line-height: 1;
    }
}

@supports (-webkit-background-clip: text) {
.text-img {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(transparent, transparent);
    background: -o-linear-gradient(transparent, transparent);
    background: linear-gradient(-62deg, #015056, #00a0ac);
    -webkit-background-clip: text;
}

.text-img > span {
    pointer-events: none;
}

.text-img:hover {
    animation-play-state: running;
    color: red;
}
@media (min-width: 576px) {
        .text-img {
            background-position-y: 22%;
        }
    }
}

@keyframes imgPos {
    0% {
        background-position-x: 0;
    }

    50% {
        background-position-x: 100%;
    }

    100% {
        background-position-x: 0;
    }
}
.text-width-extra-small {
    max-width: 320px;
}
.title-decoration-lines-left {
    position: relative;
    padding-left: 26px;
    font-size: 35px;
    color: #151515;
    font-weight: 400;
    /*letter-spacing: 0.5px;*/
    font-style: normal;
}
.title-decoration-lines-left::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: #d7d7d7;
}
.title-decoration-lines-left + p {
    margin-top: 25px;
}
.border-2-column > div:nth-child(1) .counter-amy {
    padding-top: 0;
}

.counter-amy {
    text-align: center;
    padding: 30px 10px;
}
.counter-amy-number {
    font-size: 80px;
    line-height: 0.8;
    font-weight: 400;
    /*letter-spacing: .1em;*/
    text-transform: uppercase;
    color: #151515;
    position: relative;
}
.counter-amy-number > * {
    display: inline-block;
}
.counter-amy-number .symbol {
    font-size: 50px;
    letter-spacing: 0;
    /*margin-left: -8px;*/
}
* + .counter-amy-title {
    margin-top: 10px;
}
.counter-amy-number i {
    color: #00a0ac;
    font-size: 45px;
    position: absolute;
    left: 50px;
    top: 20px;
}
.counter-amy-title {
    font-weight: 400;
    letter-spacing: .1em;
    color: #9b9b9b;
    font-size: 16px;
    line-height: 1.125;
    text-transform: uppercase;
}
.border-2-column > div {
    padding: 0;
    border-top: 1px solid #e1e1e1;
}
.border-2-column > div:nth-child(1) {
    border-top: none;
}
@media (min-width: 992px) {
    .section-sm {
        padding: 50px 0;
    }
}
@media (min-width: 768px) {
    .section-sm {
        padding: 40px 0;
    }
}
.section-sm {
    padding: 30px 0 50px;
}
@media (min-width: 768px) {
    .text-md-start {
        text-align: left !important;
    }
}

/*=========================== More Services Section Start =============================*/

* + .tabs-line-big {
    margin-top: 25px;
}
.tabs-horizontal.tabs-line .nav-tabs {
    justify-content: space-between;
    border-bottom: 3px solid #e1e1e1;
}
.tabs-custom .nav-tabs {
    font-size: 32px;
    line-height: 0;
    word-spacing: 0;
    border: 0;
    justify-content: center;
}
.tabs-custom .nav-link {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    color: #9b9b9b;
}
.tabs-horizontal.tabs-line .nav-link {
    position: relative;
    padding: 0 0 10px 0;
    background-color: transparent;
    border: 0;
}
.tabs-horizontal.tabs-line .nav-link.active, .tabs-horizontal.tabs-line .nav-link:hover {
    color: #00a0ac;
}
.tabs-horizontal.tabs-line .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 0;
    background: #00a0ac;
    transition: .22s ease;
}
.tabs-horizontal.tabs-line .nav-link.active::after {
    width: 100%;
}
.tabs-horizontal.tabs-line-big * + .tab-content {
    margin-top: 26px;
}
.tabs-line-big h5 + p {
    margin-top: 8px;
    color: #151515;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}
.clrblack {
    color: #151515;
    letter-spacing: .024em;
    font-size: 20px;
}
* + .group-sm {
    margin-top: 40px;
}
.group-sm .button-default-outline {
    margin-left: 12px;
}
.left-tab {
    height: 280px;
    overflow-y: auto;
}
.left-tab::-webkit-scrollbar {
    width: 5px;
}
.left-tab::-webkit-scrollbar-track {
    background: #d7fcfe;
    border-radius: 10px;
}
.left-tab::-webkit-scrollbar-thumb {
    background: #00a0ac;
    border-radius: 5px;
    height: 10px;
}
.tabbing_sec {
    z-index: 8;
    position: relative;
}
/*=========================== Key Features Section Start =============================*/
section#whyus {
    scroll-margin-top: 70px;
}
.section-header {
    text-align: center;
    padding-bottom: 40px;
}
.section-header h2 {
    margin-bottom: 8px;
}
.section-header p {
   /* color: #151515;
    font-weight: 400;*/
    font-size: 15px;
    letter-spacing: 0.5px;
    width: 70%;
    margin: auto;
    line-height: 26px;
}
.content {
    font-size: 14px;
    text-align: justify;
}
.about .content ul {
    list-style: none;
    padding: 0;
    height: 350px;
    overflow-y: auto;
}
.about .content ul li {
   padding: 15px 21px 15px 20px;
   position: relative;
   color: rgb(19 20 20);
   background: #f3f3f3;
   margin-bottom: 5px;
   border-radius: 8px;
   text-transform: uppercase;
}
.about .content ul i {
    color: #00a0ac;
    margin-right: 5px;
}
.about .content ul li:hover i, .about .content ul li:hover {
    position: relative;
    background: #00a0ac;
    color: #fff;
}
.about .content ul::-webkit-scrollbar {
    width: 5px;
}
.about .content ul::-webkit-scrollbar-track {
    background: #d7fcfe;
    border-radius: 10px;
}
.about .content ul::-webkit-scrollbar-thumb {
    background: #00a0ac;
    border-radius: 5px;
}
div#featurescarousel {
    margin-top: 50px;
}
.carousel-indicators [data-bs-target] {
    background-color: #00a0ac;
}

/*=========================== Call to action / Contact Us Section Start =============================*/
.call-to-action {
    background: linear-gradient(rgb(0 160 172 / 59%), rgb(0 160 172 / 87%)), url(../images/cta-bg.jpg) center center;
    background-size: cover;
    padding: 70px 60px;
    border-radius: 0px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    margin-bottom: 50px;
}
.call-to-action h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 8px;
    /*letter-spacing: normal;*/
}
.section-title p {
    color: #fff;
    margin-bottom: 20px;
    /*text-shadow: 0 0 2px black;*/
    font-weight: 400;
    font-size: 15px;
    width: 80%;
    margin: auto auto 20px;
}
.call-to-action .group-sm.group-middle a.button.left-slide {
    border: 2px solid white;
    color: white;
}
.call-to-action .group-sm.group-middle a.button.left-slide:hover {
    border: 2px solid #00a0ac;
}
.ml-15 {
    margin-left: 15px;
}
section#contact {
    scroll-margin-top: 70px;
}
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.contact-info h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #ffffff;
}
.contact-info ul {
    list-style: none;
}
.contact-info ul li {
    position: relative;
    padding-left: 60px;
    color: #444;
    margin-bottom: 25px;
}
.contact-info ul li .icon {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    color: #ffffff;
    background: #00a0ac;
    border-radius: 23px;
    text-align: center;
}
.contact-info ul li h5 {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    /*text-shadow: 0 0 2px black;*/
}
.contact-info ul li p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.2px;
    /*text-shadow: 0 0 2px black;*/
}
.contact-info ul li a {
    color: #ffffff;
    display: inline-block;
}
.icon-bg-1 {
    color: #fff;
    background-color: #1100ca !important;
    box-shadow: 0px 5px 15px rgba(17, 0, 202, 0.2);
}
.icon-bg-2 {
    color: #fff;
    background-color: #fbb019 !important;
    box-shadow: 0px 5px 15px rgba(251, 176, 25, 0.2);
}
.icon-bg-3 {
    color: #fff;
    background-color: #fd158f !important;
    box-shadow: 0px 5px 15px rgba(255, 53, 159, 0.2);
}
.contact-area .form input, .contact-area .form textarea {
    color: #151515;
    width: 100%;
    padding: 12px 20px;
    border: 0;
    height: 55px;
    background-color: #ffffff;
    font-weight: 400;
    border-radius: 0;
}
.form-group {
    margin-bottom: 25px;
}
.contact-area .form textarea {
    max-height: 320px;
    height: 55px;
    min-height: 55px;
}
.contact-area .form input:focus-visible, .contact-area .form textarea:focus-visible {
    outline: none;
}

/*=========================== Testimonial Section Start =============================*/

section#testimonials {
    scroll-margin-top: 70px;
}
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
    color: #151515;
}
.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #00a0ac;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 80px;
    opacity: .2;
    transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale3d(1.0, 1.0, 1);
}
#customers-testimonials .owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #00a0ac;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #00a0ac;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/*=========================== FAQ Section Start =============================*/

section#faq {
    scroll-margin-top: 70px;
}

@media (min-width: 1200px) {
    h2 + .row {
        margin-top: 50px;
    }
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1200px;
    }
}
.number-counter {
    counter-reset: counter;
}
.text-block-lined {
    border-left: 1px solid #aeb1be;
    padding-left: 15px;
}
@media (min-width: 992px) {
    .text-block-lined {
        padding-left: 15px;
        padding-right: 0px;
    }
    .text-block-lined .title + p {
        margin-top: 18px;
    }
}
.text-block-lined p {
   /* color: #474747;
    font-weight: 300;*/
    color: #55585B;
}
.text-block-lined .title + p {
    margin-top: 9px;
}
h5.title {
    font-weight: 400;
    color: #3a3a3a;
    font-size: 17px;
}
/*--- blog page css start here ---*/
.blog-page{
    padding:0px 0 0 0;
}
section.blog-banner {
    padding: 70px 0 0 0;
}

/*=========================== Footer Section Start =============================*/
.footer-top-wrapper {
    text-align: center;
    padding: 30px 0px 20px;
    border-top: 1px solid #aeb1be;
}
.footer-box p {
    color: #fff;
}
.footer-social-icon {
    margin: 10px 0 20px;
}
.footer-social-icon li {
    display: inline-block;
    margin-right: 10px;
}
.footer-social-icon li a {
    font-size: 15px;
    color: #5a5a5a;
    width: 30px;
    height: 30px;
    line-height: 30px;
   /* background: #fff;*/
    border-radius: 30px;
    text-align: center;
    display: block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-navber ul li {
    display: inline-block;
    margin: 0 20px;
}
.footer-navber ul li a {
    color: #5a5a5a;
    font-size: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-navber ul li a:hover {
    color: #000;
}
.footer-copyright p {
    margin-bottom: 3px;
    color: #5a5a5a;
}
.footer-social-icon li a:hover {
    color: #000000;
}
.footer-copyright {
    /*background-color: #dbdbdb;*/
    text-align: center;
}
/*=========================== Call Icon Start =============================*/
.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    bottom: 50px;
    background: #00a0ac;
    width: 3rem;
    height: 3rem;
    padding: 0.8rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 1.5rem;
     -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(223deg);
    transform: rotate(223deg);
}
@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 0 rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2);
        box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 0 rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2), 0 0 0 20px rgba(0, 160, 172, 0);
        box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2), 0 0 0 20px rgba(0, 160, 172, 0);
    }
}
@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 0 rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2);
        box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 0 rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2), 0 0 0 20px rgba(0, 160, 172, 0);
        box-shadow: 0 4px 10px rgba(0, 160, 172, 0.2), 0 0 0 5px rgba(0, 160, 172, 0.2), 0 0 0 10px rgba(0, 160, 172, 0.2), 0 0 0 20px rgba(0, 160, 172, 0);
    }
}
span.num {
    position: absolute;
    color: #00a0ac;
    left: -100%;
    bottom: -85%;
    font-size: 13px;
    width: max-content;
    background: white;
    padding: 0px 5px;
}

/*=========================== Blog Section Start =============================*/

.mt-50 {
    margin-top:50px;
}
section#blog {
    scroll-margin-top: 70px;
}
.blog-box img {
    border-radius: 6px;
    width: 100%;
}
.blog-titile h5 {
    font-size: 17px;
    text-align: center;
    margin: 10px 0px;
    color: #151515;
}
.blog-wrap:hover .blog-titile h5 {
    color: #00a0ac;
}
.shadow-effect strong {
    font-weight: 700;
    color: #146c94;
}
.feedback-from h5 {
    color:#fff;
}

/*  
 *  Pure CSS star rating that works without reversing order
 *  of inputs
 *  -------------------------------------------------------
 *  NOTE: For the styling to work, there needs to be a radio
 *        input selected by default. There also needs to be a
 *        radio input before the first star, regardless of
 *        whether you offer a 'no rating' or 0 stars option
 *  
 *  This codepen uses FontAwesome icons
 */
#full-stars-example {
    /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
    /* make hover effect work properly in IE */
    /* hide radio inputs */
    /* set icon padding and size */
    /* set default star color */
    /* set color of none icon when unchecked */
    /* if none icon is checked, make it red */
    /* if any input is checked, make its following siblings grey */
    /* make all stars orange on rating group hover */
    /* make hovered input's following siblings grey on hover */
    /* make none icon grey on rating group hover */
    /* make none icon red on hover */
}

    #full-stars-example .rating-group {
        display: inline-flex;
    }

    #full-stars-example .rating__icon {
        pointer-events: none;
    }

    #full-stars-example .rating__input {
        position: absolute !important;
        left: -9999px !important;
    }

    #full-stars-example .rating__label {
        cursor: pointer;
        padding: 0 0.1em;
        font-size: 2rem;
    }

    #full-stars-example .rating__icon--star {
        color: orange;
    }

    #full-stars-example .rating__icon--none {
        color: #eee;
    }

    #full-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
        color: red;
    }

    #full-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

    #full-stars-example .rating-group:hover .rating__label .rating__icon--star {
        color: orange;
    }

    #full-stars-example .rating__input:hover ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

    #full-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
        color: #eee;
    }

    #full-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
        color: red;
    }

#half-stars-example {
    /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
    /* make hover effect work properly in IE */
    /* hide radio inputs */
    /* set icon padding and size */
    /* add padding and positioning to half star labels */
    /* set default star color */
    /* set color of none icon when unchecked */
    /* if none icon is checked, make it red */
    /* if any input is checked, make its following siblings grey */
    /* make all stars orange on rating group hover */
    /* make hovered input's following siblings grey on hover */
    /* make none icon grey on rating group hover */
    /* make none icon red on hover */
}

    #half-stars-example .rating-group {
        display: inline-flex;
    }

    #half-stars-example .rating__icon {
        pointer-events: none;
    }

    #half-stars-example .rating__input {
        position: absolute !important;
        left: -9999px !important;
    }

    #half-stars-example .rating__label {
        cursor: pointer;
        /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
        padding: 0 0.1em;
        font-size: 2rem;
    }

    #half-stars-example .rating__label--half {
        padding-right: 0;
        margin-right: -0.6em;
        z-index: 2;
    }

    #half-stars-example .rating__icon--star {
        color: orange;
    }

    #half-stars-example .rating__icon--none {
        color: #eee;
    }

    #half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
        color: red;
    }

    #half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

    #half-stars-example .rating-group:hover .rating__label .rating__icon--star,
    #half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
        color: orange;
    }

    #half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
    #half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
        color: #ddd;
    }

    #half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
        color: #eee;
    }

    #half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
        color: red;
    }

#full-stars-example-two {
    /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
    /* make hover effect work properly in IE */
    /* hide radio inputs */
    /* hide 'none' input from screenreaders */
    /* set icon padding and size */
    /* set default star color */
    /* if any input is checked, make its following siblings grey */
    /* make all stars orange on rating group hover */
    /* make hovered input's following siblings grey on hover */
}

    #full-stars-example-two .rating-group {
        display: inline-flex;
    }

    #full-stars-example-two .rating__icon {
        pointer-events: none;
    }

    #full-stars-example-two .rating__input {
        position: absolute !important;
        left: -9999px !important;
    }

    #full-stars-example-two .rating__input--none {
        display: none;
    }

    #full-stars-example-two .rating__label {
        cursor: pointer;
        padding: 0 0.2em;
        font-size: 1.5rem;
    }

    #full-stars-example-two .rating__icon--star {
        color: orange;
    }

    #full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

    #full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
        color: orange;
    }

    #full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
        color: #ddd;
    }

.feedback-from span {
    font-size: 16px;
    color: #fff;
    margin: 6px 0 3px 0;
}

/*--- check box css start here ---*/

.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 10px;
}

    .checkbox input {
        position: absolute;
        width: 0;
        left: 50px;
        height: auto !important;
        opacity: 0;
        cursor: pointer;
        padding:0;

    }

    .checkbox .checkmark {
        position: relative;
        display: block;
        top: 0;
        left: 0;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 3px;
        outline: 1px solid #acacac;
        transition: all 0.2s ease;
    }
    .checkbox:hover .checkmark {
        background: #f4f4f5;
        transition: all 0.2s ease;
    }
    .checkbox input:checked ~ .checkmark {
        background: #3f7fed;
        outline: 1px solid rgb(95, 126, 240);
    }
    .checkbox input[type="radio"] ~ .checkmark {
        border-radius: 50%;
    }
    .checkbox .checkmark::after {
        position: absolute;
        display: block;
        content: "";
        left: 50%;
        top: 40%;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: translate(-50%, -50%) rotate(45deg);
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -moz-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        opacity: 0;
        transition: all 0.2s ease;
    }

    .checkbox input:checked ~ .checkmark::after {
        opacity: 1;
        transition: all 0.2s ease;
    }
    .checkbox{
        margin:0;
    }



    @media only screen and (max-width:1174px) {
        .rd-navbar-creative.rd-navbar-static .rd-nav-item .rd-nav-link {
        padding: 8px 8px;
    }
    .optech-thumb {
        text-align: center;
    }
    .large-padding-tb {
        padding: 30px 0 20px;
    }
    .section-header p {
        width:100%;
    }
    .about .content ul li {
        padding: 10px 10px 10px 12px;
    }
    .text-img {
        font-size: 200px;
    }
    a.text-img sup {
        font-size: 48px;
    }
    .title-decoration-lines-left {
        font-size: 28px;
    }
    .border-2-column > div:nth-child(1) .counter-amy {
        padding-top: 50px;
    }
    .counter-amy-number {
        font-size: 68px;
    }
    }

/*-- mobile css start here --*/
@media only screen and (max-width:767px) {
    button.rd-navbar-toggle.toggle-original {
        display: inline-block;
        background-color: #00a0ac;
        margin-left: auto;
        margin-right: 20px;
        margin-top: 13px;
    }
    .rd-navbar-main-element {
        position: fixed;
        left: -100%;
    }
    .rd-navbar-main-element.open {
        left: 0;
    }
    .toggle span {
        width: 100%;
        height: 2px;
        background: #fff;
        display: block;
        position: relative;
        cursor: pointer;
    }
    .toggle span:before,
    .toggle span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        transition: all 0.3s ease-out;
    }
    .toggle span:before {
        top: -10px;
    }
    .toggle span:after {
        top: 10px;
    }
    .toggle span.toggle {
        background: transparent;
    }
    .toggle span.toggle:before {
        top: 10px;
        transform: rotate(-42deg);
        background: #ffffff;
        left: 5px;
    }
    .toggle span.toggle:after {
        top: -8px;
        transform: rotate(42deg);
        background: #ffffff;
        left: 4px;
    }
    .sidebar {
        background: #fff;
        width: 235px;
        position: fixed;
        top: 0;
        left: -235px;
        height: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding-top: 20px;
        transition: all 0.3s ease-out;
    }
    .sidebar ul {
        list-style: none;
    }
    .sidebar ul li {
        display: block;
    }
    .sidebar ul li a {
        padding: 8px 15px;
        font-size: 16px;
        color: #222;
        font-family: arial;
        text-decoration: none;
        display: block;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease-out;
        font-weight: 500;
    }
    .sidebar ul li a:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        right: 50%;
        transform: translate(-50%,-50%);
        width: 0;
        height: 1px;
        background: #4CAF50;
        z-index: -1;
        transition: all 0.3s ease-out;
    }
    .sidebar ul li a:hover:before {
        width: 100%;
    }
    .sidebar ul li a:hover {
        color: #4CAF50;
    }
    .sidebarshow {
        left: 0;
    }
    .rd-navbar-creative.rd-navbar-static .rd-navbar-main-element {
        display: flex;
        align-items: flex-start;
    }
    .rd-navbar-static .rd-nav-item {
        display: block;
        padding: 0px 0px;
    }
    .rd-navbar-creative.rd-navbar-static .rd-nav-item .rd-nav-link {
        padding: 15px 15px;
        border-bottom: 1px solid transparent;
        margin-bottom: 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    .rd-navbar-creative.rd-navbar-static .rd-navbar-main {
        display: block;
    }
    .rd-navbar-panel {
        display: flex;
    }
    .ml40 {
        margin-left: 0;
    }
    .swiper-img-block {
        position: inherit;
    }
    .animeslide-heading {
        font-size: 16px;
        line-height: 22px;
    }
    .swiper-slide p {
        font-size: 13px;
        line-height: 21px;
    }
    .animeslide-slide {
        min-height: 360px;
    }
    .optech-default-content h2 {
        margin-bottom: 20px;
        font-size: 20px;
        margin-top: 20px;
    }
    .section-header h2, .call-to-action h3, .heading {
        font-size: 20px;
    }
    .heading {
        margin-bottom:15px;
    }
    .optech-default-content span {
        font-size: 23px;
    }
    .section-title p {
        width:100%;
    }
    .call-to-action {
        padding:30px 0;
    }
    .title-decoration-lines-left {
        font-size: 28px;
        text-align: center;
        margin: 20px 0 0 0;
    }
    .title-decoration-lines-left + p {
        margin-top: 20px;
        text-align: center;
    }
    .text-width-extra-small {
        text-align: center;
    }
    .counter-amy-number i {
        font-size: 40px;
        left: 12px;
        top: 5px;
    }
    .counter-amy-number {
        font-size: 48px;
    }
    .tabbing_sec {
        text-align:center;
    }
    .tabbing_sec .nav-item {
        margin: 4px 7px;
    }
    .tabs-horizontal.tabs-line-big * + .tab-content {
        margin-bottom: 30px;
    }
    h5.title {
        font-size: 15px;
    }
    }