/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url('https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,600,700,900&display=swap');

body {
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: #818385;
}

p,
.paragraph {
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #172231;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

h1,
.h1 {
    font-size: 70px;
}

h2,
.h2 {
    font-size: 48px;
}

h3,
.h3 {
    font-size: 44px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

/* Button style */
.btn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    padding: 15.5px 28px;
    border-radius: 35px;
    font-weight: 700;
    border: 1px solid;
    position: relative;
    z-index: 1;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
}

.btn:focus {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-lg {
    font-size: 20px;
    padding: 19px 35px;
}

.btn-md {
    font-size: 18px;
    padding: 17px 30px;
}

.btn-sm {
    font-size: 12px;
    padding: 5px 20px;
}

.btn-primary {
    background: #86c33a;
    color: #fff;
    border-color: #86c33a;
}

.btn-primary:active {
    background: #6b9c2e !important;
    border-color: #6b9c2e;
}

.btn-primary:hover {
    background: #6b9c2e;
    border-color: #6b9c2e;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #6b9c2e;
    border-color: #6b9c2e;
}

.btn-gray {
    background: #f5f6fa;
    color: #172231;
    border-color: #f5f6fa;
}

.btn-gray:active {
    background: #86c33a !important;
    border-color: #86c33a;
    color: #fff;
}

.btn-gray:hover {
    background: #86c33a;
    border-color: #86c33a;
    color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #6b9c2e;
    border-color: #6b9c2e;
}

.btn-secondary {
    background: transparent;
    color: #172231;
    padding-left: 0;
    border: 0;
}

.btn-secondary:active {
    background: transparent !important;
    color: #86c33a;
}

.btn-secondary:hover {
    background: transparent;
    color: #86c33a;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #86c33a;
    background-color: transparent;
    border: 0;
}

.btn-primary-outline {
    background: transparent;
    color: #172231;
    border: 2px solid #172231;
}

.btn-primary-outline:active {
    background: #86c33a !important;
    border-color: #86c33a;
    color: #fff;
}

.btn-primary-outline:hover {
    background: #86c33a;
    border-color: #86c33a;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #172231;
    border-color: #e7e7e7;
}

.btn-light:active {
    background: transparent !important;
    border-color: #fff;
    color: #fff;
}

.btn-light:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-light-alt:active {
    background: #86c33a !important;
    border-color: #86c33a;
    color: #fff;
}

.btn-light-alt:hover {
    background: #86c33a;
    border-color: #86c33a;
    color: #fff;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-light-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-light-outline:active {
    background: #6b9c2e !important;
    border-color: #6b9c2e;
    color: #fff;
}

.btn-light-outline:hover {
    background: #6b9c2e;
    border-color: #6b9c2e;
    color: #fff;
}

.btn-arrow {
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.btn-arrow::before {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    background: transparent;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    left: calc(85% + 5px);
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.btn-arrow::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #000;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    left: 85%;
}

.btn-arrow:hover::before {
    left: calc(85% + 10px);
    border-color: #86c33a;
}

.btn-arrow:hover::after {
    width: 20px;
    background: #86c33a;
}

/* hover effect */
.hover-ripple {
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
}

.hover-ripple:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

.hover-ripple:hover::after {
    -webkit-animation: sonarEffect 1s ease-out 50ms;
    animation: sonarEffect 1s ease-out 50ms;
}

.hover-ripple::after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    border-radius: inherit;
}

.hover-ripple.ripple-white:hover::after {
    -webkit-animation: sonarEffectWhite 1s ease-out 50ms;
    animation: sonarEffectWhite 1s ease-out 50ms;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.3;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.3;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes sonarEffectWhite {
    0% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.3;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes sonarEffectWhite {
    0% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.3;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #9ed060;
    color: #fff;
}

::selection {
    background: #9ed060;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.spinner {
    color: #86c33a;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

ol,
ul {
    list-style-type: none;
    margin: 0px;
    padding-left: 0px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

/*a:hover {
  color: #0065b0 !important;
}*/

a.text-white:hover,
a.text-light:hover {
    color: #86c33a !important;
}

/*a h4:hover, a h5:hover {
  color: #86c33a;
}*/

.slick-slide {
    outline: 0;
}

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

.section-sm {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-title {
    margin-bottom: 40px;
}

.section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: #86c33a;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-title-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    background: #86c33a;
    border-radius: 10px;
    right: -60%;
    top: 0;
}

.section-title-border::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    background: #86c33a;
    border-radius: 10px;
    right: -100%;
    top: 0;
}

.section-title-border.border-center {
    margin-left: calc(50% - 27px);
}

.section-title-border.border-white {
    background: #fff;
}

.section-title-border.border-white::before {
    background: #fff;
}

.section-title-border.border-white::after {
    background: #fff;
}

.section-title-border.border-inline {
    display: inline-block;
    margin-bottom: 5px;
}

.section-title-sm {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #818385;
}

.section-bottom-lg {
    padding-bottom: 240px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg-contain {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.border-color {
    border-color: #e7e7e7 !important;
}

/* overlay */
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .6;
}

.overlay-secondary {
    position: relative;
}

.overlay-secondary::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #252d39;
    opacity: .85;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #86c33a !important;
}

.bg-secondary {
    background: #252d39 !important;
}

.bg-secondary-darken {
    background: #1f2630 !important;
}

.bg-gray {
    background: #f5f6fa !important;
}

.bg-gray-white {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #f5f6fa), color-stop(0%, #fff));
    background-image: linear-gradient(to right, #f5f6fa 45%, #fff 0%);
}

.bg-white-gray {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #fff), color-stop(0%, #f5f6fa));
    background-image: linear-gradient(to right, #fff 45%, #f5f6fa 0%);
}

.bg-white2-gray {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(70%, #fff), color-stop(0%, #f5f6fa));
    background-image: linear-gradient(to right, #fff 70%, #f5f6fa 0%);
}

.text-primary {
    color: #ffc717 !important;
}

.text-color {
    color: #0065b0 !important;
}

.text-light {
    color: #ddd !important;
}

.text-dark {
    color: #172231;
}

.hilighted {
    background: #252d39;
    padding: 0 5px;
    border-radius: 2px;
    color: #fff;
}

.letter-spacing {
    letter-spacing: 2px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.zindex-1 {
    z-index: 1;
}

.zindex-0 {
    z-index: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.min-height-400 {
    min-height: 400px;
}

.border-muted {
    border-color: #404751 !important;
}

.rounded-top-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.flex-basis-33 {
    -ms-flex-preferred-size: 33.333333%;
    flex-basis: 33.333333%;
}

.icon {
    font-size: 40px;
}

.icon-sm {
    font-size: 34px;
}

.icon-xs {
    font-size: 22px;
}

.icon-lg {
    font-size: 56px;
}
.box-shadow {
    -webkit-box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    padding-bottom: 17px !important;
    padding-top: 25px !important;
}

.font-size-30 {
    font-size: 30px;
}

.font-weight-semebold {
    font-weight: 600 !important;
}

.font-secondary {
    font-family: "Barlow Condensed", sans-serif !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-none:hover {
    text-decoration: none !important;
}

.border-md-right {
    border-right: 1px solid;
}

@media (max-width: 767px) {
    .border-md-right {
        border: 0;
    }
}

.icon-bg {
    position: relative;
    background-color: rgba(134, 195, 58, 0.2);
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 120px 135px 110px 90px;
}

.icon-bg::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 5px;
    background: rgba(134, 195, 58, 0.05);
    border: 2px solid #86c33a;
    border-radius: 130px 120px 160px 130px;
}

.icon-bg .icon {
    line-height: 100px;
}

.water-wave {
    position: relative;
    -webkit-animation-name: water-wave;
    animation-name: water-wave;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.water-wave::before {
    -webkit-animation-name: water-wave;
    animation-name: water-wave;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes water-wave {
    0% {
        border-radius: 120px 135px 110px 90px;

        ::before {
            border-radius: 130px 120px 160px 130px;
        }
    }

    25% {
        border-radius: 130px 140px 100px 110px;

        ::before {
            border-radius: 100px 147px 140px 120px;
        }
    }

    50% {
        border-radius: 110px 97px 150px 100px;

        ::before {
            border-radius: 102px 147px 140px 120px;
        }
    }

    75% {
        border-radius: 80px 107px 120px 90px;

        ::before {
            border-radius: 102px 147px 140px 120px;
        }
    }

    100% {
        border-radius: 120px 135px 110px 90px;

        ::before {
            border-radius: 130px 120px 160px 130px;
        }
    }
}

@keyframes water-wave {
    0% {
        border-radius: 120px 135px 110px 90px;

        ::before {
            border-radius: 130px 120px 160px 130px;
        }
    }

    25% {
        border-radius: 130px 140px 100px 110px;

        ::before {
            border-radius: 100px 147px 140px 120px;
        }
    }

    50% {
        border-radius: 110px 97px 150px 100px;

        ::before {
            border-radius: 102px 147px 140px 120px;
        }
    }

    75% {
        border-radius: 80px 107px 120px 90px;

        ::before {
            border-radius: 102px 147px 140px 120px;
        }
    }

    100% {
        border-radius: 120px 135px 110px 90px;

        ::before {
            border-radius: 130px 120px 160px 130px;
        }
    }
}

/* breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* google map */
#map_canvas {
    height: 500px;
}

/* form control */
.form-control {
    height: 55px;
    padding: 0 30px;
}

.form-control-sm {
    height: 45px;
}

.form-control:focus {
    -webkit-box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    border-color: #86c33a !important;
}

.focus-shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

textarea.form-control {
    height: 150px;
}

textarea.form-control-sm {
    height: 100px;
}

/* /form control */
/* top header */
.top-header {
    font-size: 14px;
    padding: 10px 0px !important;
}

/* /top header */
/* navigation */
/*.navigation {
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 1;
}

.navbar {
  padding: 0;
}

.navbar-collapse {
  padding-bottom: 10px;
  transition: .2s ease;
}

.navbar .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 700;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: 100px;
  left: -25px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #172231;
  transition: .2s ease;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #86c33a;
  background: transparent;
}

.navbar-light .navbar-nav .nav-link {
  color: #172231;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #86c33a;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 15px;
}

@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 10px;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }
}
*/
/* search */
.search-btn {
    border: 0;
    background: transparent;
}

.search-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    visibility: hidden;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    opacity: 0;
}

.search-wrapper.open {
    visibility: visible;
    opacity: 1;
}

.search-box {
    height: 112px;
    width: 100%;
    border: 0;
    background: #fff;
    font-size: 30px;
    padding: 0;
}

.search-box:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.search-close {
    position: absolute;
    right: 5px;
    top: 40px;
    border: 0;
    background: transparent;
    page-break-after: 10px;
    font-size: 20px;
}

/* /navigation */
/* hero slider */
/*.hero-slider {
        padding: 100px 0px 190px;
}*/


.hero-section {
    padding-bottom: 200px;
    padding-top: 100px;
    height: 550px;
}

.hero-slider {
    overflow-x: hidden;
}

.hero-slider .prevArrow {
    left: 88.7%;
    background: #0065b0;
    border-radius: 0;
    width: 70px;
    height: 40px;
}

.hero-slider .nextArrow {
    right: 0px;
    background: #ffc717;
    border-radius: 0;
    width: 70px;
    height: 40px;
}

/*.hero-slider:hover .prevArrow {
  left: 35px;
}

.hero-slider:hover .nextArrow {
  right: 35px;
}*/

.slick-arrow::after {
    display: none;
}

.hero-slider .slick-arrow {
    top: 96.3%
}


/* /hero slider */
/* banner feature */
.banner-feature-wrapper {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
}

.banner-feature {
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.banner-feature:hover,
.banner-feature.active {
    background: #252d39 !important;
}

.banner-feature:hover h4,
.banner-feature:hover p,
.banner-feature.active h4,
.banner-feature.active p {
    color: #fff;
}

/* /banner feature */
/* about */
.image-bg {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
}

.about-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.philosophy-bg-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* /about */
/* funfacts */
.funfacts {
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .funfacts {
        background: #252d39;
    }
}

.funfacts .container {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    position: relative;
}

.funfacts .container::before {
    position: absolute;
    content: "";
    right: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: #252d39;
}

@media (max-width: 991px) {
    .funfacts .container {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    .funfacts .container::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .funfacts h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .funfacts h3 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .funfacts .icon-lg {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .funfacts .icon-lg {
        font-size: 50px;
    }
}

/* /funfacts */
/* feature */
.feature-img-bg {
    position: relative;
}

.feature-img-bg::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/feature-bg.png);
    top: -100px;
    right: -120px;
    height: 150%;
    width: 120%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 991px) {
    .feature-img-bg::before {
        display: none;
    }
}

.play-video {
    position: absolute;
    left: 0;
    bottom: 20%;
}

.play-icon {
    display: inline-block;
    min-width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    font-size: 30px;
}

/* /feature */
/* service */
.service-wrapper {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
}

.card-icon {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #86c33a;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 32px;
    left: 15px;
    top: -90px;
}

.service-bg-dots {
    position: relative;
}

.service-bg-dots::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/service-page-2.png);
    top: 0px;
    right: 0px;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

/* /service */
/* team */
.team-member-img img {
    position: relative;
    z-index: 2;
}

.team-member-img::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/team-member-bg.png);
    top: 0px;
    right: 0px;
    height: 60%;
    width: 60%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.team-member-img::after {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/team-member-bg.png);
    bottom: -40px;
    left: 0px;
    height: 60%;
    width: 60%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.team-member:hover .team-member-img::before {
    top: -20px;
    right: -20px;
}

.team-member:hover .team-member-img::after {
    bottom: -60px;
    left: -20px;
}

.team-member:hover .hover-icon {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.team-member:hover .hover-icon .social-icon a {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hover-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(134, 195, 58, 0.9);
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    z-index: 3;
    opacity: 0;
}

.hover-icon .social-icon a {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.social-icon li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    line-height: 45px;
    text-align: center;
}

.social-icon li a:hover {
    color: #86c33a;
    background: #fff;
}

.social-icon-alt li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    line-height: 45px;
    text-align: center;
}

.social-icon-alt li a:hover {
    color: #fff;
    background: #86c33a;
    border-color: #86c33a;
}

/* /team */
/* project */
.project-item img {
    -webkit-transition: .4s ease-in;
    transition: .4s ease-in;
}

.project-item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.project-item:hover .hover-overlay {
    opacity: 1;
}

.project-item:hover .hover-overlay a {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.hover-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: rgba(134, 195, 58, 0.9);
    -webkit-transition: .4s ease;
    transition: .4s ease;
    opacity: 0;
}

.hover-overlay a {
    position: relative;
    font-size: 46px;
    color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: .4s ease;
    transition: .4s ease;
    display: inline-block;
}

.uni-plus {
    position: relative;
    padding: 0 20px;
}

.uni-plus::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 40px;
    width: 2px;
    background: #fff;
}

.uni-plus::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 40px;
    background: #fff;
}

.filter-controls li {
    cursor: pointer;
}

.filter-controls li.mixitup-control-active {
    color: #86c33a !important;
}

/* /project */
/* testimonial */
.bg-dots {
    position: relative;
}

.bg-dots::before {
    position: absolute;
    content: "";
    background: url(../images/backgrounds/testimonial-bg-1.png);
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bg-dots .container {
    position: relative;
    z-index: 2;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: rgba(134, 195, 58, 0.5);
    color: #fff;
    border: 0;
    line-height: 70px;
    font-size: 35px;
}

.slick-arrow::before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background: transparent;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.slick-arrow::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

@media (max-width: 575px) {
    .slick-arrow {
        display: none;
    }
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:hover {
    background: #ccc;
}

.prevArrow {
    left: 0px;
}

.prevArrow::before {
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    right: 29px;
}

.prevArrow::after {
    right: 20px;
}

.nextArrow {
    right: 0px;
}

.nextArrow::before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 29px;
}

.nextArrow::after {
    left: 20px;
}

.testimonial-slider .nextArrow,
.testimonial-slider .prevArrow {
    opacity: 0;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.testimonial-slider:hover .nextArrow {
    opacity: 1;
    right: -100px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.testimonial-slider:hover .prevArrow {
    opacity: 1;
    left: -100px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.bg-quote {
    position: relative;
}

.bg-quote::before {
    position: absolute;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 150px;
    color: rgba(134, 195, 58, 0.3);
    top: -10px;
    line-height: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slick-dots {
    padding-left: 0;
    text-align: center;
    position: absolute;
    bottom: -185px;
    left: 0;
    right: 0;
    z-index: 9;
}

.slick-dots li {
    display: inline-block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 20px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.slick-dots li img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}



/* /testimonial */
/* clients logo */
.clients-logo {
    text-align: center;
    position: relative;
    height: 120px;
    width: 180px;
}

.clients-logo:hover .white {
    opacity: 0;
}

.clients-logo:hover .primary {
    opacity: 1;
}

.clients-logo .white {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 0 10px;
}

.clients-logo .primary {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 0 10px;
}

.customer-bg-shape {
    position: absolute;
    top: 0;
    right: 50%;
}

/* /clients logo */
/* footer */
.list-styled {
    padding-left: 0;
}

.list-styled li {
    position: relative;
    padding-left: 20px;
}

.list-styled li::before {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 14px;
    left: 0;
    top: 1px;
    color: #86c33a;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.list-styled li:hover::before {
    color: #86c33a !important;
}

.list-styled li:hover a {
    text-decoration: underline;
}

.list-styled li.text-light::before {
    color: #ddd;
}

.list-styled.style-circle li::before {
    content: "\f10c";
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 35px;
}

.newsletter-form:focus {
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form::-webkit-input-placeholder {
    color: #fff;
}

.newsletter-form::-ms-input-placeholder {
    color: #fff;
}

.newsletter-form::-webkit-input-placeholder {
    color: #fff;
}

.newsletter-form:-ms-input-placeholder {
    color: #fff;
}

.newsletter-form::placeholder {
    color: #fff;
}

.btn-subscribe {
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* /footer */
/* cta sm */
.cta-sm-bg {
    position: relative;
}

.cta-sm-bg::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: calc(100% - 10%);
    top: 0;
    background: url(../images/backgrounds/cta-sm-right.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.cta-sm-bg::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/backgrounds/cta-sm-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

/* /cta sm */
/* pricing */
.pricing-table {
    -webkit-transition: .2s ease;
    transition: .2s ease;
    position: relative;
}

.pricing-table::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: url(../images/backgrounds/pricing-table-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing-table.active {
    background: #86c33a;
    color: #fff;
}

.pricing-table.active h2,
.pricing-table.active h3,
.pricing-table.active h4,
.pricing-table.active h5,
.pricing-table.active h6 {
    color: #fff;
}

.pricing-duration {
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

.pricing-duration.active {
    font-weight: 600;
    color: #172231;
}

.pricing-switcher {
    text-align: center;
}

.pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    background: #86c33a;
    height: 40px;
    width: 100px;
}

.pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pricing-switcher label {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    color: #818385;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
    font-size: 16px;
}

.pricing-switcher label.monthly {
    right: 130px;
}

.pricing-switcher label.monthly::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 50px;
    border-radius: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -85px;
}

.pricing-switcher label.yearly {
    left: 130px;
}

.pricing-switcher label.yearly::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 50px;
    border-radius: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -85px;
}

.pricing-switcher .switch {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border-radius: 50em;
    transition: -webkit-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
}

.pricing-list li {
    position: relative;
    padding: 0 !important;
}

@media only screen and (min-width: 768px) {
    .pricing-list {
        margin: 3em 0 0;
    }

    .pricing-list:after {
        content: "";
        display: table;
        clear: both;
    }

    .pricing-list > li {
        width: 33.3333333333%;
        float: left;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.pricing-wrapper {
    position: relative;
}

.touch .pricing-wrapper {
    -webkit-perspective: 2000px;
    perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: rotate 0.5s;
    animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse 0.5s;
    animation: rotate-inverse 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
    opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: rotate-back 0.5s;
    animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse-back 0.5s;
    animation: rotate-inverse-back 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
}

.pricing-wrapper > li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pricing-wrapper .is-visible {
    position: relative;
    z-index: 5;
}

.pricing-wrapper .is-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
    z-index: 3 !important;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(200deg);
        transform: perspective(2000px) rotateY(200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(200deg);
        transform: perspective(2000px) rotateY(200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }
}

@-webkit-keyframes rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(20deg);
        transform: perspective(2000px) rotateY(20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

@keyframes rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(20deg);
        transform: perspective(2000px) rotateY(20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

@-webkit-keyframes rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-200deg);
        transform: perspective(2000px) rotateY(-200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }
}

@keyframes rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-200deg);
        transform: perspective(2000px) rotateY(-200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }
}

@-webkit-keyframes rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-20deg);
        transform: perspective(2000px) rotateY(-20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

@keyframes rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-20deg);
        transform: perspective(2000px) rotateY(-20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

/* /pricing */
/* blog */
.card-type {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 3px 10px;
    color: #fff;
    background: #86c33a;
    z-index: 1;
}

.card-meta {
    font-size: 14px;
}

.blog-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-shape-right {
    position: absolute;
    right: 0;
    top: 50%;
}

.clip-half-cycle {
    -webkit-clip-path: circle(157% at 50% -100%);
    clip-path: circle(157% at 50% -100%);
}

.title-border-left {
    position: relative;
    padding-left: 30px;
}

.title-border-left::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 30px;
    background: #86c33a;
}

.post-search {
    border: 0;
    background: transparent;
    position: absolute;
    bottom: 15px;
    right: 0;
}

.tag-list a {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(51, 77, 128, 0.12);
    box-shadow: 0px 5px 20px 0px rgba(51, 77, 128, 0.12);
    border-radius: 35px;
    margin-bottom: 15px;
    color: #818385;
}

.tag-list a:hover {
    background: #86c33a;
    color: #fff;
    -webkit-box-shadow: 0;
    box-shadow: 0;
}

blockquote {
    padding: 30px 40px;
    font-style: italic;
    color: #172231;
    border-left: 2px solid #86c33a;
    -webkit-box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    position: relative;
    margin-bottom: 40px;
}

blockquote::before {
    position: absolute;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 100px;
    color: rgba(134, 195, 58, 0.3);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-style: normal;
}

blockquote p {
    font-style: normal;
    margin-top: 10px;
}

/* /blog */


.sidepadding {
    padding: 0px 50px 50px;
    padding-bottom: 0px;
}



p.tex1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 0px;
    line-height: 0px;
    margin-left: 2rem;
}

h4.tex2 {
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    text-transform: initial;
    font-size: 80px !important;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0px;
    margin-left: 3rem;
}

h4.tex2 span {
    font-weight: 600;
    font-size: 24px;
}

h5.tex3 {
    color: #fff;
    text-transform: initial;
    font-size: 75px;
    font-weight: 500;
    line-height: 55px;
}

h5.tex3 span {
    font-size: 40px;
    font-weight: 300;
}

h6.tex4 {
    text-transform: inherit;
    font-size: 19px;
    color: #fff;
    margin-left: 1rem;
    line-height: 0px;
}

h6.tex5 {
    text-transform: inherit;
    font-size: 49px;
    color: #fff;
    margin-left: 3rem;
    line-height: 57px;
}

span.no {
    font-size: 80px;
    vertical-align: text-bottom;
    font-weight: 300;
    padding: 0px 5px;
    /* padding-top: 14px; */
    /* line-height: 45px; */
}

span.min {
    font-size: 59px;
    vertical-align: text-bottom;
}

.textleft {
    margin-left: 0px;
}

a.appointmentbutton {
    background: #0065b0;
    color: #fff;
    font-size: 18px;
    position: relative;
    font-weight: bold;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 13px 89px;
    z-index: 999;
}

.bookanappointment {
    margin-top: -146px;
    position: relative;
    margin-bottom: 4rem;
}

.coustome-container {
    max-width: 1000px !important;
}

/*.bookanappointment::after {
    position: absolute;
    content: '';
    background: #ffc717;
    left: 178px;
    top: -18px;
    width: 28.5%;
    height: 445px;
    z-index: 99;
}
*/
.appointment-book::after {
    position: absolute;
    content: '';
    background: #ffc717;
    left: -11px;
    top: -18px;
    width: 40%;
    height: 445px;
    z-index: 99;
}

.appointment-book {
    position: relative;
}

.aboutsec {
    position: relative;
}

.heading h2 {
    text-transform: initial;
    font-size: 35px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
    line-height: normal;
}

.heading h1 {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
}

.aboutwarp {
    padding-left: 4rem;
}

.aboutimg {
    background: #ffd150;
    padding: 5px;
}

.heading {
    z-index: 999;
    position: relative;
}

.imgzind {
    z-index: 999;
}

.row.graywrap {
    position: relative;
}

.row.graywrap:before {
    position: absolute;
    content: '';
    background: #f2f2f2;
    width: 100%;
    height: 330px;
    top: -20px;
    left: -11px;
}

a.readmore {
    background: #0065b0;
    color: #fff;
    font-size: 13px;
    padding: 10px;
}

.servicesfacility {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

h2.mainhead {
    color: #0065b0;
    font-size: 2rem;
    text-transform: initial;
    font-weight: 800;
}

ul.facilitylsit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    /*  align-items: center; */
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
}

ul.facilitylsit li {
    display: inline-block;

    vertical-align: top;
    /* min-height: 365px; */
    margin-bottom: 0px;
    padding: 16px 11px;
    /* background: transparent; */
    border: 1px solid transparent;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}

ul.facilitylsit li:hover {
    /* background: #ccc; */
    border: 1px dashed #ffc717;
    -webkit-box-shadow: 1px 1px 5px #ccc;
    box-shadow: 1px 1px 5px #ccc;
}

ul.facilitylsit li:hover .fachead {
    color: #ffc717;
}

ul.facilitylsit li:hover .fachead::after {
    border-bottom: 2px solid #0065b0;
}

/*p.textwrap {
    min-height: 52px;
}*/

.padr {
    padding-right: 50px;
}

.facilitylsit li {
    padding: 0px 20px;
}

/*.facilitylsit li:first-child{padding-left: 0px;}
.facilitylsit li:last-child{padding-right: 0px;}*/

.fachead {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 29px;
    padding-top: 25px;
    color: #0065b0;
    position: relative;
}

.fachead::after {
    position: absolute;
    content: '';
    border-bottom: 2px solid #d8d8d8;
    width: 21%;
    -webkit-transform: (50%);
    transform: (50%);
    -webkit-transform-origin: 24% 40%;
    transform-origin: 24% 40%;
    left: 40%;
    bottom: 12px;
}

.facimg {
    width: 35%;
    margin: 0 auto;
}

/*.facilitylsit p {
    margin-bottom: 30px;
}*/
.eyeimg {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
}

.neonataldec {
    display: inline-block;
    width: 69%;
    margin-left: 7px;
    vertical-align: middle;
}

.heading2 {
    color: #0065b0;
    text-transform: initial;
    font-size: 20px;
    text-align: left;
}

.neonatal {
    display: inline-block;
    margin: 0 auto;
    width: 43%;
    margin-top: 6rem;
    /*margin-bottom: 5rem;*/
    padding-bottom: 15px;
    border-bottom: 6px solid #ffc717;
}


/* Click the image one by one to see the different layout */

/* Owl Carousel */

.clinictour .owl-prev {
    background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png') left center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    left: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
    display: none;
}

.clinictour .owl-next {
    background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png') right center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    right: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
    display: none;
}

.clinictour .owl-prev:hover,
.clinictour .owl-next:hover {
    opacity: 0.5;
}


/* Popup Text */

.clinictour .white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
}

.clinictour .popuptext {
    display: table;
}

.clinictour .popuptext p {
    margin-bottom: 10px;
}

.clinictour .popuptext span {
    font-weight: bold;
    float: right;
}

/* Popup Text */

/* Icon CSS */
.clinictour .item {
    position: relative;
}

.clinictour .item i {
    display: none;
    font-size: 25px;
    color: #0065b0;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: #ffffff80;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    line-height: 75px;
    text-align: center;
}

.clinictour .item a {
    display: block;
    width: 100%;
}

/*.clinictour .item a:hover:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}*/

.clinictour .item a:hover {
    -webkit-box-shadow: 0px 0px 36px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 36px -6px rgba(0, 0, 0, 0.75);
}

.clinictour .item a:hover i {
    display: block;
    z-index: 2;
}

.whiteheading {
    padding-top: 5.5rem;
    margin-bottom: 3rem;
}

.heading3 {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    text-transform: initial;
    position: relative;
    z-index: 9;
}

.clinicbg {
    position: relative;
    margin-top: 50px;
}

.clinicbg::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url('../images/clinicbg.jpg');
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/clinicbg.jpg');
    position: absolute;
    content: '';
    height: 300px;
    width: 100%;
    top: 0;
    background-size: cover;
}

.clinictour .item p {
    margin-top: 20px;
    padding-bottom: 18px;
    border-bottom: 6px solid #ffc717;
}



.achievementsec1 {
    background: #0065b0 url(../images/achieve1.png);
    display: inline-block;
    width: 25%;
    background-repeat: no-repeat;
    background-size: 80%;
    padding: 162px;
    padding-bottom: 109px;
}

.achievementsec2 {
    background: #0065b0 url(../images/achivementbg.png);
    display: inline-block;
    width: 75%;
    margin: 0;
    background-size: 100%;
    vertical-align: top;
    margin-left: -5px;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.heading4 {
    color: #ffc717;
    text-transform: initial;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 14px;
}

#counter {
    /* display: flex; */
    /* align-content: center; */
    /* flex-wrap: wrap; */
    /* align-items: center; */
    /* text-align: center; */
    /* justify-content: space-between; */
    width: 100%;
    padding-bottom: 15px;
    margin-left: -54px;
}

#counter li {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}


.achievementwrap {
    width: 80%;
    margin: 0 auto;
}

.achivename p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 15px;
}

.counter-value {
    color: #ffc717;
    font-size: 48px;
    line-height: 0px;
    font-weight: 300;
}

.achiveimg {
    margin: 0 auto;
}



/* Click the image one by one to see the different layout */

/* Owl Carousel */

.testimoinalwrap .owl-prev {
    background: url('../images/prev.png') left center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    left: -7%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
}

.testimoinalwrap .owl-next {
    background: url('../images/next.png') right center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    right: -7%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
}

.testimoinalwrap .owl-prev:hover,
.testimoinalwrap .owl-next:hover {
    opacity: 0.5;
}


/* Owl Carousel */


/* Popup Text */

.white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
}

.popuptext {
    display: table;
}

.popuptext p {
    margin-bottom: 10px;
}

.popuptext span {
    font-weight: bold;
    float: right;
}

/* Popup Text */

/* Icon CSS */
.testimoinalwrap .item {
    position: relative;
}

.testimoinalwrap .item i {
    display: none;
    font-size: 25px;
    color: #0065b0;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: #ffffff80;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    line-height: 75px;
    text-align: center;
}

.testimoinalwrap .item a {
    display: block;
    width: 100%;
}

.testimoinalwrap .item a:hover:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.testimoinalwrap .item a:hover {
    -webkit-box-shadow: 0px 0px 36px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 36px -6px rgba(0, 0, 0, 0.75);
}

.testimoinalwrap .item a:hover i {
    display: block;
    z-index: 2;
}

.test {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* - FIX Datepicker -*/
.bootstrap-datetimepicker-widget.dropdown-menu {
    width: 250px;
}

.appointmentbg {
    background: #333333;
    padding-bottom: 4rem;
    padding-top: 4rem;
}

.appointmentbg .whiteheading {
    padding-top: 0rem;
    margin-bottom: 0rem;
}

.appointmentbg .whiteheading .heading3 {
    margin-bottom: 25px;
}

.formwrap {
    max-width: 80%;
    margin: 0 auto;
}

.formwrap .form-control,
.contactformwrap .form-control {
    height: 55px;
    padding: 0 30px;
    height: auto;
    border-radius: 0px;
    font-size: 13px;
    padding: 7px;
    border: none;
}

.contactformwrap {
    background: #f1f1f1;
    padding: 35px 20px;
}

span.input-group-addon {
    background: #fff;
    border: none;
    padding-right: 10px;
    font-size: 19px;
}


.appointmentbutton {
    border: none;
    border-radius: 0px;
    background: #ffc717;
    color: #0065b0;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 30px;
}

.bootstrap-datetimepicker-widget .btn {
    border: none;
}

.footerbg {
    padding-top: 4rem;
}

.footerlogo {
    width: 65%;
}

.headingcenter {
    color: #0065b0;
    text-transform: inherit;
    font-size: 20px;
    margin-bottom: 15px;
}

.callicon {
    display: inline-block;
    width: 7%;
}

.calldec {
    display: inline-block;
    width: 84%;
}

.callicon i {
    color: #0065b0;
    font-size: 20px;
}

.calldec a {
    color: #0065b0;
    font-weight: 600;
    font-size: 14px;
}

.call {
    margin-bottom: 5px;
}

.time strong {
    color: #1a1a1a;
    font-size: 13px;
}

.headingservices {
    font-size: 18px;
    text-transform: initial;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.serviceslist {
    width: 75%;
    margin-bottom: 25px;
}

.serviceslist li {
    border-bottom: 1px solid #bfbfbf;
    padding: 3px 0px;
}

.serviceslist li a {
    color: #0065b0;
    font-size: 15px;
    font-weight: 600;
}

.follow {
    color: #0065b0;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    width: 29%;
}

.followlinks {
    display: inline-block;
}

.followlinks span a {
    color: #cccccc;
    padding: 0px 5px;
}

.linkslist li {
    margin-bottom: 5px;
}

.linkslist li a {
    color: #4d4d4d;
    font-weight: 500;
    font-size: 14px;
}

.facebookiframe {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    overflow: hidden;
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    width: 286px;
    height: 400px;
}

.facebookiframe iframe {
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
    height: 100%;
}

.copyrightbg {
    padding: 2rem 0;
    background: #f2f2f2;
}

.copyrightbg p,
.copyrightbg a {
    color: #808080;
    font-size: 14px;
    font-weight: 500;
}


#social {
    position: fixed;
    left: 0;
    width: 40px;
    text-align: left;
    height: auto;
    top: 45%;
    z-index: 3000;
    background: transparent;
}

#social li {
    margin: 10px 16px;
    list-style: none;
    font-size: 18px;
    color: #cccccc;
}

#social li a {
    color: #cccccc;
}

#social li a,
#social li a:visited {
    color: #cccccc;
    padding: 0 0px;
}

#social li a:hover,
#social li a:visited:hover {
    color: #0065b0;
}



/* 2D TRANSITIONS */
/* Grow */
.grow {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.grow:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background: #ffc717;
}

/* Push */
@-webkit-keyframes push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.push {
    display: inline-block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.push:hover {
    -webkit-animation-name: push;
    animation-name: push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    background: #ffc717;
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.glow {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.glow:hover {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.linkslist li:hover a,
.followlinks span:hover a {
    color: #0065b0;
}

.serviceslist li:hover a {
    color: #ffc717;
}



.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 800px;
    margin: 20px auto;
}

.sidepadding-inner {
    padding: 0px 100px 50px;
    padding-bottom: 0px;
}

.sidepadding-inner .customenav a.navbar-brand {
    position: absolute;
    width: 10%;
    top: -34px;
}


.page-titles {
    font-size: 30px;
    text-transform: initial;
    margin-bottom: 10px;
    font-weight: 700;
}

.icon-bg-logo {
    position: relative;
}

.icon-bg-logo::after {
    background-image: url(../images/achieve1.png);
    position: absolute;
    content: '';
    width: 154px;
    right: 0px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    width: 175px;
}

.welcomemsg {
    font-size: 30px;
    text-transform: inherit;
    color: #0065b0;
    font-weight: 300;
}

.mainheading-about {
    font-size: 22px;
    font-weight: 600;
    color: #0065b0;
}

.tessheading {
    font-size: 60px;
    font-weight: 700;
    color: #0065b0;
}

.tessprofile::after {
    position: absolute;
    content: '';
    border-bottom: 2px solid #ccc;
    width: 40px;
    left: 0;
    bottom: 8px;
}

.tessprofile {
    position: relative;
    color: #0065b0;
    font-weight: 600;
    padding-bottom: 15px;
    font-size: initial;
}

.aboutinfo p {
    margin-bottom: 12px;
}

.aboutseprtaor {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(../images/clinicbg.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/clinicbg.jpg);
    padding-bottom: 4rem;
    padding-top: 4rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nabhheading h4 {
    color: #fff;
    padding-right: 115px;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: inherit;
}

.nabhheading p {
    font-weight: 300;
    color: #fff;
}

.nabhawrap {
    width: 800px;
    width: 100%;
    margin: 0 auto;
}

.mrginneg {
    margin-top: -7px;
}


.sidepadding-inner .maright {
    margin-left: 12rem;
}

.newsimg {
    display: inline-block;
    width: 40%;
    padding: 3px;
    vertical-align: top;
}

.newsdecs {
    display: inline-block;
    width: 52%;
    vertical-align: top;
    margin-left: 15px;
}

.newswrap {
    margin-bottom: 60px;
}

.newsandmedia {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.mediawarap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.postimg {
    width: 30%;
}

h5.mt-0.tessprofile::after {
    display: none;
}

h5.mt-0.tessprofile {
    padding-bottom: 0px;
    text-transform: initial;
    font-size: 15px;
    padding-left: 12px;
}

.tessprofile a {
    color: #0065b0;
}

.brouchuresimg {
    width: 35%;
    display: inline-block;
    vertical-align: top;
}

.brouchuresdecs {
    width: 57%;
    display: inline-block;
    margin-left: 20px;
}

.pdfdownload {
    display: inline-block;
    width: 16%;
    vertical-align: top;
}

.downloadpdf {
    width: 78%;
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    color: #333333;
    font-weight: 600;
    line-height: 20px;
}

.brochures-wrap {
    margin-bottom: 4rem;
}

.knowledgezone-brochures {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

ul.listitems li {
    position: relative;
}

ul.listitems li::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #c9c9c9;
    left: 0;
    top: 6px;
    border-radius: 100%;
}

ul.listitems li {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
    padding-left: 12px;
}

/*.barebone, .sidebar {
  max-width: 464px;
  width: 86%;
  margin: 20px auto;
}*/

.barebone__title {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.barebone__content {
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    -webkit-transition: height linear .1s;
    transition: height linear .1s;
}

.barebone__content.js-accordion--open {
    height: auto;
}

.sidebar {
    font-size: 16px;
}

.sidebar__title {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sidebar__content {
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    -webkit-transition: height linear .1s;
    transition: height linear .1s;
}

.sidebar__content.js-accordion--open {
    height: auto;
}

.sidebar__item {
    border: none;
    border-top: 0;
    background: #e0e0e0;
    margin-bottom: 10px;
}

.sidebar__item:first-child {
    border-top: 1px solid #ddd;
}

.sidebar__title {
    position: relative;
    padding: 10px 20px;
    -webkit-transition: all ease-out .25s;
    transition: all ease-out .25s;
    font-weight: bold;
    padding-right: 60px;
}

.sidebar__title::after,
.sidebar__title:after {
    position: absolute;
    content: '+';
    right: 14px;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 22px;
    height: 22px;
    text-align: center;
    background-color: #0065aa;
    color: #fff;
    border-radius: 100%;
    line-height: 23px;
}

.sidebar__title.js-accordion--open {
    background-color: #ffc117;
    border: none;
}

.sidebar__title.js-accordion--open::after,
.sidebar__title.js-accordion--open:after {
    content: '–';
    line-height: 20px;
}

.sidebar__content {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: height ease-out .25s;
    transition: height ease-out .25s;
    background: #ececec;

}

.inner {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: white;
    margin-bottom: 20px;
}

.inner__title {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.inner__content {
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    -webkit-transition: height linear .1s;
    transition: height linear .1s;
}

.inner__content.js-accordion--open {
    height: auto;
}

.inner__item {
    border: 1px solid #ddd;
    border-top: 0;
}

.inner__item:first-child {
    border-top: 1px solid #ddd;
}

.inner__title {
    position: relative;
    padding: 15px 20px;
    -webkit-transition: all ease-out .25s;
    transition: all ease-out .25s;
    font-weight: bold;
    padding-right: 60px;
}

.inner__title::after,
.inner__title:after {
    position: absolute;
    content: '+';
    right: 14px;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 22px;
    height: 22px;
    text-align: center;
    background-color: white;
    color: #666;
    border-radius: 100%;
    line-height: 23px;
}

.inner__title.js-accordion--open {
    background-color: #eee;
}

.inner__title.js-accordion--open::after,
.inner__title.js-accordion--open:after {
    content: '–';
    line-height: 20px;
}

.inner__content {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: height ease-out .25s;
    transition: height ease-out .25s;
}

.sidebar p,
.inner p {
    margin-bottom: 15px;
    color: #4d4d4d;
    line-height: 20px;
}

.sidebar p:first-child,
.inner p:first-child {
    margin-top: 0px;
}

.sidebar p strong,
.inner p strong {
    font-weight: bold;
    color: #444;
}

.faqheadings {
    font-size: 20px;
    color: #0065aa;
    font-weight: 600;
    text-transform: capitalize;
}

.faqtitle {
    font-size: 16px;
    margin-bottom: 7px;
    color: #0065aa;
    font-weight: 600;
    text-transform: capitalize;
}

.faqsection {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.conatctno {
    display: inline-block;
    width: 49%;
    margin-bottom: 5px;
}

.conatctno span i {
    color: #0065af;
    padding-right: 7px;
}

.conatctno span,
.conatctno span a {
    color: #4d4d4d;
    font-size: 14px;
}

.mapframe {
    width: 595px;
    width: 100%;
    height: 250px;
    background: #e5e5e5;
    padding: 6px;
    margin-bottom: 15px;
}

.mapframe iframe {
    width: 100%;
    height: 100%;
}

.conactsection,
.gallerysection {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.heading-line-bottom .mainhead {
    text-transform: uppercase;
    font-size: 20px;
}

.marginbt .faqtitle {
    margin-bottom: 0px;
}

.sidebar__content .col-md-12 p,
.sidebar__content .col-md-9 p {
    margin-bottom: 5px;
}


/*special case*/

.list-wrapper {
    padding: 15px;
    overflow: hidden;
}

.list-item {
    border: 1px solid #EEE;
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px #EEE;
    box-shadow: 0px 0px 10px 0px #EEE;
}

.list-item h4 {
    color: #FF7182;
    font-size: 18px;
    margin: 0 0 5px;
}

.list-item p {
    margin: 0;
}

.simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
    color: #666;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #EEE;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 10px 0px #EEE;
    box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
    color: #FFF;
    background-color: #666;
    border-color: #fff;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
    background: #0065b0;
}


.comment {
    margin: 10px;
}

.morecontent span {
    display: none;
}

.morelink {
    background: #0065b0;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    display: block;
    width: 14%;
    margin-top: 20px;
}

.morelink:hover {
    color: #fff !important;
}

.blogwarp .tessprofile .readmore {
    color: #fff;
}

.blogwarp .tessprofile::after {
    display: none;
}


.Servicesinfo .comment.more {
    margin: 0px;
    font-weight: 400;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
}

.Servicesinfo .morelink {
    width: 19%;
    text-align: center;
}


.medicaltour .welcomemsg {
    font-size: 22px;
}

.medicaltour .tessheading {
    font-size: 50px;
}

.medicaltour .mainheading-about {
    font-size: 18px;
}


.ser {
    color: #0065b0;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: bold;
}

.servicepoint li::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background: #0065b0;
    left: 0px;
    top: 7px;
    border-radius: 10px;
}

.servicepoint li {
    position: relative;
    font-weight: 400;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 8px;
    padding-left: 16px;
}

.bggray {
    background: #f2f2f2;
    padding: 35px 40px 35px 40px;
}

.aboutcont .fachead {
    padding-top: 10px;
}

.aboutcont .facimg {
    width: 60%;
}

a.popup-youtube img,
.open-popup-link img {
    border: 2px solid #ffc717;
}

.moretext {
    /*display: none;*/
    display: block;
}
.moreless-button {display: none !important;}

.dropdown-menu1 {
    width: 250px !important;
}




.texttestimonial .testimonial {
    margin: 0 15px;
    overflow: hidden;
}

.texttestimonial .testimonial .description {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    color: #4d4d4d;
    padding: 30px 20px;
    border: 1px solid #767070;
    border-left: 3px solid #ffc717;
}

.texttestimonial .testimonial .description:after {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    border-bottom: 1px solid #767070;
    border-left: 1px solid #767070;
    position: absolute;
    bottom: -11px;
    left: 65px;
    -webkit-transform: skewY(-45deg);
    transform: skewY(-45deg);
}

.texttestimonial .testimonial .pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 30px 10px;
    display: inline-block;
    border: 3px solid #ffc33c;
}

.texttestimonial .testimonial .pic img {
    width: 100%;
    height: auto;
}

.texttestimonial .testimonial .testimonial-prof {
    text-transform: capitalize;
    margin: 0 30px;
    padding-top: 10px;
}

.texttestimonial .testimonial .testimonial-prof h4 {
    color: #ffc717;
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.texttestimonial .testimonial .testimonial-prof small {
    display: block;
    font-size: 14px;
    color: #4d4d4d;
}

.texttestimonial .owl-theme .owl-controls {
    margin-top: 45px;
}

.texttestimonial .owl-theme .owl-controls .owl-buttons div {
    border-radius: 0;
    background: #ffc33c;
    padding: 15px 20px;
    opacity: 1;
    border: 1px solid transparent;
    -webkit-transition: all 0.30s linear 0s;
    transition: all 0.30s linear 0s;
}

.texttestimonial .owl-theme .owl-controls .owl-buttons div:hover {
    background: transparent;
    border: 1px solid #ffc33c;
}

.texttestimonial .owl-prev:before,
.texttestimonial .owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
}

.texttestimonial .owl-next:before {
    content: "\f054";
}

@media only screen and (max-width: 480px) {
    .texttestimonial .owl-theme .owl-controls {
        margin-top: 25px;
    }
}




.testimheading {
    font-size: 22px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: rgb(0, 10, 18);
}

.bannertext {
    text-align: left;
    line-height: 35px;
    position: relative;
    top: 80px;
    left: -65px;
}

span.numberstyle {
    color: #0365ae;
    font-weight: 300;
    font-size: 35px;
    padding-right: 8px;
}

span.textstyle {
    color: #0365ae;
    font-size: 45px;
    font-weight: 700;
}

.nabh-banner {
    width: 140px;
    margin-bottom: 0px;
}

.text2banner {
    left: 0px;
        top: -85px;
    text-align: left;
}

.bannertext .numberstyle {
    text-align: left;
    color: #ffc717;
    font-weight: 500;
}

.textfont {
    left: 0px;
}

.textfont span.numberstyle {
    font-size: 22px;
}


.bigfont {
    left: 124px;
}

.bigfont span.numberstyle {
    font-size: 50px;
}

.bigfont span.textstyle {
    font-size: 40px;
}

.fontbanner6 span.numberstyle {
    font-size: 30px;
}

.moreless-button {
    background: #0065b0;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    display: block;
    width: 16% !important;
    margin-top: 20px;
    text-transform: capitalize;
    text-align: center;
    display: inline-block;
    width: auto !important;
}


#summary {
    font-size: 14px;
    line-height: 1.5;
}

#summary p.collapse:not(.show) {
    height: 42px !important;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#summary p.collapsing {
    min-height: 42px !important;
}

#summary a.collapsed:after {
    content: ' Read More';
}

#summary a:not(.collapsed):after {
    content: ' Read Less';
}


.summary {
    font-size: 14px;
    line-height: 1.5;
}

.summary p.collapse:not(.show) {
    height: 42px !important;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.summary p.collapsing {
    min-height: 42px !important;
}

.summary a.collapsed:after {
    content: ' Read More';
}

.summary a:not(.collapsed):after {
    content: ' Read Less';
}

.flaticon {
    display: inline-block;
    vertical-align: middle;
}

.hovericon:hover .flaticon {
    color: #0065b0
}



.galleryslider .slick-slide .slide-content {
    margin: 0 10%;
    padding: 50px 100px;
    background: #fff;
}

.galleryslider .slick-list {
    margin: 20px 0px;
}

.galleryslider .slick-prev,
.galleryslider .slick-next {
    position: absolute;
    right: 10%;
    background: #777;
    border: none;
    color: transparent;
    width: 30px;
    height: 30px;
}

.galleryslider .slick-prev:before,
.galleryslider .slick-next:before {
    content: ">";
    color: #fff;
    font-size: 25px;
}

.galleryslider .slick-prev {
    left: 10%;
}

.galleryslider .slick-prev:before {
    content: "<";
}

.galleryslider .slick-dots {
    list-style: none;
    margin: 0 auto;
    bottom: -90px;
    text-align: center;
}

.galleryslider .slick-dots li {
    display: inline-block;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 0px;
    margin: 0px 10px;
}

.galleryslider .slick-dots li button {
    -webkit-transition: 0.2s background-color ease-in-out 0s;
    transition: 0.2s background-color ease-in-out 0s;
    border: none;
    padding: 0;
    color: transparent;
    width: 10px;
    height: 10px;
    background-color: #777;
    margin-right: 10px;
    border-radius: 50%;
}

.galleryslider .slick-dots li.slick-active button {
    background-color: #0065b0;
}


.aboutimg {
    background: #ffd150;
    padding: 5px;
    overflow: hidden;
}

.aboutimg {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.aboutimg:hover {
    webkit-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.dieticiandec {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}



.doctorwrapper .email {
    color: #333334;
}

.doctorwrapper h6 {
    font-style: italic;
    color: #919191;
    font-weight: normal;
    border-top: 1px solid #ededed;
    padding: 10px 0px 0px;
    margin: 5px 0px 0px;
    float: left;
    clear: both;
    width: 100%;
}

.doctorinfo p {
    line-height: 20px;
    margin-bottom: 10px;
    padding-right: 25px;
}

.doctorwrapper h4 {
    background: #ededed;
    font-size: 14px;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    line-height: 40px;
    margin-bottom: 20px;
}

.doctorwrapper h4 span {
    color: #4a4a4a;
    display: block;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    text-transform: initial;
    margin-top: 8px;
    /* margin-bottom: 8px; */
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.doctorwrapper h4 i {
    font-size: 14px;
    color: #ffffff;
    line-height: 40px;
    padding: 0px 15px;
    background: #4bbcd7;
    margin: 0px 10px 0px 0px;
}

.doctorwrapper .doctorimg img {
    border: 5px solid;
    border-radius: 0;
    /* max-width: 89%; */
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-color: #ffc717;
}

.doctorheadfing h2 {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 30px;
}

.doctorimg {
    width: 28%;
    margin-right: 0px;
    display: inline-block;
}

.doctordec {
    display: inline-block;
    width: 66%;
    vertical-align: top;
}

.doctors-team .welcomemsg {
    font-size: 45px;
    line-height: normal;
    margin-bottom: 0px;
}

.doctors-team .tessheading {
    font-size: 40px;
    line-height: normal;
}

.doctors-team {
    padding-top: 3rem;
    padding-bottom: 4rem
}

.doctorwrapper {
    cursor: pointer;
}

.doctorwrapper:hover h4 {
    background: #0065b0;
    color: #fff;
}

.doctorwrapper:hover h4 span {
    color: #fff;
}

.doctorwrapper:hover .doctorimg img {
    -webkit-filter: drop-shadow(2px 4px 6px);
    filter: drop-shadow(2px 4px 6px);
}

.hero-section {
    position: relative;
}

a.floating-link {
    position: absolute;
    left: 0;
    top: 0;
    /* background: red; */
    width: 100%;
    height: 100%;
}


.valueint {
    display: inline-block;
    margin-right: 10px;
}

.lakhaval {
    color: #ffc717;
    font-size: 20px;
}

.with-line {
    position: relative;
    padding-bottom: 15px;
}

.with-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 60px;
    height: 2px;
    margin: 15px 0 0;
    background-color: #24C9ED;
}

.catractimg {
    margin: 5px;
    padding-bottom: 30px;
}

.catractname {
    font-size: 12px;
    line-height: normal;
    margin-top: 13px;
    color: #000;
    font-weight: 700;
}

.imagespresent,
.eyelidser {
    text-align: center;
}

.imagespresent .catractimg {
    display: inline-block;
    width: 23.5%;    vertical-align: top;
}

.eyelidser .catractimg {
    display: inline-block;
    width: 48.5%;    vertical-align: top;
}

.wetimg img {
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.facilitylsit.adjust li {
    width: 20%;
}

.serviceswahttinfo .row:nth-child(even) .col-md-5 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
}


.padr p {
    font-size: 14px;
}

div#instafeed .item img {
    width: 100%;
}

div#instafeed .item {
    width: 50%;
}

div#instafeed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.d-none {
    display: none;
}


.page-titles {
    position: relative;
    /*    z-index: 9999;*/
}

.fontmodify button {
    display: block;
    background: #0065b0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    box-shadow: none;
    border: 2px solid #ffc717;
    margin: 10px 0px;
    font-size: 19px;
    color: #fff;
    /* text-align: center; */
    margin: 5px auto;
    margin-right: 0px;
}

#btn-orig{
    width: 40px;
    height: 40px;
    font-size: 18px;
}

#btn-decrease{
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.fontmodify {
    position: fixed;
    right: 0;
    bottom: 50%;
    z-index: 999;
}


.tesscollboratortext {
    display: inline-block;
    width: 64%;
    vertical-align: top;
}

.tesscollboratorimg {
    display: inline-block;
    width: 35%;
    vertical-align: top;
}

.tesscollboratorimg img {
    width: 100%;
}

.instaiframe{display: none !important;}

.customenav, .sidepadding{  z-index: 9999999;}




.nivo-lightbox-overlay{    z-index: 99999999999 !important;}


.datewarap .gj-datepicker-bootstrap [role=right-icon] button .gj-icon, 
.datewarap .gj-datepicker-bootstrap [role=right-icon] button .material-icons {
    position: absolute;
    font-size: 21px;
    top: 6px;
    left: 9px;
}

.datewarap .btn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    padding: 15.5px 19px;
    border-radius: 0;
    color: #495057;
    font-weight: 700;
    border: 1px solid;
    position: relative;
    z-index: 1;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
    background-color: #e9ecef;
}

.g-recaptcha.RecaptchaField > div,#RecaptchaField1 div ,#RecaptchaField2 div {
    margin: 0 auto;
    text-align: center;
    display: block;
}

#RecaptchaField1 div{    transform: scale(0.95);    position: relative;
    left: -10px;}

    .header-scrolled {
    padding: 50px;
    /* background: #fff; */
    /* overflow: hidden; */
}

    .header-scrolled header{
    position: fixed;
    top: 0;
    z-index: 999999;
    width: 100%;
    padding: 0px 50px 50px;
    padding-bottom: 0;
    left: 0;
    background: #ffff;
}


.dropdown-menu1 .dropdown-submenu .dropdown-menu .dropdown-item{white-space: pre-line;}

.banner1{background-image: url(../images/slider/newbanners-1.jpg);}

.banner2{background-image: url(../images/slider/newbanners-2.jpg);}

.banner3{background-image: url(../images/slider/newbanners-3.jpg);}

.banner4{background-image: url(../images/slider/newbanners-4.jpg);}

.banner5{background-image: url(../images/slider/newbanners-5.jpg);}

.banner6{background-image: url(../images/slider/newbanners-6.jpg);}


 .newsmediaimageswrap {
    display: flex;
}

.newsmediaimageswrap .imageswrapnews{margin-right: 5px;margin-bottom: 5px}

.widthimagewrap .imageswrapnews{width: 30%;}
.media{align-items: center !important;}